diff options
author | Larry Hastings <larry@hastings.org> | 2014-01-06 15:24:19 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2014-01-06 15:24:19 (GMT) |
commit | b7f5dcadf2a929a92cfd5d0386426bc143cb01b4 (patch) | |
tree | d3ee3564eac5ff32bf9db2f90907f1979969918b /Misc | |
parent | e7ee44e9ba36fe6220ebb31c5c7faad5cfb2a250 (diff) | |
parent | 74fc8c47f66da5673ed733d21e9014e9508f2819 (diff) | |
download | cpython-b7f5dcadf2a929a92cfd5d0386426bc143cb01b4.zip cpython-b7f5dcadf2a929a92cfd5d0386426bc143cb01b4.tar.gz cpython-b7f5dcadf2a929a92cfd5d0386426bc143cb01b4.tar.bz2 |
Merge 3.4.0b2 release revisions back into mainline.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -30,6 +30,10 @@ Core and Builtins - Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" argument is not in range [0; 255]. +- Issue #19995: %c, %o, %x, and %X now raise TypeError on non-integer input; + reworded docs to clarify that an integer type should define both __int__ + and __index__. + - Issue #19787: PyThread_set_key_value() now always set the value. In Python 3.3, the function did nothing if the key already exists (if the current value is a non-NULL pointer). |