Author: Armin Rigo <[email protected]>
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:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to