diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-04-20 16:23:13 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-04-20 16:23:13 (GMT) |
commit | f6f617c5f77440f681857c9b116b929c1044b26a (patch) | |
tree | b848e4aa728690e065cdf30c903e609234c51a75 /Misc | |
parent | 5b48fa9fa4f0848c26ba6a8d7bdaf1c4f555527c (diff) | |
download | cpython-f6f617c5f77440f681857c9b116b929c1044b26a.zip cpython-f6f617c5f77440f681857c9b116b929c1044b26a.tar.gz cpython-f6f617c5f77440f681857c9b116b929c1044b26a.tar.bz2 |
Fix python-gdb.py: get C types on demand
Issue #26799: Fix python-gdb.py: don't get C types once when the Python code is
loaded, but get C types on demand. 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 | 8 |
2 files changed, 9 insertions, 0 deletions
@@ -618,6 +618,7 @@ Catalin Iacob Mihai Ibanescu Ali Ikinci Aaron Iles +Thomas Ilsche Lars Immisch Bobby Impollonia Meador Inge @@ -255,6 +255,14 @@ Build - Issue #25136: Support Apple Xcode 7's new textual SDK stub libraries. +Tools/Demos +----------- + +- Issue #26799: Fix python-gdb.py: don't get C types once when the Python code + is loaded, but get C types on demand. The C types can change if + python-gdb.py is loaded before the Python executable. Patch written by Thomas + Ilsche. + C API ----- |