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 serhiy.storchaka
Recipients rhettinger, scoder, serhiy.storchaka, skrah, vstinner
Date 2017-07-10.07:22:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1499671345.08.0.823383503796.issue29464@psf.upfronthosting.co.za>
In-reply-to
Content
Josay noticed that _PyArg_NoStackKeywords() is not used anymore except for one place (_hashopenssl.c).

Seems this is my oversign. Generated constructors in _hashopenssl.c use the METH_FASTCALL | METH_KEYWORDS calling method, but check that no keyword arguments are passed. They can now just use the METH_FASTCALL calling method. And _PyArg_NoStackKeywords() can be excluded from public header.
History
Date User Action Args
2017-07-10 07:22:25serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, scoder, vstinner, skrah
2017-07-10 07:22:25serhiy.storchakasetmessageid: <1499671345.08.0.823383503796.issue29464@psf.upfronthosting.co.za>
2017-07-10 07:22:25serhiy.storchakalinkissue29464 messages
2017-07-10 07:22:24serhiy.storchakacreate