]> granicus.if.org Git - python/commit
bpo-37122: Make co->co_argcount represent the total number of positonal arguments...
authorPablo Galindo <Pablogsal@gmail.com>
Sat, 1 Jun 2019 17:08:04 +0000 (18:08 +0100)
committerGitHub <noreply@github.com>
Sat, 1 Jun 2019 17:08:04 +0000 (18:08 +0100)
commitcd74e66a8c420be675fd2fbf3fe708ac02ee9f21
tree12f985512507967c339019c4c21b4a613cd6c61b
parent059b9ea5ac98f432e41b05d1fa5aab4ffa22df4d
bpo-37122: Make co->co_argcount represent the total number of positonal arguments in the code object (GH-13726)
14 files changed:
Doc/c-api/code.rst
Doc/reference/datamodel.rst
Doc/whatsnew/3.8.rst
Lib/inspect.py
Lib/pdb.py
Lib/test/test_code.py
Lib/test/test_dis.py
Lib/test/test_positional_only_arg.py
Misc/NEWS.d/next/Core and Builtins/2019-06-01-16-53-41.bpo-37122.dZ3-NY.rst [new file with mode: 0644]
Objects/call.c
Objects/codeobject.c
Objects/typeobject.c
Python/ceval.c
Python/compile.c