~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/python_standard_libs.py

  • Committer: Ian Booth
  • Date: 2011-04-19 15:10:57 UTC
  • mfrom: (12868 devel)
  • mto: This revision was merged to the branch mainline in revision 12983.
  • Revision ID: ian.booth@canonical.com-20110419151057-he56y6k29c4zeiyk
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
updated from time to time.
11
11
"""
12
12
 
 
13
 
 
14
# Run this to generate a new module list.
 
15
if __name__ == '__main__':
 
16
    from lxml import html
 
17
    from sys import version_info, stdout
 
18
    modindex_url = (
 
19
        "http://docs.python.org/release/"
 
20
        "{0}.{1}.{2}/modindex.html").format(*version_info)
 
21
    root = html.parse(modindex_url).getroot()
 
22
    modules = set(
 
23
        node.text.split(".", 1)[0] # the "base" module name.
 
24
        for node in root.cssselect("table tt"))
 
25
    stdout.write("python_standard_libs = [\n")
 
26
    for module in sorted(modules, key=str.lower):
 
27
        stdout.write("    %r,\n" % module)
 
28
    stdout.write("    ]\n")
 
29
 
 
30
 
13
31
python_standard_libs = [
 
32
    '__builtin__',
 
33
    '__future__',
 
34
    '__main__',
 
35
    '_winreg',
 
36
    'abc',
 
37
    'aepack',
 
38
    'aetools',
 
39
    'aetypes',
14
40
    'aifc',
 
41
    'al',
 
42
    'AL',
15
43
    'anydbm',
 
44
    'applesingle',
16
45
    'array',
 
46
    'ast',
17
47
    'asynchat',
18
48
    'asyncore',
19
49
    'atexit',
20
50
    'audioop',
 
51
    'autoGIL',
21
52
    'base64',
22
53
    'BaseHTTPServer',
23
54
    'Bastion',
 
55
    'bdb',
24
56
    'binascii',
25
57
    'binhex',
26
58
    'bisect',
27
59
    'bsddb',
 
60
    'buildtools',
28
61
    'bz2',
29
62
    'calendar',
 
63
    'Carbon',
 
64
    'cd',
 
65
    'cfmfile',
30
66
    'cgi',
31
67
    'CGIHTTPServer',
32
68
    'cgitb',
37
73
    'codecs',
38
74
    'codeop',
39
75
    'collections',
 
76
    'ColorPicker',
40
77
    'colorsys',
41
78
    'commands',
42
79
    'compileall',
58
95
    'dbhash',
59
96
    'dbm',
60
97
    'decimal',
 
98
    'DEVICE',
61
99
    'difflib',
62
100
    'dircache',
63
101
    'dis',
68
106
    'dumbdbm',
69
107
    'dummy_thread',
70
108
    'dummy_threading',
 
109
    'EasyDialogs',
71
110
    'email',
72
111
    'encodings',
73
112
    'errno',
75
114
    'fcntl',
76
115
    'filecmp',
77
116
    'fileinput',
 
117
    'findertools',
 
118
    'FL',
 
119
    'fl',
 
120
    'flp',
 
121
    'fm',
78
122
    'fnmatch',
79
123
    'formatter',
80
124
    'fpectl',
81
125
    'fpformat',
 
126
    'fractions',
 
127
    'FrameWork',
82
128
    'ftplib',
83
129
    'functools',
 
130
    'future_builtins',
84
131
    'gc',
85
132
    'gdbm',
 
133
    'gensuitemodule',
86
134
    'getopt',
87
135
    'getpass',
88
136
    'gettext',
 
137
    'gl',
 
138
    'GL',
89
139
    'glob',
90
 
    'gopherlib',
91
140
    'grp',
92
141
    'gzip',
93
142
    'hashlib',
98
147
    'htmllib',
99
148
    'HTMLParser',
100
149
    'httplib',
 
150
    'ic',
 
151
    'icopen',
101
152
    'imageop',
102
153
    'imaplib',
 
154
    'imgfile',
103
155
    'imghdr',
104
156
    'imp',
 
157
    'imputil',
105
158
    'inspect',
 
159
    'io',
106
160
    'itertools',
 
161
    'jpeg',
 
162
    'json',
107
163
    'keyword',
 
164
    'lib2to3',
108
165
    'linecache',
109
166
    'locale',
110
167
    'logging',
 
168
    'macerrors',
 
169
    'MacOS',
 
170
    'macostools',
 
171
    'macpath',
 
172
    'macresource',
111
173
    'mailbox',
112
174
    'mailcap',
113
175
    'marshal',
118
180
    'mimetypes',
119
181
    'MimeWriter',
120
182
    'mimify',
 
183
    'MiniAEFrame',
121
184
    'mmap',
122
185
    'modulefinder',
 
186
    'msilib',
 
187
    'msvcrt',
123
188
    'multifile',
 
189
    'multiprocessing',
124
190
    'mutex',
 
191
    'Nav',
125
192
    'netrc',
126
193
    'new',
127
194
    'nis',
128
195
    'nntplib',
 
196
    'numbers',
129
197
    'operator',
130
198
    'optparse',
131
199
    'os',
135
203
    'pickle',
136
204
    'pickletools',
137
205
    'pipes',
 
206
    'PixMapWrapper',
138
207
    'pkgutil',
139
208
    'platform',
 
209
    'plistlib',
140
210
    'popen2',
141
211
    'poplib',
142
212
    'posix',
158
228
    'resource',
159
229
    'rexec',
160
230
    'rfc822',
161
 
    'rgbimg',
162
231
    'rlcompleter',
163
232
    'robotparser',
164
233
    'runpy',
182
251
    'SocketServer',
183
252
    'spwd',
184
253
    'sqlite3',
 
254
    'ssl',
185
255
    'stat',
186
256
    'statvfs',
187
257
    'string',
190
260
    'struct',
191
261
    'subprocess',
192
262
    'sunau',
 
263
    'sunaudiodev',
 
264
    'SUNAUDIODEV',
193
265
    'symbol',
 
266
    'symtable',
194
267
    'sys',
195
268
    'syslog',
196
269
    'tabnanny',
198
271
    'telnetlib',
199
272
    'tempfile',
200
273
    'termios',
201
 
    'test.test_support',
202
274
    'test',
203
275
    'textwrap',
204
276
    'thread',
216
288
    'types',
217
289
    'unicodedata',
218
290
    'unittest',
 
291
    'urllib',
219
292
    'urllib2',
220
 
    'urllib',
221
293
    'urlparse',
222
294
    'user',
223
295
    'UserDict',
225
297
    'UserString',
226
298
    'uu',
227
299
    'uuid',
 
300
    'videoreader',
 
301
    'W',
228
302
    'warnings',
229
303
    'wave',
230
304
    'weakref',
231
305
    'webbrowser',
232
306
    'whichdb',
 
307
    'winsound',
233
308
    'wsgiref',
234
309
    'xdrlib',
235
310
    'xml',