summaryrefslogtreecommitdiffstats
path: root/Lib/operator.py
diff options
context:
space:
mode:
authorTal Einat <taleinat@gmail.com>2015-06-07 16:21:01 (GMT)
committerTal Einat <taleinat@gmail.com>2015-06-07 16:21:01 (GMT)
commit988df6a36565d789915ca6fbcd2dfc837d18d714 (patch)
treec220d6810c0e23756a9d347ebca73c566b52c7d5 /Lib/operator.py
parent0718de977076fe01026b862453797ea0ee8a3fe2 (diff)
downloadcpython-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.py12
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