diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-01 23:09:31 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-01 23:09:31 (GMT) |
commit | b3085c9e2610943a2c7c038ff7e25639300463fd (patch) | |
tree | af358620e326cff05c7c3eaed873d265596dae3e /Doc | |
parent | f82b856b2ae519d857148b034f2d9ef71988548d (diff) | |
download | cpython-b3085c9e2610943a2c7c038ff7e25639300463fd.zip cpython-b3085c9e2610943a2c7c038ff7e25639300463fd.tar.gz cpython-b3085c9e2610943a2c7c038ff7e25639300463fd.tar.bz2 |
remove the deprecation warnings for the old threading API; update the docs
Reviewer: Benjamin Peterson
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/threading.rst | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index b5f997e..9cc62be 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -14,11 +14,9 @@ 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. + While they are not listed below, the ``camelCase`` names used for some + methods and functions in this module in the Python 2.x series are still + supported by this module. This module defines the following functions and objects: |