[pypy-commit] pypy default: support non-win32, unbreak the world

mattip pypy.commits at gmail.com
Sun Mar 4 23:14:12 EST 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r93953:3033dc0b120a
Date: 2018-03-04 20:13 -0800
http://bitbucket.org/pypy/pypy/changeset/3033dc0b120a/

Log:	support non-win32, unbreak the world

diff --git a/rpython/rlib/_os_support.py b/rpython/rlib/_os_support.py
--- a/rpython/rlib/_os_support.py
+++ b/rpython/rlib/_os_support.py
@@ -114,3 +114,7 @@
     @specialize.argtype(0)
     def _preferred_traits(path):
         return string_traits
+
+    @specialize.argtype(0, 1)
+    def _preferred_traits2(path1, path2):
+        return string_traits


More information about the pypy-commit mailing list