summaryrefslogtreecommitdiffstats
path: root/Modules/Setup.dist
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-04-20 17:21:44 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-04-20 17:21:44 (GMT)
commita85017fbe3be978a6f138662c6cd21052355ef91 (patch)
tree98eea2a8daaa747a4dca3e013c21f1926bcd9eea /Modules/Setup.dist
parentc9f5ca232acccf412ef14aa294afd9deef4af93d (diff)
downloadcpython-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.dist2
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