diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-09-20 23:02:10 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-09-20 23:02:10 (GMT) |
commit | d4efd9eb1534eeead7f56c89d1b5e394d8633990 (patch) | |
tree | 434f841f14949c0c0e09b9012f1b22842ffae97a /Misc | |
parent | 2bc5c0be0141501c23eeb2bc96c33632443186ba (diff) | |
download | cpython-d4efd9eb1534eeead7f56c89d1b5e394d8633990.zip cpython-d4efd9eb1534eeead7f56c89d1b5e394d8633990.tar.gz cpython-d4efd9eb1534eeead7f56c89d1b5e394d8633990.tar.bz2 |
add column offset to all syntax errors
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -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 |