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
6554cb94
Commit
6554cb94
authored
Dec 02, 2007
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove a few merged versionadded/changed.
parent
aacc0899
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
64 deletions
+6
-64
Doc/library/csv.rst
Doc/library/csv.rst
+3
-7
Doc/library/decimal.rst
Doc/library/decimal.rst
+2
-47
Doc/library/exceptions.rst
Doc/library/exceptions.rst
+0
-3
Doc/library/readline.rst
Doc/library/readline.rst
+1
-2
Doc/library/socket.rst
Doc/library/socket.rst
+0
-3
Doc/library/stdtypes.rst
Doc/library/stdtypes.rst
+0
-2
No files found.
Doc/library/csv.rst
View file @
6554cb94
...
...
@@ -121,13 +121,9 @@ The :mod:`csv` module defines the following functions:
.. function:: get_dialect(name)
Return the dialect associated with *name*. An :exc:`Error` is raised if *name*
is not a registered dialect name.
.. versionchanged:: 2.5
This function now returns an immutable :class:`Dialect`. Previously an
instance of the requested dialect was returned. Users could modify the
underlying class, changing the behavior of active readers and writers.
Return the dialect associated with *name*. An :exc:`Error` is raised if
*name* is not a registered dialect name. This function returns an immutable
:class:`Dialect`.
.. function:: list_dialects()
...
...
Doc/library/decimal.rst
View file @
6554cb94
This diff is collapsed.
Click to expand it.
Doc/library/exceptions.rst
View file @
6554cb94
...
...
@@ -147,9 +147,6 @@ The following exceptions are the exceptions that are actually raised.
This class is derived from :exc:`EnvironmentError`. See the discussion above
for more information on exception instance attributes.
.. versionchanged:: 2.6
Changed :exc:`socket.error` to use this as a base class.
.. exception:: ImportError
...
...
Doc/library/readline.rst
View file @
6554cb94
...
...
@@ -132,7 +132,6 @@ The :mod:`readline` module defines the following functions:
Get the type of completion being attempted.
.. versionadded:: 2.6
.. function:: get_begidx()
...
...
@@ -153,6 +152,7 @@ The :mod:`readline` module defines the following functions:
Get the readline word delimiters for tab-completion.
.. function:: set_completion_display_matches_hook([function])
Set or remove the completion display function. If *function* is
...
...
@@ -162,7 +162,6 @@ The :mod:`readline` module defines the following functions:
``function(substitution, [matches], longest_match_length)`` once
each time matches need to be displayed.
.. versionadded:: 2.6
.. function:: add_history(line)
...
...
Doc/library/socket.rst
View file @
6554cb94
...
...
@@ -85,9 +85,6 @@ The module :mod:`socket` exports the following constants and functions:
accompanying :exc:`os.error`. See the module :mod:`errno`, which contains names
for the error codes defined by the underlying operating system.
.. versionchanged:: 2.6
:exc:`socket.error` is now a child class of :exc:`IOError`.
.. exception:: herror
...
...
Doc/library/stdtypes.rst
View file @
6554cb94
...
...
@@ -1438,8 +1438,6 @@ operations:
Return True if the set has no elements in common with *other*.
Sets are disjoint if and only if their interesection is the empty set.
.. versionadded:: 2.6
.. method:: set.issubset(other)
set <= other
...
...
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