diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-06-14 16:28:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-14 16:28:07 +0200 |
commit | 019d33b7a447e78057842332fb5d3bad01922122 (patch) | |
tree | 7bdbec241885be3207973511a45770673309b045 /Misc | |
parent | 4ffe9c2b251f6e027b26250b7a2618e78d4edd22 (diff) | |
download | cpython-git-019d33b7a447e78057842332fb5d3bad01922122.tar.gz |
bpo-32962: python-gdb catchs ValueError on read_var() (GH-7692)
python-gdb now catchs ValueError on read_var(): when Python has no
debug symbols for example.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tools-Demos/2018-06-14-16-16-53.bpo-32962.2YfdwI.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tools-Demos/2018-06-14-16-16-53.bpo-32962.2YfdwI.rst b/Misc/NEWS.d/next/Tools-Demos/2018-06-14-16-16-53.bpo-32962.2YfdwI.rst new file mode 100644 index 0000000000..de40070795 --- /dev/null +++ b/Misc/NEWS.d/next/Tools-Demos/2018-06-14-16-16-53.bpo-32962.2YfdwI.rst @@ -0,0 +1,2 @@ +python-gdb now catchs ValueError on read_var(): when Python has no debug +symbols for example. |