diff options
author | Tal Einat <taleinat@gmail.com> | 2015-06-07 16:21:01 (GMT) |
---|---|---|
committer | Tal Einat <taleinat@gmail.com> | 2015-06-07 16:21:01 (GMT) |
commit | 988df6a36565d789915ca6fbcd2dfc837d18d714 (patch) | |
tree | c220d6810c0e23756a9d347ebca73c566b52c7d5 /Lib/operator.py | |
parent | 0718de977076fe01026b862453797ea0ee8a3fe2 (diff) | |
download | cpython-988df6a36565d789915ca6fbcd2dfc837d18d714.zip cpython-988df6a36565d789915ca6fbcd2dfc837d18d714.tar.gz cpython-988df6a36565d789915ca6fbcd2dfc837d18d714.tar.bz2 |
added matmul and imatmul to operator.__all__
Diffstat (limited to 'Lib/operator.py')
-rw-r--r-- | Lib/operator.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/operator.py b/Lib/operator.py index 0db51c1..0e2e53e 100644 --- a/Lib/operator.py +++ b/Lib/operator.py @@ -12,12 +12,12 @@ This is the pure Python implementation of the module. __all__ = ['abs', 'add', 'and_', 'attrgetter', 'concat', 'contains', 'countOf', 'delitem', 'eq', 'floordiv', 'ge', 'getitem', 'gt', 'iadd', 'iand', - 'iconcat', 'ifloordiv', 'ilshift', 'imod', 'imul', 'index', - 'indexOf', 'inv', 'invert', 'ior', 'ipow', 'irshift', 'is_', - 'is_not', 'isub', 'itemgetter', 'itruediv', 'ixor', 'le', - 'length_hint', 'lshift', 'lt', 'methodcaller', 'mod', 'mul', 'ne', - 'neg', 'not_', 'or_', 'pos', 'pow', 'rshift', 'setitem', 'sub', - 'truediv', 'truth', 'xor'] + 'iconcat', 'ifloordiv', 'ilshift', 'imatmul', 'imod', 'imul', + 'index', 'indexOf', 'inv', 'invert', 'ior', 'ipow', 'irshift', + 'is_', 'is_not', 'isub', 'itemgetter', 'itruediv', 'ixor', 'le', + 'length_hint', 'lshift', 'lt', 'matmul', 'methodcaller', 'mod', + 'mul', 'ne', 'neg', 'not_', 'or_', 'pos', 'pow', 'rshift', + 'setitem', 'sub', 'truediv', 'truth', 'xor'] from builtins import abs as _abs |