[pypy-commit] pypy py3.5-raffael_t: fix typo

rlamy pypy.commits at gmail.com
Tue Apr 26 19:32:56 EDT 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
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__']),
 ]
 


More information about the pypy-commit mailing list