diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-04-06 22:14:29 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2018-04-06 22:14:29 (GMT) |
commit | 3c193cf8afce525b1283986f113de0e16f23e115 (patch) | |
tree | 07dae4b7a3bd84a56c7dfa6c88c0b714000a6b86 /Python/ceval.c | |
parent | 252f10cbac0132924faed8de44ed7b15e774cbcb (diff) | |
download | cpython-3c193cf8afce525b1283986f113de0e16f23e115.zip cpython-3c193cf8afce525b1283986f113de0e16f23e115.tar.gz cpython-3c193cf8afce525b1283986f113de0e16f23e115.tar.bz2 |
[3.7] bpo-29673: fix gdb scripts pystack and pystackv (GH-6126) (GH-6399)
(cherry picked from commit 3a9ccee0e5dbf7d67f5ab79f6095755969db117c)
Co-authored-by: Marcel Plch <gmarcel.plch@gmail.com>
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index b37205e..df5c093 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3650,7 +3650,7 @@ too_many_positional(PyCodeObject *co, Py_ssize_t given, Py_ssize_t defcount, } /* This is gonna seem *real weird*, but if you put some other code between - PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust + PyEval_EvalFrame() and _PyEval_EvalFrameDefault() you will need to adjust the test in the if statements in Misc/gdbinit (pystack and pystackv). */ PyObject * |