blob: 8ce478a741c32438b30bffff141bd3c6e1fddc05 [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 Brandl3539afd2012-05-30 22:03:20 +020033howto/ipaddress,,:DB8,>>> ipaddress.ip_address('2001:DB8::1')
34howto/ipaddress,,::,>>> ipaddress.ip_address('2001:DB8::1')
35howto/ipaddress,,:db8,IPv6Address('2001:db8::1')
36howto/ipaddress,,::,IPv6Address('2001:db8::1')
37howto/ipaddress,,:db8,IPv6Address('2001:db8::1')
38howto/ipaddress,,::,IPv6Address('2001:db8::1')
39howto/ipaddress,,::,IPv6Address('::1')
40howto/ipaddress,,:db8,>>> ipaddress.ip_network('2001:db8::0/96')
41howto/ipaddress,,::,>>> ipaddress.ip_network('2001:db8::0/96')
42howto/ipaddress,,:db8,IPv6Network('2001:db8::/96')
43howto/ipaddress,,::,IPv6Network('2001:db8::/96')
44howto/ipaddress,,:db8,IPv6Network('2001:db8::/128')
45howto/ipaddress,,::,IPv6Network('2001:db8::/128')
46howto/ipaddress,,:db8,>>> ipaddress.ip_network('2001:db8::1/96')
47howto/ipaddress,,::,>>> ipaddress.ip_network('2001:db8::1/96')
48howto/ipaddress,,:db8,IPv6Interface('2001:db8::1/96')
49howto/ipaddress,,::,IPv6Interface('2001:db8::1/96')
50howto/ipaddress,,:db8,>>> addr6 = ipaddress.ip_address('2001:db8::1')
51howto/ipaddress,,::,>>> addr6 = ipaddress.ip_address('2001:db8::1')
52howto/ipaddress,,:db8,>>> host6 = ipaddress.ip_interface('2001:db8::1/96')
53howto/ipaddress,,::,>>> host6 = ipaddress.ip_interface('2001:db8::1/96')
54howto/ipaddress,,:db8,IPv6Network('2001:db8::/96')
55howto/ipaddress,,::,IPv6Network('2001:db8::/96')
56howto/ipaddress,,:db8,>>> net6 = ipaddress.ip_network('2001:db8::0/96')
57howto/ipaddress,,::,>>> net6 = ipaddress.ip_network('2001:db8::0/96')
58howto/ipaddress,,:db8,>>> net6 = ipaddress.ip_network('2001:db8::0/96')
59howto/ipaddress,,::,>>> net6 = ipaddress.ip_network('2001:db8::0/96')
60howto/ipaddress,,:ffff,IPv6Address('ffff:ffff:ffff:ffff:ffff:ffff::')
61howto/ipaddress,,::,IPv6Address('ffff:ffff:ffff:ffff:ffff:ffff::')
62howto/ipaddress,,::,IPv6Address('::ffff:ffff')
63howto/ipaddress,,:ffff,IPv6Address('::ffff:ffff')
64howto/ipaddress,,::,IPv6Address('2001::1')
65howto/ipaddress,,::,IPv6Address('2001::ffff:ffff')
66howto/ipaddress,,:ffff,IPv6Address('2001::ffff:ffff')
Georg Brandl0e475c32012-03-04 16:22:05 +010067howto/logging,,:And,"WARNING:And this, too"
68howto/logging,,:And,"WARNING:root:And this, too"
69howto/logging,,:Doing,INFO:root:Doing something
70howto/logging,,:Finished,INFO:root:Finished
71howto/logging,,:logger,severity:logger name:message
72howto/logging,,:Look,WARNING:root:Look before you leap!
73howto/logging,,:message,severity:logger name:message
74howto/logging,,:root,DEBUG:root:This message should go to the log file
75howto/logging,,:root,INFO:root:Doing something
76howto/logging,,:root,INFO:root:Finished
77howto/logging,,:root,INFO:root:So should this
78howto/logging,,:root,INFO:root:Started
79howto/logging,,:root,"WARNING:root:And this, too"
80howto/logging,,:root,WARNING:root:Look before you leap!
81howto/logging,,:root,WARNING:root:Watch out!
82howto/logging,,:So,INFO:root:So should this
83howto/logging,,:So,INFO:So should this
84howto/logging,,:Started,INFO:root:Started
85howto/logging,,:This,DEBUG:root:This message should go to the log file
86howto/logging,,:This,DEBUG:This message should appear on the console
87howto/logging,,:Watch,WARNING:root:Watch out!
88howto/pyporting,75,::,# make sure to use :: Python *and* :: Python :: 3 so
89howto/pyporting,75,::,"'Programming Language :: Python',"
90howto/pyporting,75,::,'Programming Language :: Python :: 3'
Benjamin Peterson28d88b42009-01-09 03:03:23 +000091howto/regex,,::,
92howto/regex,,:foo,(?:foo)
93howto/urllib2,,:example,"for example ""joe@password:example.com"""
94howto/webservers,,.. image:,.. image:: http.png
95library/audioop,,:ipos,"# factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)],"
Georg Brandl0e475c32012-03-04 16:22:05 +010096library/bisect,32,:hi,all(val >= x for val in a[i:hi])
97library/bisect,42,:hi,all(val > x for val in a[i:hi])
98library/configparser,,:home,my_dir: ${Common:home_dir}/twosheds
99library/configparser,,:option,${section:option}
100library/configparser,,:path,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
101library/configparser,,:Python,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
102library/configparser,,`,# Set the optional `raw` argument of get() to True if you wish to disable
103library/configparser,,:system,path: ${Common:system_dir}/Library/Frameworks/
104library/configparser,,`,# The optional `fallback` argument can be used to provide a fallback value
105library/configparser,,`,# The optional `vars` argument is a dict with members that will take
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000106library/datetime,,:MM,
107library/datetime,,:SS,
108library/decimal,,:optional,"trailneg:optional trailing minus indicator"
109library/difflib,,:ahi,a[alo:ahi]
110library/difflib,,:bhi,b[blo:bhi]
Georg Brandl0e475c32012-03-04 16:22:05 +0100111library/difflib,,:i1,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000112library/difflib,,:i2,
113library/difflib,,:j2,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000114library/dis,,:TOS,
115library/dis,,`,TOS = `TOS`
116library/doctest,,`,``factorial`` from the ``example`` module:
117library/doctest,,`,The ``example`` module
118library/doctest,,`,Using ``factorial``
119library/functions,,:step,a[start:stop:step]
120library/functions,,:stop,"a[start:stop, i]"
121library/functions,,:stop,a[start:stop:step]
122library/hotshot,,:lineno,"ncalls tottime percall cumtime percall filename:lineno(function)"
Georg Brandl0e475c32012-03-04 16:22:05 +0100123library/http.client,52,:port,host:port
Georg Brandlebb29642012-05-01 09:29:56 +0200124library/http.cookies,,`,!#$%&'*+-.^_`|~:
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000125library/httplib,,:port,host:port
Georg Brandld3b41c62011-07-09 11:48:50 +0200126library/imaplib,,:MM,"""DD-Mmm-YYYY HH:MM:SS"
127library/imaplib,,:SS,"""DD-Mmm-YYYY HH:MM:SS"
Georg Brandl3f81ba82012-06-26 09:12:26 +0200128library/ipaddress,,:db8,>>> ipaddress.ip_address('2001:db8::')
129library/ipaddress,,::,>>> ipaddress.ip_address('2001:db8::')
130library/ipaddress,,:db8,IPv6Address('2001:db8::')
131library/ipaddress,,::,IPv6Address('2001:db8::')
132library/ipaddress,,:db8,>>> ipaddress.IPv6Address('2001:db8::1000')
133library/ipaddress,,::,>>> ipaddress.IPv6Address('2001:db8::1000')
134library/ipaddress,,:db8,IPv6Address('2001:db8::1000')
135library/ipaddress,,::,IPv6Address('2001:db8::1000')
136library/ipaddress,,:db8,>>> ipaddress.IPv6Interface('2001:db8::1000/96')
137library/ipaddress,,::,>>> ipaddress.IPv6Interface('2001:db8::1000/96')
138library/ipaddress,,:db8,IPv6Interface('2001:db8::1000/96')
139library/ipaddress,,::,IPv6Interface('2001:db8::1000/96')
140library/ipaddress,,:db8,>>> ipaddress.IPv6Interface('2001:db8::1000/96').network
141library/ipaddress,,::,>>> ipaddress.IPv6Interface('2001:db8::1000/96').network
142library/ipaddress,,:db8,IPv6Network('2001:db8::/96')
143library/ipaddress,,::,IPv6Network('2001:db8::/96')
144library/ipaddress,,:db8,>>> ipaddress.IPv6Network('2001:db8::/96')
145library/ipaddress,,::,>>> ipaddress.IPv6Network('2001:db8::/96')
146library/ipaddress,,:db8,IPv6Network('2001:db8::/96')
147library/ipaddress,,::,IPv6Network('2001:db8::/96')
148library/ipaddress,,:db8,>>> ipaddress.IPv6Network('2001:db8::/96').netmask
149library/ipaddress,,::,>>> ipaddress.IPv6Network('2001:db8::/96').netmask
150library/ipaddress,,:ffff,IPv6Address('ffff:ffff:ffff:ffff:ffff:ffff::')
151library/ipaddress,,::,IPv6Address('ffff:ffff:ffff:ffff:ffff:ffff::')
152library/ipaddress,,:db8,">>> ipaddress.IPv6Network('2001:db8::1000/96', strict=False)"
153library/ipaddress,,::,">>> ipaddress.IPv6Network('2001:db8::1000/96', strict=False)"
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000154library/itertools,,:step,elements from seq[start:stop:step]
Georg Brandl0e475c32012-03-04 16:22:05 +0100155library/itertools,,:stop,elements from seq[start:stop:step]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000156library/linecache,,:sys,"sys:x:3:3:sys:/dev:/bin/sh"
157library/logging,,:And,
Georg Brandl0e475c32012-03-04 16:22:05 +0100158library/logging,,:Doing,INFO:root:Doing something
159library/logging,,:Finished,INFO:root:Finished
160library/logging,,:logger,severity:logger name:message
161library/logging,,:Look,WARNING:root:Look before you leap!
162library/logging,,:message,severity:logger name:message
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000163library/logging,,:package1,
164library/logging,,:package2,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000165library/logging,,:port,host:port
Georg Brandl0e475c32012-03-04 16:22:05 +0100166library/logging,,:root,
167library/logging,,:So,INFO:root:So should this
168library/logging,,:So,INFO:So should this
169library/logging,,:Started,INFO:root:Started
170library/logging,,:This,
171library/logging,,:Watch,WARNING:root:Watch out!
172library/logging.handlers,,:port,host:port
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000173library/mmap,,:i2,obj[i1:i2]
Georg Brandl0e475c32012-03-04 16:22:05 +0100174library/multiprocessing,,`,# Add more tasks using `put()`
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000175library/multiprocessing,,`,# A test file for the `multiprocessing` package
176library/multiprocessing,,`,# A test of `multiprocessing.Pool` class
Georg Brandl0e475c32012-03-04 16:22:05 +0100177library/multiprocessing,,`,# `BaseManager`.
178library/multiprocessing,,`,`Cluster` is a subclass of `SyncManager` so it allows creation of
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000179library/multiprocessing,,`,# create server for a `HostManager` object
180library/multiprocessing,,`,# Depends on `multiprocessing` package -- tested with `processing-0.60`
Georg Brandl0e475c32012-03-04 16:22:05 +0100181library/multiprocessing,,`,`hostname` gives the name of the host. If hostname is not
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000182library/multiprocessing,,`,# in the original order then consider using `Pool.map()` or
Georg Brandl0e475c32012-03-04 16:22:05 +0100183library/multiprocessing,,`,">>> l._callmethod('__getitem__', (20,)) # equiv to `l[20]`"
184library/multiprocessing,,`,">>> l._callmethod('__getslice__', (2, 7)) # equiv to `l[2:7]`"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000185library/multiprocessing,,`,# Not sure if we should synchronize access to `socket.accept()` method by
186library/multiprocessing,,`,# object. (We import `multiprocessing.reduction` to enable this pickling.)
Georg Brandl0e475c32012-03-04 16:22:05 +0100187library/multiprocessing,,`,# `Pool.imap()` (which will save on the amount of code needed anyway).
188library/multiprocessing,,:queue,">>> QueueManager.register('get_queue', callable=lambda:queue)"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000189library/multiprocessing,,`,# register the Foo class; make `f()` and `g()` accessible via proxy
190library/multiprocessing,,`,# register the Foo class; make `g()` and `_h()` accessible via proxy
191library/multiprocessing,,`,# register the generator function baz; use `GeneratorProxy` to make proxies
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000192library/multiprocessing,,`,`slots` is used to specify the number of slots for processes on
Georg Brandl0e475c32012-03-04 16:22:05 +0100193library/nntplib,,:bytes,:bytes
194library/nntplib,,:bytes,"['xref', 'from', ':lines', ':bytes', 'references', 'date', 'message-id', 'subject']"
195library/nntplib,,:lines,:lines
196library/nntplib,,:lines,"['xref', 'from', ':lines', ':bytes', 'references', 'date', 'message-id', 'subject']"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000197library/optparse,,:len,"del parser.rargs[:len(value)]"
198library/os.path,,:foo,c:foo
199library/parser,,`,"""Make a function that raises an argument to the exponent `exp`."""
Georg Brandl0e475c32012-03-04 16:22:05 +0100200library/pdb,,:lineno,filename:lineno
201library/pdb,,:lineno,[filename:lineno | bpnumber [bpnumber ...]]
202library/pickle,,:memory,"conn = sqlite3.connect("":memory:"")"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000203library/posix,,`,"CFLAGS=""`getconf LFS_CFLAGS`"" OPT=""-g -O2 $CFLAGS"""
Georg Brandl0e475c32012-03-04 16:22:05 +0100204library/pprint,209,::,"'classifiers': ['Development Status :: 4 - Beta',"
205library/pprint,209,::,"'Intended Audience :: Developers',"
206library/pprint,209,::,"'License :: OSI Approved :: MIT License',"
207library/pprint,209,::,"'Natural Language :: English',"
208library/pprint,209,::,"'Operating System :: OS Independent',"
209library/pprint,209,::,"'Programming Language :: Python',"
210library/pprint,209,::,"'Programming Language :: Python :: 2',"
211library/pprint,209,::,"'Programming Language :: Python :: 2.6',"
212library/pprint,209,::,"'Programming Language :: Python :: 2.7',"
213library/pprint,209,::,"'Topic :: Software Development :: Libraries',"
214library/pprint,209,::,"'Topic :: Software Development :: Libraries :: Python Modules'],"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000215library/profile,,:lineno,filename:lineno(function)
Georg Brandl0e475c32012-03-04 16:22:05 +0100216library/profile,,:lineno,ncalls tottime percall cumtime percall filename:lineno(function)
217library/profile,,:lineno,"(sort by filename:lineno),"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000218library/pyexpat,,:elem1,<py:elem1 />
219library/pyexpat,,:py,"xmlns:py = ""http://www.python.org/ns/"">"
220library/repr,,`,"return `obj`"
221library/smtplib,,:port,"as well as a regular host:port server."
Georg Brandl0e475c32012-03-04 16:22:05 +0100222library/smtplib,,:port,method must support that as well as a regular host:port
223library/socket,,::,"(10, 1, 6, '', ('2001:888:2000:d::a2', 80, 0, 0))]"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000224library/socket,,::,'5aef:2b::8'
Georg Brandl0e475c32012-03-04 16:22:05 +0100225library/socket,,:can,"return (can_id, can_dlc, data[:can_dlc])"
226library/socket,,:len,fds.fromstring(cmsg_data[:len(cmsg_data) - (len(cmsg_data) % fds.itemsize)])
227library/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 +0000228library/sqlite3,,:age,"select name_last, age from people where name_last=:who and age=:age"
Georg Brandl0e475c32012-03-04 16:22:05 +0100229library/sqlite3,,:memory,
230library/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 +0000231library/ssl,,:My,"Organizational Unit Name (eg, section) []:My Group"
Georg Brandl0e475c32012-03-04 16:22:05 +0100232library/ssl,,:My,"Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc."
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000233library/ssl,,:myserver,"Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com"
234library/ssl,,:MyState,State or Province Name (full name) [Some-State]:MyState
235library/ssl,,:ops,Email Address []:ops@myserver.mygroup.myorganization.com
236library/ssl,,:Some,"Locality Name (eg, city) []:Some City"
237library/ssl,,:US,Country Name (2 letter code) [AU]:US
Georg Brandl0e475c32012-03-04 16:22:05 +0100238library/stdtypes,,::,>>> a[::-1].tolist()
239library/stdtypes,,::,>>> a[::2].tolist()
240library/stdtypes,,:end,s[start:end]
241library/stdtypes,,::,>>> hash(v[::-2]) == hash(b'abcefg'[::-2])
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000242library/stdtypes,,:len,s[len(s):len(s)]
Georg Brandl0e475c32012-03-04 16:22:05 +0100243library/stdtypes,,::,>>> y = m[::2]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000244library/string,,:end,s[start:end]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000245library/subprocess,,`,"output=`dmesg | grep hda`"
Georg Brandl0e475c32012-03-04 16:22:05 +0100246library/subprocess,,`,"output=`mycmd myarg`"
247library/tarfile,,:bz2,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000248library/tarfile,,:compression,filemode[:compression]
249library/tarfile,,:gz,
Georg Brandl0e475c32012-03-04 16:22:05 +0100250library/tarfile,,:xz,'a:xz'
251library/tarfile,,:xz,'r:xz'
252library/tarfile,,:xz,'w:xz'
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000253library/time,,:mm,
254library/time,,:ss,
255library/turtle,,::,Example::
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000256library/urllib2,,:password,"""joe:password@python.org"""
Georg Brandl0e475c32012-03-04 16:22:05 +0100257library/urllib,,:port,:port
258library/urllib.request,,:close,Connection:close
259library/urllib.request,,:lang,"xmlns=""http://www.w3.org/1999/xhtml"" xml:lang=""en"" lang=""en"">\n\n<head>\n"
260library/urllib.request,,:password,"""joe:password@python.org"""
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000261library/uuid,,:uuid,urn:uuid:12345678-1234-5678-1234-567812345678
Georg Brandl0e475c32012-03-04 16:22:05 +0100262library/xmlrpc.client,,:pass,http://user:pass@host:port/path
263library/xmlrpc.client,,:pass,user:pass
264library/xmlrpc.client,,:port,http://user:pass@host:port/path
265license,,`,"``Software''), to deal in the Software without restriction, including"
266license,,`,"THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,"
267license,,`,* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
268license,,`,THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
269license,,`,* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000270license,,`,THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
271license,,:zooko,mailto:zooko@zooko.com
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000272reference/datamodel,,:max,
Georg Brandl0e475c32012-03-04 16:22:05 +0100273reference/datamodel,,:step,a[i:j:step]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000274reference/expressions,,:datum,{key:datum...}
275reference/expressions,,`,`expressions...`
Georg Brandl0e475c32012-03-04 16:22:05 +0100276reference/expressions,,:index,x[index:index]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000277reference/grammar,,:output,#diagram:output
278reference/grammar,,:rules,#diagram:rules
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000279reference/grammar,,`,'`' testlist1 '`'
Georg Brandl0e475c32012-03-04 16:22:05 +0100280reference/grammar,,:token,#diagram:token
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000281reference/lexical_analysis,,`,", : . ` = ;"
Georg Brandl0e475c32012-03-04 16:22:05 +0100282reference/lexical_analysis,,`,$ ? `
283reference/lexical_analysis,,:fileencoding,# vim:fileencoding=<encoding-name>
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000284tutorial/datastructures,,:value,It is also possible to delete a key:value
Georg Brandl0e475c32012-03-04 16:22:05 +0100285tutorial/datastructures,,:value,key:value pairs within the braces adds initial key:value pairs
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000286tutorial/stdlib2,,:config,"logging.warning('Warning:config file %s not found', 'server.conf')"
287tutorial/stdlib2,,:config,WARNING:root:Warning:config file server.conf not found
288tutorial/stdlib2,,:Critical,CRITICAL:root:Critical error -- shutting down
289tutorial/stdlib2,,:Error,ERROR:root:Error occurred
290tutorial/stdlib2,,:root,CRITICAL:root:Critical error -- shutting down
291tutorial/stdlib2,,:root,ERROR:root:Error occurred
292tutorial/stdlib2,,:root,WARNING:root:Warning:config file server.conf not found
Georg Brandl0e475c32012-03-04 16:22:05 +0100293tutorial/stdlib2,,:start,extra = data[start:start+extra_size]
294tutorial/stdlib2,,:start,"fields = struct.unpack('<IIIHH', data[start:start+16])"
295tutorial/stdlib2,,:start,filename = data[start:start+filenamesize]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000296tutorial/stdlib2,,:Warning,WARNING:root:Warning:config file server.conf not found
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000297using/cmdline,,:category,action:message:category:module:line
Georg Brandl0e475c32012-03-04 16:22:05 +0100298using/cmdline,,:errorhandler,:errorhandler
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000299using/cmdline,,:line,action:message:category:module:line
Georg Brandl0e475c32012-03-04 16:22:05 +0100300using/cmdline,,:line,file:line: category: message
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000301using/cmdline,,:message,action:message:category:module:line
302using/cmdline,,:module,action:message:category:module:line
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000303whatsnew/2.0,418,:len,
304whatsnew/2.3,,::,
305whatsnew/2.3,,:config,
306whatsnew/2.3,,:Critical,
307whatsnew/2.3,,:Error,
308whatsnew/2.3,,:Problem,
309whatsnew/2.3,,:root,
310whatsnew/2.3,,:Warning,
311whatsnew/2.4,,::,
312whatsnew/2.4,,:System,
313whatsnew/2.5,,:memory,:memory:
314whatsnew/2.5,,:step,[start:stop:step]
315whatsnew/2.5,,:stop,[start:stop:step]
Georg Brandl19b3e002010-10-06 10:35:24 +0000316whatsnew/2.7,1619,::,"ParseResult(scheme='http', netloc='[1080::8:800:200C:417A]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100317whatsnew/2.7,1619,::,>>> urlparse.urlparse('http://[1080::8:800:200C:417A]/foo')
318whatsnew/2.7,735,:Sunday,'2009:4:Sunday'
319whatsnew/2.7,862,:Cookie,"export PYTHONWARNINGS=all,error:::Cookie:0"
320whatsnew/2.7,862,::,"export PYTHONWARNINGS=all,error:::Cookie:0"
Georg Brandl14927d02011-02-20 10:22:41 +0000321whatsnew/3.2,,:affe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100322whatsnew/3.2,,:affe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
323whatsnew/3.2,,:beef,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
324whatsnew/3.2,,:beef,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
325whatsnew/3.2,,:cafe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
326whatsnew/3.2,,:cafe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
Georg Brandl14927d02011-02-20 10:22:41 +0000327whatsnew/3.2,,:deaf,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100328whatsnew/3.2,,:deaf,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
329whatsnew/3.2,,:directory,... ${buildout:directory}/downloads/dist
330whatsnew/3.2,,:directory,${buildout:directory}/downloads/dist
331whatsnew/3.2,,::,"$ export PYTHONWARNINGS='ignore::RuntimeWarning::,once::UnicodeWarning::'"
Georg Brandl14927d02011-02-20 10:22:41 +0000332whatsnew/3.2,,:feed,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100333whatsnew/3.2,,:feed,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
334whatsnew/3.2,,:gz,">>> with tarfile.open(name='myarchive.tar.gz', mode='w:gz') as tf:"
335whatsnew/3.2,,:location,... zope9-location = ${zope9:location}
336whatsnew/3.2,,:location,zope9-location = ${zope9:location}
337whatsnew/3.2,,:prefix,... zope-conf = ${custom:prefix}/etc/zope.conf
338whatsnew/3.2,,:prefix,zope-conf = ${custom:prefix}/etc/zope.conf