Author: Ronan Lamy <[email protected]>
Branch: py3.5-raffael_t
Changeset: r83949:a31d7ae793ce
Date: 2016-04-26 19:29 +0100
http://bitbucket.org/pypy/pypy/changeset/a31d7ae793ce/

Log:    fix typo

diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py
--- a/pypy/interpreter/baseobjspace.py
+++ b/pypy/interpreter/baseobjspace.py
@@ -1875,7 +1875,7 @@
     ('set',             'set',       3, ['__set__']),
     ('delete',          'delete',    2, ['__delete__']),
     ('userdel',         'del',       1, ['__del__']),
-    ('matmul',          '@',         2, ['__matmul__', ' __rmatmul__']),
+    ('matmul',          '@',         2, ['__matmul__', '__rmatmul__']),
     ('inplace_matmul',  '@=',        2, ['__imatmul__']),
 ]
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to