- 24 Kas, 2016 10 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #28782: Fix a bug in the implementation ``yield from`` when checking if the next instruction is YIELD_FROM. Regression introduced by WORDCODE (issue #26647). Reviewed by Serhiy Storchaka and Yury Selivanov.
-
Victor Stinner yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
INADA Naoki yazdı
-
INADA Naoki yazdı
-
- 23 Kas, 2016 5 kayıt (commit)
-
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Serhiy Storchaka yazdı
and Latin1 encoders.
-
Xiang Zhang yazdı
Fix error position of the unicode error in ASCII and Latin1 encoders when a string returned by the error handler contains multiple non-encodable characters (non-ASCII for the ASCII codec, characters out of the U+0000-U+00FF range for Latin1).
-
- 22 Kas, 2016 25 kayıt (commit)
-
-
Victor Stinner yazdı
groupindex must a dictionary and indexgroup must be a tuple. Previously, indexgroup was a list. Use a tuple to reduce the memory usage.
-
Victor Stinner yazdı
Frame.is_other_python_frame() now also handles _PyCFunction_FastCallDict() frames. Thanks to the new code to handle fast calls, python-gdb.py is now also able to detect the <built-in id method of module ...> frame.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
A pattern is equal to itself.
-
Victor Stinner yazdı
Typo catched by Serhiy Storchaka, thanks!
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Replace int(value.address)+offset with value.cast(unsigned char*)+offset. It seems like int(value.address) fails on old versions of GDB.
-
INADA Naoki yazdı
-
INADA Naoki yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
Start 3.6.0rc1. (Note, patch level was incorrectly set to 3.6.0b4+ following b3. It is now b4+ again.)
-
Serhiy Storchaka yazdı
PyStructSequence_Field, PyStructSequence_Desc, and wrapperbase are now of type "const char *" rather of "char *".
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Issue #27100: With statement reports missing __enter__ before __exit__. (Contributed by Jonathan Ellington.)
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Issue #26163: Disable periodically failing test which was overly demanding of the frozenset hash function effectiveness
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-