Message 155376 - Python tracker
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() |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2012-03-11 04:03:25 | ncdave4life | set | recipients: + ncdave4life, jaraco, pitrou, vstinner, eric.smith, tim.golden, stutzbach, brian.curtin |
| 2012-03-11 04:03:25 | ncdave4life | set | messageid: <1331438605.71.0.421051436709.issue9949@psf.upfronthosting.co.za> |
| 2012-03-11 04:03:25 | ncdave4life | link | issue9949 messages |
| 2012-03-11 04:03:24 | ncdave4life | create | |