mirror of https://github.com/python/cpython
bpo-44019: Add operator.call() to __all__ for the operator module (GH-29110)
This commit is contained in:
parent
8a310dd5f4
commit
a53456e587
|
@ -10,7 +10,7 @@ for convenience.
|
|||
This is the pure Python implementation of the module.
|
||||
"""
|
||||
|
||||
__all__ = ['abs', 'add', 'and_', 'attrgetter', 'concat', 'contains', 'countOf',
|
||||
__all__ = ['abs', 'add', 'and_', 'attrgetter', 'call', 'concat', 'contains', 'countOf',
|
||||
'delitem', 'eq', 'floordiv', 'ge', 'getitem', 'gt', 'iadd', 'iand',
|
||||
'iconcat', 'ifloordiv', 'ilshift', 'imatmul', 'imod', 'imul',
|
||||
'index', 'indexOf', 'inv', 'invert', 'ior', 'ipow', 'irshift',
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Add :func:`operator.call` to ``operator.__all__``. Patch by Kreusada.
|
Loading…
Reference in New Issue