Changeset 388 for python/vendor/current/Modules/Setup.dist
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Modules/Setup.dist
r2 r388 119 119 _sre _sre.c # Fredrik Lundh's new regular expressions 120 120 _codecs _codecsmodule.c # access to the builtin codecs and codec registry 121 _weakref _weakref.c # weak references 121 122 122 123 # The zipimport module is always imported at startup. Having it as a … … 169 170 170 171 #array arraymodule.c # array objects 171 #cmath cmathmodule.c # -lm # complex math library functions172 #math mathmodule.c # -lm # math library functions, e.g. sin()172 #cmath cmathmodule.c _math.c # -lm # complex math library functions 173 #math mathmodule.c _math.c # -lm # math library functions, e.g. sin() 173 174 #_struct _struct.c # binary structure packing/unpacking 174 175 #time timemodule.c # -lm # time operations and variables 175 176 #operator operator.c # operator.add() and similar goodies 176 #_weakref _weakref.c # basic weak reference support177 177 #_testcapi _testcapimodule.c # Python C API test module 178 178 #_random _randommodule.c # Random number generator 179 179 #_collections _collectionsmodule.c # Container types 180 #_heapq _heapqmodule.c # Heapq type 180 181 #itertools itertoolsmodule.c # Functions creating iterators for efficient looping 181 182 #strop stropmodule.c # String manipulations … … 191 192 #_locale _localemodule.c # -lintl 192 193 194 # Standard I/O baseline 195 #_io -I$(srcdir)/Modules/_io _io/bufferedio.c _io/bytesio.c _io/fileio.c _io/iobase.c _io/_iomodule.c _io/stringio.c _io/textio.c 196 193 197 194 198 # Modules with some UNIX dependencies -- on by default: … … 208 212 209 213 # Socket module helper for socket(2) 210 #_socket socketmodule.c 214 #_socket socketmodule.c timemodule.c 211 215 212 216 # Socket module helper for SSL support; you must comment out the other
Note:
See TracChangeset
for help on using the changeset viewer.