~ubuntu-branches/ubuntu/raring/python3-stdlib-extensions/raring

« back to all changes in this revision

Viewing changes to 3.2/Modules/Setup.local

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-10-12 20:33:57 UTC
  • mfrom: (1.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20101012203357-tk02qvvzsefvtzmq
Tags: 3.2~a3-1
Build for Python 3.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Edit this file for local setup changes
 
2
array arraymodule.c     # array objects
 
3
math mathmodule.c # -lm # math library functions, e.g. sin()
 
4
_struct _struct.c       # binary structure packing/unpacking
 
5
time timemodule.c # -lm # time operations and variables
 
6
operator operator.c     # operator.add() and similar goodies
 
7
_random _randommodule.c # Random number generator
 
8
_collections _collectionsmodule.c # Container types
 
9
itertools itertoolsmodule.c     # Functions creating iterators for efficient looping 
 
10
_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H _elementtree.c     # elementtree accelerator
 
11
_pickle _pickle.c       # pickle accelerator
 
12
datetime datetimemodule.c       # date/time type
 
13
_bisect _bisectmodule.c # Bisection algorithms
 
14
_heapq _heapqmodule.c   # Heap queue algorithm
 
15
unicodedata unicodedata.c    # static Unicode character database
 
16
fcntl fcntlmodule.c     # fcntl(2) and ioctl(2)
 
17
spwd spwdmodule.c               # spwd(3) 
 
18
grp grpmodule.c         # grp(3)
 
19
select selectmodule.c   # select(2); not on ancient System V
 
20
_socket socketmodule.c
 
21
syslog syslogmodule.c           # syslog daemon interface
 
22
binascii binascii.c
 
23
_ctypes _ctypes/_ctypes.c _ctypes/callbacks.c _ctypes/callproc.c _ctypes/stgdict.c _ctypes/cfield.c _ctypes/malloc_closure.c  -lffi 
 
24
zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
 
25
pyexpat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H