[Python-checkins] cpython: - Modules/Setup.dist: remove time extension duplicate, introduced by the fix

matthias.klose python-checkins at python.org
Sun Apr 12 00:14:04 CEST 2015


https://hg.python.org/cpython/rev/fc28c67fbbd3
changeset:   95547:fc28c67fbbd3
user:        doko at ubuntu.com
date:        Sun Apr 12 00:13:52 2015 +0200
summary:
   - Modules/Setup.dist: remove time extension duplicate, introduced by the fix for #5309.

files:
  Modules/Setup.dist |  3 +--
  1 files changed, 1 insertions(+), 2 deletions(-)


diff --git a/Modules/Setup.dist b/Modules/Setup.dist
--- a/Modules/Setup.dist
+++ b/Modules/Setup.dist
@@ -118,7 +118,7 @@
 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
+time timemodule.c	# -lm # time operations and variables
 
 # access to ISO C locale support
 _locale _localemodule.c  # -lintl
@@ -172,7 +172,6 @@
 #cmath cmathmodule.c _math.c # -lm # complex math library functions
 #math mathmodule.c _math.c # -lm # math library functions, e.g. sin()
 #_struct _struct.c	# binary structure packing/unpacking
-#time timemodule.c # -lm # time operations and variables
 #_weakref _weakref.c	# basic weak reference support
 #_testcapi _testcapimodule.c    # Python C API test module
 #_random _randommodule.c	# Random number generator

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list