New issue 1857: Stop depending on posixpath/ntpath in RPython https://bitbucket.org/pypy/pypy/issue/1857/stop-depending-on-posixpath-ntpath-in
Armin Rigo: RPython code can call some functions from os.path. This causes problems, most recently because CPython 2.7.8 made a change to (at least) ntpath.splitdrive() that is not RPython any more. I suppose we should add our own version of these functions to rpython.rlib.rpath, supporting both Windows and Posix. To be nice we could then add redirection from os.path.xyz() to rpath.rxyz(), too. Responsible: arigo _______________________________________________ pypy-issue mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-issue
