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.

Author Antony.Lee
Recipients Antony.Lee, docs@python
Date 2013-11-13.19:33:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1384371223.06.0.467962768293.issue19573@psf.upfronthosting.co.za>
In-reply-to
Content
The following patch corrects the docstring of `inspect.Parameter`, as the `default` and `annotation` attributes are in fact set to `empty` if no value is provided, and the `kind` attribute is in fact an `int` (more precisely, a `_ParameterKind`).  It also reimplements the `_ParameterKind` type as an `IntEnum`, as the previous implementation (which predates stdlib enums) was more or less a hand-rolled `IntEnum`.
History
Date User Action Args
2013-11-13 19:33:43Antony.Leesetrecipients: + Antony.Lee, docs@python
2013-11-13 19:33:43Antony.Leesetmessageid: <1384371223.06.0.467962768293.issue19573@psf.upfronthosting.co.za>
2013-11-13 19:33:42Antony.Leelinkissue19573 messages
2013-11-13 19:33:42Antony.Leecreate