summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-12-17 17:44:45 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-12-17 17:44:45 (GMT)
commitbc7f20cea4dba44214edf5222afb18c4452f747d (patch)
tree3c1c7844dd62d9cb9a086a1e854d688a09ef88bc /Misc
parent3396e8671d15ff90f0197a4215bb14e48a593837 (diff)
downloadcpython-bc7f20cea4dba44214edf5222afb18c4452f747d.zip
cpython-bc7f20cea4dba44214edf5222afb18c4452f747d.tar.gz
cpython-bc7f20cea4dba44214edf5222afb18c4452f747d.tar.bz2
Merged revisions 87341 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87341 | antoine.pitrou | 2010-12-17 18:42:16 +0100 (ven., 17 déc. 2010) | 4 lines Issue #4188: Avoid creating dummy thread objects when logging operations from the threading module (with the internal verbose flag activated). ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a49b344..e53aff0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,10 @@ Core and Builtins
Library
-------
+
+- Issue #4188: Avoid creating dummy thread objects when logging operations
+ from the threading module (with the internal verbose flag activated).
+
- Issue #9721: Fix the behavior of urljoin when the relative url starts with a
';' character. Patch by Wes Chow.