summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-07-01 20:01:55 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-07-01 20:01:55 (GMT)
commit59aba128a5266a944d9773f7223f25b164372146 (patch)
treefbd356aee93458c56e1d73eac310a36441d304c7 /Misc
parent0939fac795f414c4542cd6cec540888207feb475 (diff)
downloadcpython-59aba128a5266a944d9773f7223f25b164372146.zip
cpython-59aba128a5266a944d9773f7223f25b164372146.tar.gz
cpython-59aba128a5266a944d9773f7223f25b164372146.tar.bz2
Make the classes exposed by threading.py new-style classes. This is
mostly for convenience and to aid debugging.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d3761f9..84da757 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Extension modules
Library
-------
+- The classes in threading.py are now new-style classes. That they
+ weren't before was an oversight.
+
- SF bug 763023: fix uncaught ZeroDivisionError in difflib ratio methods
when there are no lines.