[pypy-commit] pypy py3k: _getfinalpathname is broken, disable for now

pjenvey noreply at buildbot.pypy.org
Mon Sep 22 01:21:18 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r73637:7011366e6fbf
Date: 2014-09-21 16:20 -0700
http://bitbucket.org/pypy/pypy/changeset/7011366e6fbf/

Log:	_getfinalpathname is broken, disable for now

diff --git a/pypy/module/posix/__init__.py b/pypy/module/posix/__init__.py
--- a/pypy/module/posix/__init__.py
+++ b/pypy/module/posix/__init__.py
@@ -167,7 +167,8 @@
     if os.name == 'nt':
         interpleveldefs.update({
                 '_getfileinformation': 'interp_posix._getfileinformation',
-                '_getfinalpathname': 'interp_posix._getfinalpathname',
+                # XXX: currently broken
+                #'_getfinalpathname': 'interp_posix._getfinalpathname',
         })
     if hasattr(os, 'chroot'):
         interpleveldefs['chroot'] = 'interp_posix.chroot'


More information about the pypy-commit mailing list