summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-04-20 16:23:13 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-04-20 16:23:13 (GMT)
commitf6f617c5f77440f681857c9b116b929c1044b26a (patch)
treeb848e4aa728690e065cdf30c903e609234c51a75 /Misc
parent5b48fa9fa4f0848c26ba6a8d7bdaf1c4f555527c (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS8
2 files changed, 9 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 4077b5b..eaee334 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -618,6 +618,7 @@ Catalin Iacob
Mihai Ibanescu
Ali Ikinci
Aaron Iles
+Thomas Ilsche
Lars Immisch
Bobby Impollonia
Meador Inge
diff --git a/Misc/NEWS b/Misc/NEWS
index 3476b0b..1b486a1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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
-----