home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / doc / python2.4-minimal / README.Debian < prev   
Encoding:
Text File  |  2006-08-25  |  2.3 KB  |  101 lines

  1. Contents of the python2.4-minimal package
  2. -----------------------------------------
  3.  
  4. python2.4-minimal consists of a minimum set of modules which may be needed
  5. for python scripts used during the boot process.  If other packages
  6. are needed in these scripts, don't work around the missing module, but
  7. file a bug report against this package. The modules in this package
  8. are:
  9.  
  10.   __builtin__        builtin
  11.   __future__        module
  12.   _codecs        builtin
  13.   _random        extension
  14.   _socket        extension
  15.   _sre            builtin
  16.   _symtable        builtin
  17.   ConfigParser        module
  18.   StringIO        module
  19.   UserDict        module
  20.   cStringIO        extension
  21.   array            extension
  22.   binascii        extension
  23.   compileall        module
  24.   copy            module
  25.   copy_reg        module
  26.   dis            module
  27.   errno            builtin
  28.   exceptions        builtin
  29.   fcntl            extension
  30.   fnmatch        module
  31.   getopt        module
  32.   glob            module
  33.   grp            extension
  34.   imp            builtin
  35.   inspect        module
  36.   itertools        extension
  37.   linecache        module
  38.   marshal        builtin
  39.   math            extension
  40.   md5            extension
  41.   opcode        module
  42.   operator        extension
  43.   optparse        module
  44.   os            module
  45.   pickle        module
  46.   platform        module
  47.   popen2        module
  48.   posix            builtin
  49.   posixpath        module
  50.   pwd            builtin
  51.   py_compile        module
  52.   random        module
  53.   re            module
  54.   repr            module
  55.   select        extension
  56.   sha            extension
  57.   socket        module
  58.   sre            module
  59.   sre_compile        module
  60.   sre_constants        module
  61.   sre_parse        module
  62.   stat            module
  63.   string        module
  64.   strop            extension
  65.   struct        extension
  66.   subprocess        module
  67.   sys            builtin
  68.   syslog        extension
  69.   tempfile        module
  70.   textwrap        module
  71.   time            extension
  72.   token            module
  73.   tokenize        module
  74.   traceback        module
  75.   types            module
  76.   warnings        module
  77.   zlib            extension
  78.  
  79. The following modules are excluded, their import is guarded from the
  80. importing module (i.e. omit the import of _ssl in socket):
  81.  
  82.   os        nt ntpath os2 os2emxpath mac macpath
  83.         riscos riscospath riscosenviron
  84.   optparse    gettext
  85.   pickle    doctest
  86.   platform    tempfile
  87.   socket    _ssl
  88.   subprocess    threading
  89.  
  90. This list was derived by looking at the modules in the perl-base package,
  91. then adding python specific "core modules".
  92.  
  93. TODO's
  94. ------
  95.  
  96. - time.strptime cannot be used. The required _strptime module is not
  97.   included in the -minimal package yet. _strptime, locale, _locale and
  98.   calendar have to be added.
  99.  
  100. - modules used very often in the testsuite: copy, cPickle, operator.
  101.