diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-09-26 21:31:59 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-09-26 21:31:59 (GMT) |
commit | 2c0a91606105e1606d886c198ea7ed1b195c692f (patch) | |
tree | fe0a91c1f633ab3dc48fad0c63f8960695b21ac3 /Modules/Setup.dist | |
parent | 7e23d82cec31c1035fb7d7808443a80e129dd112 (diff) | |
download | cpython-2c0a91606105e1606d886c198ea7ed1b195c692f.zip cpython-2c0a91606105e1606d886c198ea7ed1b195c692f.tar.gz cpython-2c0a91606105e1606d886c198ea7ed1b195c692f.tar.bz2 |
Issue #5309: distutils' build and build_ext commands now accept a ``-j``
option to enable parallel building of extension modules.
Diffstat (limited to 'Modules/Setup.dist')
-rw-r--r-- | Modules/Setup.dist | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/Setup.dist b/Modules/Setup.dist index 01fb85f..ee84df4 100644 --- a/Modules/Setup.dist +++ b/Modules/Setup.dist @@ -118,6 +118,7 @@ _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 _stat _stat.c # stat.h interface +time timemodule.c # time module # access to ISO C locale support _locale _localemodule.c # -lintl |