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 vstinner
Recipients larry, rhettinger, serhiy.storchaka, vstinner
Date 2017-01-17.15:25:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484666717.3.0.527900261135.issue29299@psf.upfronthosting.co.za>
In-reply-to
Content
This issue is blocking me to convert more functions to Argument Clinic. See for example attached getattr_ac.patch which converts getattr() to AC. Without ac_optional_positional.patch, AC generates the signature:

   "getattr($module, object, name, default=None, /)\n"

whereas the following signature is expected:

   "getattr($module, object, name[, default])\n"
History
Date User Action Args
2017-01-17 15:25:17vstinnersetrecipients: + vstinner, rhettinger, larry, serhiy.storchaka
2017-01-17 15:25:17vstinnersetmessageid: <1484666717.3.0.527900261135.issue29299@psf.upfronthosting.co.za>
2017-01-17 15:25:17vstinnerlinkissue29299 messages
2017-01-17 15:25:17vstinnercreate