diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-01-30 01:31:34 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-01-30 01:31:34 (GMT) |
commit | e61426efbf3a41d2beb4e0f95f363aaaa7df0db6 (patch) | |
tree | ad670d8b239fdca5aa99b8c50baf267af018cb25 /Misc | |
parent | f254a75176928e1d1228a5d20d49fbe2fe9f290a (diff) | |
download | cpython-e61426efbf3a41d2beb4e0f95f363aaaa7df0db6.zip cpython-e61426efbf3a41d2beb4e0f95f363aaaa7df0db6.tar.gz cpython-e61426efbf3a41d2beb4e0f95f363aaaa7df0db6.tar.bz2 |
The trace module was trying to turn ints into ints since co_lnotab was changed
to a bytes object.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -147,6 +147,9 @@ Core and Builtins Library ------- +- Fix a bug in the trace module where a bytes object from co_lnotab had its + items being passed through ord(). + - Issue #2047: shutil.move() could believe that its destination path was inside its source path if it began with the same letters (e.g. "src" vs. "src.new"). |