diff options
author | Marcel Plch <gmarcel.plch@gmail.com> | 2018-04-06 21:22:04 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2018-04-06 21:22:04 (GMT) |
commit | 3a9ccee0e5dbf7d67f5ab79f6095755969db117c (patch) | |
tree | 50a414670e88c0a8b72e46cbedff2a47d63b99f3 /Python/ceval.c | |
parent | 1d87c7b80bf74a3030034a022a7a54ea4e3cdaff (diff) | |
download | cpython-3a9ccee0e5dbf7d67f5ab79f6095755969db117c.zip cpython-3a9ccee0e5dbf7d67f5ab79f6095755969db117c.tar.gz cpython-3a9ccee0e5dbf7d67f5ab79f6095755969db117c.tar.bz2 |
bpo-29673: fix gdb scripts pystack and pystackv (GH-6126)
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 da83e41..422a29e 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3661,7 +3661,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 * |