blob: a3d8d0bef964d65e6a37139feb4aacbe319061ec [file] [log] [blame]
Benjamin Peterson28d88b42009-01-09 03:03:23 +00001c-api/arg,,:ref,"PyArg_ParseTuple(args, ""O|O:ref"", &object, &callback)"
2c-api/list,,:high,list[low:high]
3c-api/list,,:high,list[low:high] = itemlist
Georg Brandl0e475c32012-03-04 16:22:05 +01004c-api/sequence,,:i2,del o[i1:i2]
Benjamin Peterson28d88b42009-01-09 03:03:23 +00005c-api/sequence,,:i2,o[i1:i2]
6c-api/sequence,,:i2,o[i1:i2] = v
Benjamin Peterson28d88b42009-01-09 03:03:23 +00007c-api/unicode,,:end,str[start:end]
Georg Brandl0e475c32012-03-04 16:22:05 +01008c-api/unicode,,:start,unicode[start:start+length]
9distutils/examples,267,`,This is the description of the ``foobar`` package.
Benjamin Peterson28d88b42009-01-09 03:03:23 +000010distutils/setupscript,,::,
11extending/embedding,,:numargs,"if(!PyArg_ParseTuple(args, "":numargs""))"
Benjamin Peterson28d88b42009-01-09 03:03:23 +000012extending/extending,,:myfunction,"PyArg_ParseTuple(args, ""D:myfunction"", &c);"
Georg Brandl0e475c32012-03-04 16:22:05 +010013extending/extending,,:set,"if (PyArg_ParseTuple(args, ""O:set_callback"", &temp)) {"
Benjamin Peterson28d88b42009-01-09 03:03:23 +000014extending/newtypes,,:call,"if (!PyArg_ParseTuple(args, ""sss:call"", &arg1, &arg2, &arg3)) {"
15extending/windows,,:initspam,/export:initspam
Georg Brandl0e475c32012-03-04 16:22:05 +010016faq/programming,,:chr,">=4.0) or 1+f(xc,yc,x*x-y*y+xc,2.0*x*y+yc,k-1,f):f(xc,yc,x,y,k,f):chr("
17faq/programming,,::,for x in sequence[::-1]:
18faq/programming,,:reduce,"print((lambda Ru,Ro,Iu,Io,IM,Sx,Sy:reduce(lambda x,y:x+y,map(lambda y,"
19faq/programming,,:reduce,"Sx=Sx,Sy=Sy:reduce(lambda x,y:x+y,map(lambda x,xc=Ru,yc=yc,Ru=Ru,Ro=Ro,"
20faq/windows,229,:EOF,@setlocal enableextensions & python -x %~f0 %* & goto :EOF
21faq/windows,393,:REG,.py :REG_SZ: c:\<path to python>\python.exe -u %s %s
Benjamin Peterson28d88b42009-01-09 03:03:23 +000022howto/cporting,,:add,"if (!PyArg_ParseTuple(args, ""ii:add_ints"", &one, &two))"
23howto/cporting,,:encode,"if (!PyArg_ParseTuple(args, ""O:encode_object"", &myobj))"
24howto/cporting,,:say,"if (!PyArg_ParseTuple(args, ""U:say_hello"", &name))"
25howto/curses,,:black,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
26howto/curses,,:blue,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
27howto/curses,,:cyan,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
28howto/curses,,:green,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
29howto/curses,,:magenta,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
30howto/curses,,:red,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
31howto/curses,,:white,"7:white."
32howto/curses,,:yellow,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
Georg Brandl0e475c32012-03-04 16:22:05 +010033howto/logging,,:And,"WARNING:And this, too"
34howto/logging,,:And,"WARNING:root:And this, too"
35howto/logging,,:Doing,INFO:root:Doing something
36howto/logging,,:Finished,INFO:root:Finished
37howto/logging,,:logger,severity:logger name:message
38howto/logging,,:Look,WARNING:root:Look before you leap!
39howto/logging,,:message,severity:logger name:message
40howto/logging,,:root,DEBUG:root:This message should go to the log file
41howto/logging,,:root,INFO:root:Doing something
42howto/logging,,:root,INFO:root:Finished
43howto/logging,,:root,INFO:root:So should this
44howto/logging,,:root,INFO:root:Started
45howto/logging,,:root,"WARNING:root:And this, too"
46howto/logging,,:root,WARNING:root:Look before you leap!
47howto/logging,,:root,WARNING:root:Watch out!
48howto/logging,,:So,INFO:root:So should this
49howto/logging,,:So,INFO:So should this
50howto/logging,,:Started,INFO:root:Started
51howto/logging,,:This,DEBUG:root:This message should go to the log file
52howto/logging,,:This,DEBUG:This message should appear on the console
53howto/logging,,:Watch,WARNING:root:Watch out!
54howto/pyporting,75,::,# make sure to use :: Python *and* :: Python :: 3 so
55howto/pyporting,75,::,"'Programming Language :: Python',"
56howto/pyporting,75,::,'Programming Language :: Python :: 3'
Benjamin Peterson28d88b42009-01-09 03:03:23 +000057howto/regex,,::,
58howto/regex,,:foo,(?:foo)
59howto/urllib2,,:example,"for example ""joe@password:example.com"""
60howto/webservers,,.. image:,.. image:: http.png
61library/audioop,,:ipos,"# factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)],"
Georg Brandl0e475c32012-03-04 16:22:05 +010062library/bisect,32,:hi,all(val >= x for val in a[i:hi])
63library/bisect,42,:hi,all(val > x for val in a[i:hi])
64library/configparser,,:home,my_dir: ${Common:home_dir}/twosheds
65library/configparser,,:option,${section:option}
66library/configparser,,:path,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
67library/configparser,,:Python,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
68library/configparser,,`,# Set the optional `raw` argument of get() to True if you wish to disable
69library/configparser,,:system,path: ${Common:system_dir}/Library/Frameworks/
70library/configparser,,`,# The optional `fallback` argument can be used to provide a fallback value
71library/configparser,,`,# The optional `vars` argument is a dict with members that will take
Benjamin Peterson28d88b42009-01-09 03:03:23 +000072library/datetime,,:MM,
73library/datetime,,:SS,
74library/decimal,,:optional,"trailneg:optional trailing minus indicator"
75library/difflib,,:ahi,a[alo:ahi]
76library/difflib,,:bhi,b[blo:bhi]
Georg Brandl0e475c32012-03-04 16:22:05 +010077library/difflib,,:i1,
Benjamin Peterson28d88b42009-01-09 03:03:23 +000078library/difflib,,:i2,
79library/difflib,,:j2,
Benjamin Peterson28d88b42009-01-09 03:03:23 +000080library/dis,,:TOS,
81library/dis,,`,TOS = `TOS`
82library/doctest,,`,``factorial`` from the ``example`` module:
83library/doctest,,`,The ``example`` module
84library/doctest,,`,Using ``factorial``
85library/functions,,:step,a[start:stop:step]
86library/functions,,:stop,"a[start:stop, i]"
87library/functions,,:stop,a[start:stop:step]
88library/hotshot,,:lineno,"ncalls tottime percall cumtime percall filename:lineno(function)"
Georg Brandl0e475c32012-03-04 16:22:05 +010089library/http.client,52,:port,host:port
Benjamin Peterson28d88b42009-01-09 03:03:23 +000090library/httplib,,:port,host:port
Georg Brandld3b41c62011-07-09 11:48:50 +020091library/imaplib,,:MM,"""DD-Mmm-YYYY HH:MM:SS"
92library/imaplib,,:SS,"""DD-Mmm-YYYY HH:MM:SS"
Benjamin Petersonef3e4c22009-04-11 19:48:14 +000093library/itertools,,:step,elements from seq[start:stop:step]
Georg Brandl0e475c32012-03-04 16:22:05 +010094library/itertools,,:stop,elements from seq[start:stop:step]
Benjamin Peterson28d88b42009-01-09 03:03:23 +000095library/linecache,,:sys,"sys:x:3:3:sys:/dev:/bin/sh"
96library/logging,,:And,
Georg Brandl0e475c32012-03-04 16:22:05 +010097library/logging,,:Doing,INFO:root:Doing something
98library/logging,,:Finished,INFO:root:Finished
99library/logging,,:logger,severity:logger name:message
100library/logging,,:Look,WARNING:root:Look before you leap!
101library/logging,,:message,severity:logger name:message
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000102library/logging,,:package1,
103library/logging,,:package2,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000104library/logging,,:port,host:port
Georg Brandl0e475c32012-03-04 16:22:05 +0100105library/logging,,:root,
106library/logging,,:So,INFO:root:So should this
107library/logging,,:So,INFO:So should this
108library/logging,,:Started,INFO:root:Started
109library/logging,,:This,
110library/logging,,:Watch,WARNING:root:Watch out!
111library/logging.handlers,,:port,host:port
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000112library/mmap,,:i2,obj[i1:i2]
Georg Brandl0e475c32012-03-04 16:22:05 +0100113library/multiprocessing,,`,# Add more tasks using `put()`
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000114library/multiprocessing,,`,# A test file for the `multiprocessing` package
115library/multiprocessing,,`,# A test of `multiprocessing.Pool` class
Georg Brandl0e475c32012-03-04 16:22:05 +0100116library/multiprocessing,,`,# `BaseManager`.
117library/multiprocessing,,`,`Cluster` is a subclass of `SyncManager` so it allows creation of
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000118library/multiprocessing,,`,# create server for a `HostManager` object
119library/multiprocessing,,`,# Depends on `multiprocessing` package -- tested with `processing-0.60`
Georg Brandl0e475c32012-03-04 16:22:05 +0100120library/multiprocessing,,`,`hostname` gives the name of the host. If hostname is not
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000121library/multiprocessing,,`,# in the original order then consider using `Pool.map()` or
Georg Brandl0e475c32012-03-04 16:22:05 +0100122library/multiprocessing,,`,">>> l._callmethod('__getitem__', (20,)) # equiv to `l[20]`"
123library/multiprocessing,,`,">>> l._callmethod('__getslice__', (2, 7)) # equiv to `l[2:7]`"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000124library/multiprocessing,,`,# Not sure if we should synchronize access to `socket.accept()` method by
125library/multiprocessing,,`,# object. (We import `multiprocessing.reduction` to enable this pickling.)
Georg Brandl0e475c32012-03-04 16:22:05 +0100126library/multiprocessing,,`,# `Pool.imap()` (which will save on the amount of code needed anyway).
127library/multiprocessing,,:queue,">>> QueueManager.register('get_queue', callable=lambda:queue)"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000128library/multiprocessing,,`,# register the Foo class; make `f()` and `g()` accessible via proxy
129library/multiprocessing,,`,# register the Foo class; make `g()` and `_h()` accessible via proxy
130library/multiprocessing,,`,# register the generator function baz; use `GeneratorProxy` to make proxies
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000131library/multiprocessing,,`,`slots` is used to specify the number of slots for processes on
Georg Brandl0e475c32012-03-04 16:22:05 +0100132library/nntplib,,:bytes,:bytes
133library/nntplib,,:bytes,"['xref', 'from', ':lines', ':bytes', 'references', 'date', 'message-id', 'subject']"
134library/nntplib,,:lines,:lines
135library/nntplib,,:lines,"['xref', 'from', ':lines', ':bytes', 'references', 'date', 'message-id', 'subject']"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000136library/optparse,,:len,"del parser.rargs[:len(value)]"
137library/os.path,,:foo,c:foo
138library/parser,,`,"""Make a function that raises an argument to the exponent `exp`."""
Georg Brandl0e475c32012-03-04 16:22:05 +0100139library/pdb,,:lineno,filename:lineno
140library/pdb,,:lineno,[filename:lineno | bpnumber [bpnumber ...]]
141library/pickle,,:memory,"conn = sqlite3.connect("":memory:"")"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000142library/posix,,`,"CFLAGS=""`getconf LFS_CFLAGS`"" OPT=""-g -O2 $CFLAGS"""
Georg Brandl0e475c32012-03-04 16:22:05 +0100143library/pprint,209,::,"'classifiers': ['Development Status :: 4 - Beta',"
144library/pprint,209,::,"'Intended Audience :: Developers',"
145library/pprint,209,::,"'License :: OSI Approved :: MIT License',"
146library/pprint,209,::,"'Natural Language :: English',"
147library/pprint,209,::,"'Operating System :: OS Independent',"
148library/pprint,209,::,"'Programming Language :: Python',"
149library/pprint,209,::,"'Programming Language :: Python :: 2',"
150library/pprint,209,::,"'Programming Language :: Python :: 2.6',"
151library/pprint,209,::,"'Programming Language :: Python :: 2.7',"
152library/pprint,209,::,"'Topic :: Software Development :: Libraries',"
153library/pprint,209,::,"'Topic :: Software Development :: Libraries :: Python Modules'],"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000154library/profile,,:lineno,filename:lineno(function)
Georg Brandl0e475c32012-03-04 16:22:05 +0100155library/profile,,:lineno,ncalls tottime percall cumtime percall filename:lineno(function)
156library/profile,,:lineno,"(sort by filename:lineno),"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000157library/pyexpat,,:elem1,<py:elem1 />
158library/pyexpat,,:py,"xmlns:py = ""http://www.python.org/ns/"">"
159library/repr,,`,"return `obj`"
160library/smtplib,,:port,"as well as a regular host:port server."
Georg Brandl0e475c32012-03-04 16:22:05 +0100161library/smtplib,,:port,method must support that as well as a regular host:port
162library/socket,,::,"(10, 1, 6, '', ('2001:888:2000:d::a2', 80, 0, 0))]"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000163library/socket,,::,'5aef:2b::8'
Georg Brandl0e475c32012-03-04 16:22:05 +0100164library/socket,,:can,"return (can_id, can_dlc, data[:can_dlc])"
165library/socket,,:len,fds.fromstring(cmsg_data[:len(cmsg_data) - (len(cmsg_data) % fds.itemsize)])
166library/sqlite3,,:age,"cur.execute(""select * from people where name_last=:who and age=:age"", {""who"": who, ""age"": age})"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000167library/sqlite3,,:age,"select name_last, age from people where name_last=:who and age=:age"
Georg Brandl0e475c32012-03-04 16:22:05 +0100168library/sqlite3,,:memory,
169library/sqlite3,,:who,"cur.execute(""select * from people where name_last=:who and age=:age"", {""who"": who, ""age"": age})"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000170library/ssl,,:My,"Organizational Unit Name (eg, section) []:My Group"
Georg Brandl0e475c32012-03-04 16:22:05 +0100171library/ssl,,:My,"Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc."
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000172library/ssl,,:myserver,"Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com"
173library/ssl,,:MyState,State or Province Name (full name) [Some-State]:MyState
174library/ssl,,:ops,Email Address []:ops@myserver.mygroup.myorganization.com
175library/ssl,,:Some,"Locality Name (eg, city) []:Some City"
176library/ssl,,:US,Country Name (2 letter code) [AU]:US
Georg Brandl0e475c32012-03-04 16:22:05 +0100177library/stdtypes,,::,>>> a[::-1].tolist()
178library/stdtypes,,::,>>> a[::2].tolist()
179library/stdtypes,,:end,s[start:end]
180library/stdtypes,,::,>>> hash(v[::-2]) == hash(b'abcefg'[::-2])
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000181library/stdtypes,,:len,s[len(s):len(s)]
Georg Brandl0e475c32012-03-04 16:22:05 +0100182library/stdtypes,,::,>>> y = m[::2]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000183library/string,,:end,s[start:end]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000184library/subprocess,,`,"output=`dmesg | grep hda`"
Georg Brandl0e475c32012-03-04 16:22:05 +0100185library/subprocess,,`,"output=`mycmd myarg`"
186library/tarfile,,:bz2,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000187library/tarfile,,:compression,filemode[:compression]
188library/tarfile,,:gz,
Georg Brandl0e475c32012-03-04 16:22:05 +0100189library/tarfile,,:xz,'a:xz'
190library/tarfile,,:xz,'r:xz'
191library/tarfile,,:xz,'w:xz'
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000192library/time,,:mm,
193library/time,,:ss,
194library/turtle,,::,Example::
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000195library/urllib2,,:password,"""joe:password@python.org"""
Georg Brandl0e475c32012-03-04 16:22:05 +0100196library/urllib,,:port,:port
197library/urllib.request,,:close,Connection:close
198library/urllib.request,,:lang,"xmlns=""http://www.w3.org/1999/xhtml"" xml:lang=""en"" lang=""en"">\n\n<head>\n"
199library/urllib.request,,:password,"""joe:password@python.org"""
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000200library/uuid,,:uuid,urn:uuid:12345678-1234-5678-1234-567812345678
Georg Brandl0e475c32012-03-04 16:22:05 +0100201library/xmlrpc.client,,:pass,http://user:pass@host:port/path
202library/xmlrpc.client,,:pass,user:pass
203library/xmlrpc.client,,:port,http://user:pass@host:port/path
204license,,`,"``Software''), to deal in the Software without restriction, including"
205license,,`,"THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,"
206license,,`,* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
207license,,`,THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
208license,,`,* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000209license,,`,THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
210license,,:zooko,mailto:zooko@zooko.com
Georg Brandl0e475c32012-03-04 16:22:05 +0100211packaging/examples,,`,This is the description of the ``foobar`` project.
212packaging/setupcfg,,::,Development Status :: 3 - Alpha
213packaging/setupcfg,,::,License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)
214packaging/setupscript,,::,"'Development Status :: 4 - Beta',"
215packaging/setupscript,,::,"'Environment :: Console',"
216packaging/setupscript,,::,"'Environment :: Web Environment',"
217packaging/setupscript,,::,"'Intended Audience :: Developers',"
218packaging/setupscript,,::,"'Intended Audience :: End Users/Desktop',"
219packaging/setupscript,,::,"'Intended Audience :: System Administrators',"
220packaging/setupscript,,::,"'License :: OSI Approved :: Python Software Foundation License',"
221packaging/setupscript,,::,"'Operating System :: MacOS :: MacOS X',"
222packaging/setupscript,,::,"'Operating System :: Microsoft :: Windows',"
223packaging/setupscript,,::,"'Operating System :: POSIX',"
224packaging/setupscript,,::,"'Programming Language :: Python',"
225packaging/setupscript,,::,"'Topic :: Communications :: Email',"
226packaging/setupscript,,::,"'Topic :: Office/Business',"
227packaging/setupscript,,::,"'Topic :: Software Development :: Bug Tracking',"
228packaging/tutorial,,::,1) License :: OSI Approved :: GNU General Public License (GPL)
229packaging/tutorial,,::,2) License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
230packaging/tutorial,,::,classifier = Development Status :: 3 - Alpha
231packaging/tutorial,,::,License :: OSI Approved :: GNU General Public License (GPL)
232packaging/tutorial,,::,Type the number of the license you wish to use or ? to try again:: 1
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000233reference/datamodel,,:max,
Georg Brandl0e475c32012-03-04 16:22:05 +0100234reference/datamodel,,:step,a[i:j:step]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000235reference/expressions,,:datum,{key:datum...}
236reference/expressions,,`,`expressions...`
Georg Brandl0e475c32012-03-04 16:22:05 +0100237reference/expressions,,:index,x[index:index]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000238reference/grammar,,:output,#diagram:output
239reference/grammar,,:rules,#diagram:rules
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000240reference/grammar,,`,'`' testlist1 '`'
Georg Brandl0e475c32012-03-04 16:22:05 +0100241reference/grammar,,:token,#diagram:token
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000242reference/lexical_analysis,,`,", : . ` = ;"
Georg Brandl0e475c32012-03-04 16:22:05 +0100243reference/lexical_analysis,,`,$ ? `
244reference/lexical_analysis,,:fileencoding,# vim:fileencoding=<encoding-name>
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000245tutorial/datastructures,,:value,It is also possible to delete a key:value
Georg Brandl0e475c32012-03-04 16:22:05 +0100246tutorial/datastructures,,:value,key:value pairs within the braces adds initial key:value pairs
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000247tutorial/stdlib2,,:config,"logging.warning('Warning:config file %s not found', 'server.conf')"
248tutorial/stdlib2,,:config,WARNING:root:Warning:config file server.conf not found
249tutorial/stdlib2,,:Critical,CRITICAL:root:Critical error -- shutting down
250tutorial/stdlib2,,:Error,ERROR:root:Error occurred
251tutorial/stdlib2,,:root,CRITICAL:root:Critical error -- shutting down
252tutorial/stdlib2,,:root,ERROR:root:Error occurred
253tutorial/stdlib2,,:root,WARNING:root:Warning:config file server.conf not found
Georg Brandl0e475c32012-03-04 16:22:05 +0100254tutorial/stdlib2,,:start,extra = data[start:start+extra_size]
255tutorial/stdlib2,,:start,"fields = struct.unpack('<IIIHH', data[start:start+16])"
256tutorial/stdlib2,,:start,filename = data[start:start+filenamesize]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000257tutorial/stdlib2,,:Warning,WARNING:root:Warning:config file server.conf not found
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000258using/cmdline,,:category,action:message:category:module:line
Georg Brandl0e475c32012-03-04 16:22:05 +0100259using/cmdline,,:errorhandler,:errorhandler
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000260using/cmdline,,:line,action:message:category:module:line
Georg Brandl0e475c32012-03-04 16:22:05 +0100261using/cmdline,,:line,file:line: category: message
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000262using/cmdline,,:message,action:message:category:module:line
263using/cmdline,,:module,action:message:category:module:line
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000264whatsnew/2.0,418,:len,
265whatsnew/2.3,,::,
266whatsnew/2.3,,:config,
267whatsnew/2.3,,:Critical,
268whatsnew/2.3,,:Error,
269whatsnew/2.3,,:Problem,
270whatsnew/2.3,,:root,
271whatsnew/2.3,,:Warning,
272whatsnew/2.4,,::,
273whatsnew/2.4,,:System,
274whatsnew/2.5,,:memory,:memory:
275whatsnew/2.5,,:step,[start:stop:step]
276whatsnew/2.5,,:stop,[start:stop:step]
Georg Brandl19b3e002010-10-06 10:35:24 +0000277whatsnew/2.7,1619,::,"ParseResult(scheme='http', netloc='[1080::8:800:200C:417A]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100278whatsnew/2.7,1619,::,>>> urlparse.urlparse('http://[1080::8:800:200C:417A]/foo')
279whatsnew/2.7,735,:Sunday,'2009:4:Sunday'
280whatsnew/2.7,862,:Cookie,"export PYTHONWARNINGS=all,error:::Cookie:0"
281whatsnew/2.7,862,::,"export PYTHONWARNINGS=all,error:::Cookie:0"
Georg Brandl14927d02011-02-20 10:22:41 +0000282whatsnew/3.2,,:affe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100283whatsnew/3.2,,:affe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
284whatsnew/3.2,,:beef,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
285whatsnew/3.2,,:beef,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
286whatsnew/3.2,,:cafe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
287whatsnew/3.2,,:cafe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
Georg Brandl14927d02011-02-20 10:22:41 +0000288whatsnew/3.2,,:deaf,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100289whatsnew/3.2,,:deaf,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
290whatsnew/3.2,,:directory,... ${buildout:directory}/downloads/dist
291whatsnew/3.2,,:directory,${buildout:directory}/downloads/dist
292whatsnew/3.2,,::,"$ export PYTHONWARNINGS='ignore::RuntimeWarning::,once::UnicodeWarning::'"
Georg Brandl14927d02011-02-20 10:22:41 +0000293whatsnew/3.2,,:feed,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100294whatsnew/3.2,,:feed,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
295whatsnew/3.2,,:gz,">>> with tarfile.open(name='myarchive.tar.gz', mode='w:gz') as tf:"
296whatsnew/3.2,,:location,... zope9-location = ${zope9:location}
297whatsnew/3.2,,:location,zope9-location = ${zope9:location}
298whatsnew/3.2,,:prefix,... zope-conf = ${custom:prefix}/etc/zope.conf
299whatsnew/3.2,,:prefix,zope-conf = ${custom:prefix}/etc/zope.conf