diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-04-20 17:21:44 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-04-20 17:21:44 (GMT) |
commit | a85017fbe3be978a6f138662c6cd21052355ef91 (patch) | |
tree | 98eea2a8daaa747a4dca3e013c21f1926bcd9eea /Modules/Setup.dist | |
parent | c9f5ca232acccf412ef14aa294afd9deef4af93d (diff) | |
download | cpython-a85017fbe3be978a6f138662c6cd21052355ef91.zip cpython-a85017fbe3be978a6f138662c6cd21052355ef91.tar.gz cpython-a85017fbe3be978a6f138662c6cd21052355ef91.tar.bz2 |
Issue #16694: Add a pure Python implementation of the operator module.
Patch by Zachary Ware.
Diffstat (limited to 'Modules/Setup.dist')
-rw-r--r-- | Modules/Setup.dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Setup.dist b/Modules/Setup.dist index f45de5c..8ea2b5e 100644 --- a/Modules/Setup.dist +++ b/Modules/Setup.dist @@ -113,7 +113,7 @@ _sre _sre.c # Fredrik Lundh's new regular expressions _codecs _codecsmodule.c # access to the builtin codecs and codec registry _weakref _weakref.c # weak references _functools _functoolsmodule.c # Tools for working with functions and callable objects -operator operator.c # operator.add() and similar goodies +_operator _operator.c # operator.add() and similar goodies _collections _collectionsmodule.c # Container types itertools itertoolsmodule.c # Functions creating iterators for efficient looping |