diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-04-20 16:07:21 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-04-20 16:07:21 (GMT) |
commit | 4e75ca87e3995230cc5a206bdbf45b6604030117 (patch) | |
tree | ad0861eb1cbeb4a08db610d7857cafe88d17f224 /Misc | |
parent | 8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818 (diff) | |
download | cpython-4e75ca87e3995230cc5a206bdbf45b6604030117.zip cpython-4e75ca87e3995230cc5a206bdbf45b6604030117.tar.gz cpython-4e75ca87e3995230cc5a206bdbf45b6604030117.tar.bz2 |
python-gdb.py: get C types at runtime
Issue #26799: Fix python-gdb.py: don't get once C types when the Python code
is loaded, but get C types on demande. The C types can change if
python-gdb.py is loaded before the Python executable.
Patch written by Thomas Ilsche.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -648,6 +648,7 @@ Catalin Iacob Mihai Ibanescu Ali Ikinci Aaron Iles +Thomas Ilsche Lars Immisch Bobby Impollonia Naoki Inada @@ -467,6 +467,11 @@ Windows Tools/Demos ----------- +- Issue #26799: Fix python-gdb.py: don't get once C types when the Python code + is loaded, but get C types on demande. The C types can change if + python-gdb.py is loaded before the Python executable. Patch written by Thomas + Ilsche. + - Issue #26271: Fix the Freeze tool to properly use flags passed through configure. Patch by Daniel Shaulov. |