Commit 0dc97ed1 authored by Benjamin Peterson's avatar Benjamin Peterson

fix news

parent c944cfc7
...@@ -10,6 +10,10 @@ What's New in Python 3.2 Alpha 3? ...@@ -10,6 +10,10 @@ What's New in Python 3.2 Alpha 3?
Core and Builtins 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 - All SyntaxErrors now have a column offset and therefore a caret when the error
is printed. is printed.
...@@ -58,6 +62,10 @@ Core and Builtins ...@@ -58,6 +62,10 @@ Core and Builtins
Library 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 #9908: Fix os.stat() on bytes paths under Windows 7.
- Issue #2643: msync() is not called anymore when deallocating an open mmap - Issue #2643: msync() is not called anymore when deallocating an open mmap
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment