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 larry, serhiy.storchaka, zach.ware
Date 2015-04-12.04:24:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428812661.52.0.406302391077.issue23920@psf.upfronthosting.co.za>
In-reply-to
Content
I was staring at Clinic tonight and a thought came to me.  We could express "nullable=True" as "types='NoneType'".  For example, the converter for 'Z' could change from

    Py_UNICODE(nullable=True)

to

    Py_UNICODE(types="str NoneType")

There Should Be Only One Way To Do It.  Should we get rid of "nullable=True" and use types=NoneType instead?

FWIW it's pretty arbitrary either way; the arguments to the converter are just telling the converter how to generate the code.  I don't think it would make any difference in the converter's code--either way is fine.
History
Date User Action Args
2015-04-12 04:24:21larrysetrecipients: + larry, zach.ware, serhiy.storchaka
2015-04-12 04:24:21larrysetmessageid: <1428812661.52.0.406302391077.issue23920@psf.upfronthosting.co.za>
2015-04-12 04:24:21larrylinkissue23920 messages
2015-04-12 04:24:21larrycreate