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 ztane
Recipients martin.panter, serhiy.storchaka, skrah, vstinner, ztane
Date 2016-08-12.07:30:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470987003.68.0.575098016276.issue23545@psf.upfronthosting.co.za>
In-reply-to
Content
Ah, indeed, I somehow missed that. Though, there is no good reason for it being unsigned either; as the actual type in SSL API's is of type int. Another argument of type int is cast to unsigned just for the comparison on line 4419, and unsigned int counters i and j are used in function _setup_ssl_threads.

The variable could be safely changed to `size_t` (along with those index variables) without it affecting anything at all, as it is a static variable within that module and only used to hold a size of an array, and never passed back to another function.
History
Date User Action Args
2016-08-12 07:30:03ztanesetrecipients: + ztane, vstinner, skrah, martin.panter, serhiy.storchaka
2016-08-12 07:30:03ztanesetmessageid: <1470987003.68.0.575098016276.issue23545@psf.upfronthosting.co.za>
2016-08-12 07:30:03ztanelinkissue23545 messages
2016-08-12 07:30:03ztanecreate