Dave Burton <ncdave4l...@gmail.com> added the comment: 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() ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue9949> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com