[pypy-commit] pypy py3.5: may fix test_functools, but retranslation is needed to check

arigo pypy.commits at gmail.com
Tue Dec 6 10:26:16 EST 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r88909:5cff42263511
Date: 2016-12-06 16:25 +0100
http://bitbucket.org/pypy/pypy/changeset/5cff42263511/

Log:	may fix test_functools, but retranslation is needed to check

diff --git a/lib_pypy/_functools.py b/lib_pypy/_functools.py
--- a/lib_pypy/_functools.py
+++ b/lib_pypy/_functools.py
@@ -34,6 +34,7 @@
     """
 
     __slots__ = ('_func', '_args', '_keywords', '__dict__')
+    __module__ = 'functools'   # instead of '_functools'
 
     def __init__(*args, **keywords):
         if len(args) < 2:


More information about the pypy-commit mailing list