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 zach.ware
Recipients docs@python, josh.r, larry, veky, zach.ware
Date 2014-04-20.12:49:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397998170.5.0.56329850665.issue21314@psf.upfronthosting.co.za>
In-reply-to
Content
1) This was due to a typo. The release of Python 3.4 saw the introduction of new introspection information on many C-implemented functions thanks to Argument Clinic (see PEP 436, I think it is). As part of that (still ongoing) transition, the default doctrings for type slots like __ge__ were given Argument Clinic-style signatures, and __ge__ had a typo.

I fixed that typo on Friday (actually prompted by your previous issue about len's bad signature).

2) That marker now shows that all proceeding arguments are positional-only.  We should probably make sure that is well documented somewhere, possibly in the tutorial.

3) This was also due to the typo I fixed.
History
Date User Action Args
2014-04-20 12:49:30zach.waresetrecipients: + zach.ware, larry, docs@python, josh.r, veky
2014-04-20 12:49:30zach.waresetmessageid: <1397998170.5.0.56329850665.issue21314@psf.upfronthosting.co.za>
2014-04-20 12:49:30zach.warelinkissue21314 messages
2014-04-20 12:49:29zach.warecreate