This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: inspect.getargspec() fails with keyword-only arguments
Type: Stage:
Components: Library (Lib) Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: brett.cannon
Priority: normal Keywords:

Created on 2007-02-25 21:12 by brett.cannon, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg31351 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2007-02-25 21:12
If a function's signature includes both keyword-only arguments and *args or **kwargs then inspect.getargspec() assigns the name for the * and ** arguments to the first one or two keyword-only arguments.
msg31352 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2007-03-06 19:32
Fixed by r54043.
History
Date User Action Args
2022-04-11 14:56:22adminsetgithub: 44617
2008-01-06 22:29:46adminsetkeywords: - py3k
versions: + Python 3.0
2007-02-25 21:12:11brett.cannoncreate