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 dstufft
Recipients Theodore Tso, dstufft, larry, vstinner
Date 2016-06-08.23:14:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465427681.06.0.132286521284.issue27266@psf.upfronthosting.co.za>
In-reply-to
Content
I also contest the idea that os functions must only be thin shells around system provided calls (even though I don't think that using getrandom instead of reading from /dev/urandom violates that assertion).

There are a number of functions in os.py that add additional logic ontop of the system calls, like:

* os.makedirs
* os.removedirs
* os.renames
* os.walk
* os.popen (which actually imports and uses the entire subprocess module)
* os.scandir

That's just from a quick scan of the pure Python os.py file.
History
Date User Action Args
2016-06-08 23:14:41dstufftsetrecipients: + dstufft, vstinner, larry, Theodore Tso
2016-06-08 23:14:41dstufftsetmessageid: <1465427681.06.0.132286521284.issue27266@psf.upfronthosting.co.za>
2016-06-08 23:14:41dstufftlinkissue27266 messages
2016-06-08 23:14:40dstufftcreate