summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-04-20 16:07:21 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-04-20 16:07:21 (GMT)
commit4e75ca87e3995230cc5a206bdbf45b6604030117 (patch)
treead0861eb1cbeb4a08db610d7857cafe88d17f224 /Misc
parent8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818 (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 6c01880..6f4bfdb 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -648,6 +648,7 @@ Catalin Iacob
Mihai Ibanescu
Ali Ikinci
Aaron Iles
+Thomas Ilsche
Lars Immisch
Bobby Impollonia
Naoki Inada
diff --git a/Misc/NEWS b/Misc/NEWS
index 16fe26c..3f12699 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.