Message155376
| 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() |
|