Issue 1668565: inspect.getargspec() fails with keyword-only arguments (original) (raw)

Issue1668565

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:22 admin set github: 44617
2008-01-06 22:29:46 admin set keywords: - py3kversions: + Python 3.0
2007-02-25 21:12:11 brett.cannon create