~ubuntu-branches/ubuntu/raring/python3.3/raring-proposed

« back to all changes in this revision

Viewing changes to debian/PVER-minimal.README.Debian.in

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-03-22 06:14:01 UTC
  • Revision ID: package-import@ubuntu.com-20120322061401-vvrgvw3nvi68rtqq
Tags: 3.3.0~a1-1
* Python 3.3.0 alpha1 release.
* Update to 20120321 from the trunk.
* Update debian/copyright.
* Build-depend on expat (>= 2.1~).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Contents of the @PVER@-minimal package
 
2
-----------------------------------------
 
3
 
 
4
@PVER@-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
  _bisect               extension
 
13
  _bytesio              builtin
 
14
  _codecs               builtin
 
15
  _collections          extension
 
16
  _compat_pickle        module
 
17
  _ctypes               extension
 
18
  _datetime             extension
 
19
  _elementtree          extension
 
20
  _fileio               builtin
 
21
  _functools            extension
 
22
  _hashlib              extension
 
23
  _heapq                extension
 
24
  _io                   builtin
 
25
  _locale               extension
 
26
  _pickle               extension
 
27
  _posixsubprocess      extension
 
28
  _random               extension
 
29
  _socket               extension
 
30
  _sre                  builtin
 
31
  _ssl                  extension
 
32
  _stringio             extension
 
33
  _struct               extension
 
34
  _string               builtin
 
35
  _stringio             builtin
 
36
  _symtable             builtin
 
37
  _sysconfigdata        module
 
38
  _thread               builtin
 
39
  _types                builtin
 
40
  _weakref              builtin
 
41
  _weakrefset           module
 
42
  _warnings             builtin
 
43
  configparser          module
 
44
  abc                   module
 
45
  argparse              module
 
46
  array                 extension
 
47
  atexit                extension
 
48
  base64                module
 
49
  binascii              extension
 
50
  bisect                module
 
51
  builtins              builtin
 
52
  codecs                module
 
53
  collections           package
 
54
  compileall            module
 
55
  copy                  module
 
56
  copyreg               module
 
57
  dis                   module
 
58
  errno                 builtin
 
59
  exceptions            builtin
 
60
  fcntl                 extension
 
61
  fnmatch               module
 
62
  functools             module
 
63
  gc                    builtin
 
64
  genericpath           module
 
65
  getopt                module
 
66
  glob                  module
 
67
  grp                   extension
 
68
  hashlib               module
 
69
  heapq                 module
 
70
  imp                   builtin
 
71
  inspect               module
 
72
  io                    module
 
73
  itertools             extension
 
74
  keyword               module
 
75
  linecache             module
 
76
  locale                module
 
77
  logging               package
 
78
  marshal               builtin
 
79
  math                  extension
 
80
  opcode                module
 
81
  operator              extension
 
82
  optparse              module
 
83
  os                    module
 
84
  pickle                module
 
85
  pkgutil               module
 
86
  platform              module
 
87
  posix                 builtin
 
88
  posixpath             module
 
89
  pwd                   builtin
 
90
  pyexpat               extension
 
91
  py_compile            module
 
92
  random                module
 
93
  re                    module
 
94
  reprlib               module
 
95
  runpy                 module
 
96
  select                extension
 
97
  signal                builtin
 
98
  socket                module
 
99
  spwd                  extension
 
100
  sre_compile           module
 
101
  sre_constants         module
 
102
  sre_parse             module
 
103
  ssl                   module
 
104
  stat                  module
 
105
  string                module
 
106
  struct                module
 
107
  subprocess            module
 
108
  sys                   builtin
 
109
  sysconfig             module
 
110
  syslog                extension
 
111
  tempfile              module
 
112
  textwrap              module
 
113
  time                  extension
 
114
  token                 module
 
115
  tokenize              module
 
116
  traceback             module
 
117
  types                 module
 
118
  unicodedata           extension
 
119
  warnings              module
 
120
  weakref               module
 
121
  zipimport             extension
 
122
  zlib                  extension
 
123
 
 
124
Included are as well the codecs and stringprep modules, and the encodings
 
125
modules for all encodings except the multibyte encodings and the bz2 codec.
 
126
 
 
127
The following modules are excluded, their import is guarded from the
 
128
importing module:
 
129
 
 
130
  Used in       Excluded
 
131
  ------------  ------------------------------------
 
132
  io            _dummy_thread
 
133
  os            nt ntpath os2 os2emxpath mac macpath
 
134
                riscos riscospath riscosenviron
 
135
  optparse      gettext
 
136
  pickle        doctest
 
137
  subprocess    threading
 
138
 
 
139
This list was derived by looking at the modules in the perl-base package,
 
140
then adding python specific "core modules".
 
141
 
 
142
TODO's
 
143
------
 
144
 
 
145
- time.strptime cannot be used. The required _strptime module is not
 
146
  included in the -minimal package yet. _strptime, locale, _locale and
 
147
  calendar have to be added.
 
148
 
 
149
- modules used very often in the testsuite: copy, cPickle, operator.