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 brett.cannon, christian.heimes, eric.snow, ncoghlan, serhiy.storchaka, steve.dower
Date 2016-12-31.13:09:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483189765.9.0.152422739536.issue29120@psf.upfronthosting.co.za>
In-reply-to
Content
Actually _PyRandom_Fini() has a relation to _PyOS_URandom APIs. It releases resources acquired by _PyOS_URandom APIs. It shouldn't be renamed to _Py_HashRandomization_Fini.

_PyRandom_Init() just initializes _Py_HashSecret. But it can't be implemented via _PyOS_URandom APIs. It uses a static function from this file. If move it to other place, we should add new _PyOS_URandom API function. I don't think this would make the code cleaner.
History
Date User Action Args
2016-12-31 13:09:25serhiy.storchakasetrecipients: + serhiy.storchaka, brett.cannon, ncoghlan, christian.heimes, eric.snow, steve.dower
2016-12-31 13:09:25serhiy.storchakasetmessageid: <1483189765.9.0.152422739536.issue29120@psf.upfronthosting.co.za>
2016-12-31 13:09:25serhiy.storchakalinkissue29120 messages
2016-12-31 13:09:25serhiy.storchakacreate