summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS9
1 files changed, 2 insertions, 7 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8cb3ea3..9ac3e0d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,9 +10,8 @@ What's New in Python 3.2 Alpha 3?
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.
- Issue #9252: PyImport_Import no longer uses a fromlist hack to return the
module that was imported, but instead gets the module from sys.modules.
@@ -59,10 +58,6 @@ Core and Builtins
Library
-------
-- Issue #9877: Expose sysconfig.get_makefile_filename()
-
-- logging: Added hasHandlers() method to Logger and LoggerAdapter.
-
- Issue #1686: Fix string.Template when overriding the pattern attribute.
- Issue #9854: SocketIO objects now observe the RawIOBase interface in