[Python-checkins] r84962 - python/branches/py3k/Misc/NEWS

benjamin.peterson python-checkins at python.org
Tue Sep 21 23:28:48 CEST 2010


Author: benjamin.peterson
Date: Tue Sep 21 23:28:47 2010
New Revision: 84962

Log:
fix news

Modified:
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Tue Sep 21 23:28:47 2010
@@ -10,6 +10,10 @@
 Core and Builtins
 -----------------
 
+- Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other
+  threads are still running.  Instead, reinitialize the GIL on a second call to
+  Py_Initialize().
+
 - All SyntaxErrors now have a column offset and therefore a caret when the error
   is printed.
 
@@ -58,6 +62,10 @@
 Library
 -------
 
+- Issue #9877: Expose sysconfig.get_makefile_filename()
+
+- logging: Added hasHandlers() method to Logger and LoggerAdapter.
+
 - Issue #9908: Fix os.stat() on bytes paths under Windows 7.
 
 - Issue #2643: msync() is not called anymore when deallocating an open mmap


More information about the Python-checkins mailing list