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 vstinner
Recipients HWJ, amaury.forgeotdarc, benjamin.peterson, dlitz, draghuram, gvanrossum, loewis, pitrou, vstinner, zegreek
Date 2008-09-29.15:58:45
SpamBayes Score 0.0010560937
Marked as misclassified No
Message-id <1222703927.19.0.937700670812.issue3187@psf.upfronthosting.co.za>
In-reply-to
Content
As Steven Bethard proposed, here is a new version of my getcwd() 
patch: instead of adding a keyword argument "bytes", I created a 
function getcwdb():
 * os.getcwd() -> unicode
 * os.getcwdb() -> bytes

In Python2 it was:
 * os.getcwd() -> str (bytes)
 * os.getcwdu() -> unicode
History
Date User Action Args
2008-09-29 15:58:47vstinnersetrecipients: + vstinner, gvanrossum, loewis, amaury.forgeotdarc, pitrou, draghuram, benjamin.peterson, HWJ, dlitz, zegreek
2008-09-29 15:58:47vstinnersetmessageid: <1222703927.19.0.937700670812.issue3187@psf.upfronthosting.co.za>
2008-09-29 15:58:46vstinnerlinkissue3187 messages
2008-09-29 15:58:45vstinnercreate