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
ad88d7a2
Commit
ad88d7a2
authored
Feb 10, 2014
by
Larry Hastings
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors.
parent
8f9f0f12
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
13 deletions
+13
-13
Doc/library/asyncio-eventloop.rst
Doc/library/asyncio-eventloop.rst
+1
-1
Doc/library/enum.rst
Doc/library/enum.rst
+2
-2
Doc/library/unittest.rst
Doc/library/unittest.rst
+7
-7
Doc/whatsnew/3.4.rst
Doc/whatsnew/3.4.rst
+1
-1
Lib/pydoc_data/topics.py
Lib/pydoc_data/topics.py
+2
-2
No files found.
Doc/library/asyncio-eventloop.rst
View file @
ad88d7a2
...
@@ -77,7 +77,7 @@ An event loop policy must implement the following interface:
...
@@ -77,7 +77,7 @@ An event loop policy must implement the following interface:
Create and return a new event loop object according to this policy's rules.
Create and return a new event loop object according to this policy's rules.
If there's need to set this loop as the event loop of the current context,
If there's need to set this loop as the event loop of the current context,
:meth`set_event_loop` must be called explicitly.
:meth
:
`set_event_loop` must be called explicitly.
Access to the global loop policy
Access to the global loop policy
--------------------------------
--------------------------------
...
...
Doc/library/enum.rst
View file @
ad88d7a2
...
@@ -30,7 +30,7 @@ one decorator, :func:`unique`.
...
@@ -30,7 +30,7 @@ one decorator, :func:`unique`.
.. class:: Enum
.. class:: Enum
Base class for creating enumerated constants. See section
Base class for creating enumerated constants. See section
:ref:`Functional API`
for an alternate construction syntax.
`Functional API`_
for an alternate construction syntax.
.. class:: IntEnum
.. class:: IntEnum
...
@@ -421,7 +421,7 @@ The solution is to specify the module name explicitly as follows::
...
@@ -421,7 +421,7 @@ The solution is to specify the module name explicitly as follows::
>>> Animals = Enum('Animals', 'ant bee cat dog', module=__name__)
>>> Animals = Enum('Animals', 'ant bee cat dog', module=__name__)
The new pickle protocol 4 also, in some circumstances, relies on
The new pickle protocol 4 also, in some circumstances, relies on
:attr:`
`__qualname__`
` being set to the location where pickle will be able
:attr:`
__qualname__
` being set to the location where pickle will be able
to find the class. For example, if the class was made available in class
to find the class. For example, if the class was made available in class
SomeData in the global scope::
SomeData in the global scope::
...
...
Doc/library/unittest.rst
View file @
ad88d7a2
...
@@ -1917,13 +1917,13 @@ Loading and running tests
...
@@ -1917,13 +1917,13 @@ Loading and running tests
By default this runner shows :exc:`DeprecationWarning`,
By default this runner shows :exc:`DeprecationWarning`,
:exc:`PendingDeprecationWarning`, :exc:`ResourceWarning` and
:exc:`PendingDeprecationWarning`, :exc:`ResourceWarning` and
:exc:`ImportWarning` even if they are :ref:`ignored by default
<warning-
:exc:`ImportWarning` even if they are :ref:`ignored by default
ignored>`. Deprecation warnings caused by :ref:`deprecated unittest methods
<warning-ignored>`. Deprecation warnings caused by :ref:`deprecated unittest
<deprecated-aliases>` are also special-cased and, when the warning filters
methods <deprecated-aliases>` are also special-cased and, when the warning
are ``'default'`` or ``'always'``, they will appear only once per-module, in
filters are ``'default'`` or ``'always'``, they will appear only once
order to avoid too many warning messages. This behavior can be overridde
n
per-module, in order to avoid too many warning messages. This behavior ca
n
using the :option:`-Wd` or :option:`-Wa` options and leaving *warnings* to
be overridden using the :option:`-Wd` or :option:`-Wa` options and leaving
``None``.
*warnings* to
``None``.
.. versionchanged:: 3.2
.. versionchanged:: 3.2
Added the ``warnings`` argument.
Added the ``warnings`` argument.
...
...
Doc/whatsnew/3.4.rst
View file @
ad88d7a2
...
@@ -1708,7 +1708,7 @@ Changes in the Python API
...
@@ -1708,7 +1708,7 @@ Changes in the Python API
Changes in the C API
Changes in the C API
--------------------
--------------------
* :c:func:`PyEval_EvalFrameEx`, :c:func:`PyObject_Repr
()
, and
* :c:func:`PyEval_EvalFrameEx`, :c:func:`PyObject_Repr
`
, and
:c:func:`PyObject_Str`, along with some other internal C APIs, now include
:c:func:`PyObject_Str`, along with some other internal C APIs, now include
a debugging assertion that ensures they are not used in situations where
a debugging assertion that ensures they are not used in situations where
they may silently discard a currently active exception. In cases where
they may silently discard a currently active exception. In cases where
...
...
Lib/pydoc_data/topics.py
View file @
ad88d7a2
This diff is collapsed.
Click to expand it.
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