Skip to content

Commit

Permalink
bpo-44019: Add operator.call() to __all__ for the operator module (GH…
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreusada authored Oct 21, 2021
1 parent 8a310dd commit a53456e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add :func:`operator.call` to ``operator.__all__``. Patch by Kreusada.

0 comments on commit a53456e

Please sign in to comment.