diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-01 23:12:58 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-01 23:12:58 (GMT) |
commit | 973e6c2cf33e326cef3717f6bddac57691e609e2 (patch) | |
tree | acca758f92d6e5ad48d188284f01b3c025c885e6 /Doc/library | |
parent | 057dfddc8865c62507cb38c9ca444fb12856246d (diff) | |
download | cpython-973e6c2cf33e326cef3717f6bddac57691e609e2.zip cpython-973e6c2cf33e326cef3717f6bddac57691e609e2.tar.gz cpython-973e6c2cf33e326cef3717f6bddac57691e609e2.tar.bz2 |
remove py3k warnings about the threading api; update docs
Reviewer: Benjamin Peterson
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/threading.rst | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 6841cea..1a43be5 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -14,11 +14,12 @@ The :mod:`dummy_threading` module is provided for situations where .. note:: - Some ``camelCase`` names have been converted to their underscored - equivalents. Others have been replaced by properties. Using the old methods - in 2.6 will trigger a :exc:`DeprecationWarning` when Python is run with the - :option:`-3` flag and a full :exc:`DeprecationWarning` in 3.0. The old names - will be removed early in the 3.x series. + Starting with Python 2.6, this module provides PEP 8 compliant aliases and + properties to replace the ``camelCase`` names that were inspired by Java's + threading API. This updated API is compatible with that of the + :mod:`multiprocessing` module. However, no schedule has been set for the + deprecation of the ``camelCase`` names and they remain fully supported in + both Python 2.x and 3.x. This module defines the following functions and objects: |