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 larry
Recipients brett.cannon, larry, ncoghlan, pitrou
Date 2013-11-23.02:28:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385173692.32.0.599871676954.issue19730@psf.upfronthosting.co.za>
In-reply-to
Content
Two minor changes for Argument Clinic.

* Added a "version" directive, so a programmer can require a
  specific version (or better) of Clinic.

* Finished off support for all the 'legacy' converters.  The ones today
  were those that give off a "length" parameter.  This was complicated
  by finally dealing properly with the Py_buffer conversion stuff.

To properly handle length parameters, I had to support PY_SSIZE_T_CLEAN being turned off (when are we gonna throw that away?).  So I added a new type to pyports.h, Py_ssize_clean_t, which is either an int or a Py_ssize_t depending on PY_SSIZE_T_CLEAN.

I've run out of gas and am going to bed.  I know I have two TODO items in the diff so far; I'll deal with those tomorrow.  But can I get a quick review of the rest, so I can get this in tomorrow?
History
Date User Action Args
2013-11-23 02:28:13larrysetrecipients: + larry, brett.cannon, ncoghlan, pitrou
2013-11-23 02:28:12larrysetmessageid: <1385173692.32.0.599871676954.issue19730@psf.upfronthosting.co.za>
2013-11-23 02:28:12larrylinkissue19730 messages
2013-11-23 02:28:11larrycreate