summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-10-06 18:35:35 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-10-06 18:35:35 (GMT)
commitef4d286770ab264ffc07c7f25385c1e226f3eb4a (patch)
tree622d97a119b1e003c6d2eda5ce6364b53fda88cf /Misc
parentfc9adb62fbfa8d2f81f7224afea43557a4fff409 (diff)
downloadcpython-ef4d286770ab264ffc07c7f25385c1e226f3eb4a.zip
cpython-ef4d286770ab264ffc07c7f25385c1e226f3eb4a.tar.gz
cpython-ef4d286770ab264ffc07c7f25385c1e226f3eb4a.tar.bz2
#10968: commit threading doc changes and corresponding whatsnew entry.
It is unfortunate that the '_' names were not kept as aliases, and that RLock was not also converted to a class, but it is now too late to change either of those things for 3.3.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 74c2004..be761e6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -3031,11 +3031,11 @@ Library
- Issue #8887: "pydoc somebuiltin.somemethod" (or help('somebuiltin.somemethod')
in Python code) now finds the doc of the method.
-- Issue #10968: Remove indirection in threading. The public names (Thread,
+- Issue #10968: Remove indirection in threading. The public names (Event,
Condition, etc.) used to be factory functions returning instances of hidden
- classes (_Thread, _Condition, etc.), because (if Guido recalls correctly) this
- code pre-dates the ability to subclass extension types. It is now possible to
- inherit from Thread and other classes, without having to import the private
+ classes (_Event, _Condition, etc.), because (if Guido recalls correctly) this
+ code pre-dates the ability to subclass extension types. It is now possible
+ to inherit from these classes, without having to import the private
underscored names like multiprocessing did.
- Issue #9723: Add shlex.quote functions, to escape filenames and command