diff options
author | Łukasz Langa <lukasz@langa.pl> | 2013-06-05 10:20:24 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2013-06-05 10:20:24 (GMT) |
commit | 6f69251980f385beac9d6f3e8ff4775bd37a1779 (patch) | |
tree | 0e0a667c980df9384ccc984292af51a9b70c6598 /Modules | |
parent | 072318b178f9824de5e0672218495f699dbdce44 (diff) | |
download | cpython-6f69251980f385beac9d6f3e8ff4775bd37a1779.zip cpython-6f69251980f385beac9d6f3e8ff4775bd37a1779.tar.gz cpython-6f69251980f385beac9d6f3e8ff4775bd37a1779.tar.bz2 |
Add reference implementation for PEP 443
PEP accepted: http://mail.python.org/pipermail/python-dev/2013-June/126734.html
Diffstat (limited to 'Modules')
-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 8ea2b5e..d4e1fe1 100644 --- a/Modules/Setup.dist +++ b/Modules/Setup.dist @@ -116,6 +116,7 @@ _functools _functoolsmodule.c # Tools for working with functions and callable _operator _operator.c # operator.add() and similar goodies _collections _collectionsmodule.c # Container types itertools itertoolsmodule.c # Functions creating iterators for efficient looping +atexit atexitmodule.c # Register functions to be run at interpreter-shutdown # access to ISO C locale support _locale _localemodule.c # -lintl @@ -170,7 +171,6 @@ _symtable symtablemodule.c #_weakref _weakref.c # basic weak reference support #_testcapi _testcapimodule.c # Python C API test module #_random _randommodule.c # Random number generator -#atexit atexitmodule.c # Register functions to be run at interpreter-shutdown #_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator #_pickle _pickle.c # pickle accelerator #_datetime _datetimemodule.c # datetime accelerator |