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 ncdave4life
Recipients brian.curtin, eric.smith, jaraco, ncdave4life, pitrou, stutzbach, tim.golden, vstinner
Date 2012-03-11.04:03:24
SpamBayes Score 0.0011920411
Marked as misclassified No
Message-id <1331438605.71.0.421051436709.issue9949@psf.upfronthosting.co.za>
In-reply-to
Content
Excellent!

The ntpath.py change is nearly identical in Python 2.7 to the change for Python 3.2.  The only difference is that instead of:

+        elif isinstance(path, bytes):
+            path = os.getcwdb()

It is:

+        elif isinstance(path, unicode):
+            path = os.getcwdu()
History
Date User Action Args
2012-03-11 04:03:25ncdave4lifesetrecipients: + ncdave4life, jaraco, pitrou, vstinner, eric.smith, tim.golden, stutzbach, brian.curtin
2012-03-11 04:03:25ncdave4lifesetmessageid: <1331438605.71.0.421051436709.issue9949@psf.upfronthosting.co.za>
2012-03-11 04:03:25ncdave4lifelinkissue9949 messages
2012-03-11 04:03:24ncdave4lifecreate