diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-05 23:27:15 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-05 23:27:15 (GMT) |
commit | 791dc2f32c3fb707319d0c8d93d6cde6175d1e01 (patch) | |
tree | b6373a3456559c9127569319ae8e2e799e310d61 /Misc | |
parent | a741ebf8a18b39e3b596707825f6e3026a5991fe (diff) | |
download | cpython-791dc2f32c3fb707319d0c8d93d6cde6175d1e01.zip cpython-791dc2f32c3fb707319d0c8d93d6cde6175d1e01.tar.gz cpython-791dc2f32c3fb707319d0c8d93d6cde6175d1e01.tar.bz2 |
compile _bytesio and _stringio into the binary and initalize stdio before site fixing #3279
Reviewer: Alexandre Vassalotti
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.0 release candidate 1 Core and Builtins ----------------- +- Issue #3279: Importing site at interpreter was failing silently because the + site module uses the open builtin which was not initialized at the time. + - Issue #3660: Corrected a reference leak in str.encode() when the encoder does not return a bytes object. @@ -125,6 +128,8 @@ Extension Modules update this code in Python 3.0 by hand. Update the 2.6 one and then do "2to3". +- The _bytesio and _stringio modules are now compiled into the python binary. + Tools/Demos ----------- |