bpo-44019: Add operator.call() to __all__ for the operator module (GH-29110)

This commit is contained in:
Kreus Amredes 2021-10-21 11:05:36 +01:00 committed by GitHub
parent 8a310dd5f4
commit a53456e587
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -10,7 +10,7 @@
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',

View file

@ -0,0 +1 @@
Add :func:`operator.call` to ``operator.__all__``. Patch by Kreusada.