Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1378d1ce
Commit
1378d1ce
authored
Feb 15, 2014
by
Andrew Kuchling
Browse files
Options
Browse Files
Download
Plain Diff
Merge from 3.3
parents
78339e4a
abbe1f15
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
Doc/glossary.rst
Doc/glossary.rst
+8
-0
Doc/library/ipaddress.rst
Doc/library/ipaddress.rst
+1
-1
No files found.
Doc/glossary.rst
View file @
1378d1ce
...
@@ -783,6 +783,14 @@ Glossary
...
@@ -783,6 +783,14 @@ Glossary
mapping
rather
than
a
sequence
because
the
lookups
use
arbitrary
mapping
rather
than
a
sequence
because
the
lookups
use
arbitrary
:
term
:`
immutable
`
keys
rather
than
integers
.
:
term
:`
immutable
`
keys
rather
than
integers
.
The
:
class
:`
collections
.
abc
.
Sequence
`
abstract
base
class
defines
a
much
richer
interface
that
goes
beyond
just
:
meth
:`
__getitem__
`
and
:
meth
:`
__len__
`,
adding
:
meth
:`
count
`,
:
meth
:`
index
`,
:
meth
:`
__contains__
`,
and
:
meth
:`
__reversed__
`.
Types
that
implement
this
expanded
interface
can
be
registered
explicitly
using
:
func
:`~
abc
.
register
`.
single
dispatch
single
dispatch
A
form
of
:
term
:`
generic
function
`
dispatch
where
the
implementation
is
A
form
of
:
term
:`
generic
function
`
dispatch
where
the
implementation
is
chosen
based
on
the
type
of
a
single
argument
.
chosen
based
on
the
type
of
a
single
argument
.
...
...
Doc/library/ipaddress.rst
View file @
1378d1ce
...
@@ -167,7 +167,7 @@ write code that handles both IP versions correctly.
...
@@ -167,7 +167,7 @@ write code that handles both IP versions correctly.
.. attribute:: is_unspecified
.. attribute:: is_unspecified
``True`` if the address is unspecified. See :RFC:`5
37
5` (for IPv4)
``True`` if the address is unspecified. See :RFC:`5
73
5` (for IPv4)
or :RFC:`2373` (for IPv6).
or :RFC:`2373` (for IPv6).
.. attribute:: is_reserved
.. attribute:: is_reserved
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment