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 sbt
Recipients loewis, mhammond, python-dev, sbt, vstinner
Date 2011-11-09.15:51:14
SpamBayes Score 1.4594631e-10
Marked as misclassified No
Message-id <1320853875.11.0.548269501088.issue13374@psf.upfronthosting.co.za>
In-reply-to
Content
> Functions like os.execv() or os.readlink() are not deprecated because 
> the underlying C function really uses a bytes API (execv and readlink).

Probably os.execv() should be implemented on Windows with _wexecv() instead of _execv().  Likewise for other functions which have "wide" versions.  Or maybe it wouldn't be worth the effort, since it would mean writing separate Windows implementations.

I don't know what you mean about os.readlink() though: the Windows implementation uses CreateFileW() and DeviceIoControl().
History
Date User Action Args
2011-11-09 15:51:15sbtsetrecipients: + sbt, loewis, mhammond, vstinner, python-dev
2011-11-09 15:51:15sbtsetmessageid: <1320853875.11.0.548269501088.issue13374@psf.upfronthosting.co.za>
2011-11-09 15:51:14sbtlinkissue13374 messages
2011-11-09 15:51:14sbtcreate