mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Merge 3.2
This commit is contained in:
commit
c8e032006a
11 changed files with 37 additions and 16 deletions
|
|
@ -64,20 +64,20 @@ Socket addresses are represented as follows:
|
|||
tuple, and the fields depend on the address type. The general tuple form is
|
||||
``(addr_type, v1, v2, v3 [, scope])``, where:
|
||||
|
||||
- *addr_type* is one of TIPC_ADDR_NAMESEQ, TIPC_ADDR_NAME, or
|
||||
TIPC_ADDR_ID.
|
||||
- *scope* is one of TIPC_ZONE_SCOPE, TIPC_CLUSTER_SCOPE, and
|
||||
TIPC_NODE_SCOPE.
|
||||
- If *addr_type* is TIPC_ADDR_NAME, then *v1* is the server type, *v2* is
|
||||
- *addr_type* is one of :const:`TIPC_ADDR_NAMESEQ`, :const:`TIPC_ADDR_NAME`,
|
||||
or :const:`TIPC_ADDR_ID`.
|
||||
- *scope* is one of :const:`TIPC_ZONE_SCOPE`, :const:`TIPC_CLUSTER_SCOPE`, and
|
||||
:const:`TIPC_NODE_SCOPE`.
|
||||
- If *addr_type* is :const:`TIPC_ADDR_NAME`, then *v1* is the server type, *v2* is
|
||||
the port identifier, and *v3* should be 0.
|
||||
|
||||
If *addr_type* is TIPC_ADDR_NAMESEQ, then *v1* is the server type, *v2*
|
||||
If *addr_type* is :const:`TIPC_ADDR_NAMESEQ`, then *v1* is the server type, *v2*
|
||||
is the lower port number, and *v3* is the upper port number.
|
||||
|
||||
If *addr_type* is TIPC_ADDR_ID, then *v1* is the node, *v2* is the
|
||||
If *addr_type* is :const:`TIPC_ADDR_ID`, then *v1* is the node, *v2* is the
|
||||
reference, and *v3* should be set to 0.
|
||||
|
||||
If *addr_type* is TIPC_ADDR_ID, then *v1* is the node, *v2* is the
|
||||
If *addr_type* is :const:`TIPC_ADDR_ID`, then *v1* is the node, *v2* is the
|
||||
reference, and *v3* should be set to 0.
|
||||
|
||||
- A tuple ``(interface, )`` is used for the :const:`AF_CAN` address family,
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ identifier. Python currently uses eight paths:
|
|||
one may call this function and get the default value.
|
||||
|
||||
If *scheme* is provided, it must be a value from the list returned by
|
||||
:func:`get_path_names`. Otherwise, the default scheme for the current
|
||||
:func:`get_scheme_names`. Otherwise, the default scheme for the current
|
||||
platform is used.
|
||||
|
||||
If *vars* is provided, it must be a dictionary of variables that will update
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue