mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
PEP 553 built-in breakpoint() function (bpo-31353) (#3355)
Implement PEP 553, built-in breakpoint() with support from sys.breakpointhook(), along with documentation and tests. Closes bpo-31353
This commit is contained in:
parent
4d07189788
commit
36c1d1f1e5
9 changed files with 324 additions and 23 deletions
|
@ -3523,7 +3523,8 @@ class TestSignatureDefinitions(unittest.TestCase):
|
|||
needs_semantic_update = {"round"}
|
||||
no_signature |= needs_semantic_update
|
||||
# These need *args support in Argument Clinic
|
||||
needs_varargs = {"min", "max", "print", "__build_class__"}
|
||||
needs_varargs = {"breakpoint", "min", "max", "print",
|
||||
"__build_class__"}
|
||||
no_signature |= needs_varargs
|
||||
# These simply weren't covered in the initial AC conversion
|
||||
# for builtin callables
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue