blob: abc3ca85c00adf7102054067d75fd23c0c4a48b4 [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]
Georg Brandl0e475c32012-03-04 16:22:05 +01003c-api/sequence,,:i2,del o[i1:i2]
Benjamin Peterson28d88b42009-01-09 03:03:23 +00004c-api/sequence,,:i2,o[i1:i2]
Benjamin Peterson28d88b42009-01-09 03:03:23 +00005c-api/unicode,,:end,str[start:end]
Georg Brandl0e475c32012-03-04 16:22:05 +01006c-api/unicode,,:start,unicode[start:start+length]
7distutils/examples,267,`,This is the description of the ``foobar`` package.
Benjamin Peterson28d88b42009-01-09 03:03:23 +00008distutils/setupscript,,::,
9extending/embedding,,:numargs,"if(!PyArg_ParseTuple(args, "":numargs""))"
Benjamin Peterson28d88b42009-01-09 03:03:23 +000010extending/extending,,:myfunction,"PyArg_ParseTuple(args, ""D:myfunction"", &c);"
Georg Brandl0e475c32012-03-04 16:22:05 +010011extending/extending,,:set,"if (PyArg_ParseTuple(args, ""O:set_callback"", &temp)) {"
Benjamin Peterson28d88b42009-01-09 03:03:23 +000012extending/newtypes,,:call,"if (!PyArg_ParseTuple(args, ""sss:call"", &arg1, &arg2, &arg3)) {"
13extending/windows,,:initspam,/export:initspam
Georg Brandl0e475c32012-03-04 16:22:05 +010014faq/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("
15faq/programming,,::,for x in sequence[::-1]:
16faq/programming,,:reduce,"print((lambda Ru,Ro,Iu,Io,IM,Sx,Sy:reduce(lambda x,y:x+y,map(lambda y,"
17faq/programming,,:reduce,"Sx=Sx,Sy=Sy:reduce(lambda x,y:x+y,map(lambda x,xc=Ru,yc=yc,Ru=Ru,Ro=Ro,"
Ezio Melottie5caf292013-03-28 04:54:58 +020018faq/windows,,:bd8afb90ebf2,"Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32"
Benjamin Peterson28d88b42009-01-09 03:03:23 +000019howto/cporting,,:encode,"if (!PyArg_ParseTuple(args, ""O:encode_object"", &myobj))"
20howto/cporting,,:say,"if (!PyArg_ParseTuple(args, ""U:say_hello"", &name))"
Georg Brandl325a1c22013-10-27 09:16:01 +010021howto/curses,,:black,"colors when it activates color mode. They are: 0:black, 1:red,"
22howto/curses,,:red,"colors when it activates color mode. They are: 0:black, 1:red,"
23howto/curses,,:green,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
24howto/curses,,:yellow,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
25howto/curses,,:blue,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
26howto/curses,,:magenta,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
27howto/curses,,:cyan,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
28howto/curses,,:white,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
Georg Brandl3539afd2012-05-30 22:03:20 +020029howto/ipaddress,,:DB8,>>> ipaddress.ip_address('2001:DB8::1')
30howto/ipaddress,,::,>>> ipaddress.ip_address('2001:DB8::1')
31howto/ipaddress,,:db8,IPv6Address('2001:db8::1')
32howto/ipaddress,,::,IPv6Address('2001:db8::1')
Georg Brandl3539afd2012-05-30 22:03:20 +020033howto/ipaddress,,::,IPv6Address('::1')
34howto/ipaddress,,:db8,>>> ipaddress.ip_network('2001:db8::0/96')
35howto/ipaddress,,::,>>> ipaddress.ip_network('2001:db8::0/96')
36howto/ipaddress,,:db8,IPv6Network('2001:db8::/96')
37howto/ipaddress,,::,IPv6Network('2001:db8::/96')
38howto/ipaddress,,:db8,IPv6Network('2001:db8::/128')
39howto/ipaddress,,::,IPv6Network('2001:db8::/128')
Georg Brandl3539afd2012-05-30 22:03:20 +020040howto/ipaddress,,:db8,IPv6Interface('2001:db8::1/96')
41howto/ipaddress,,::,IPv6Interface('2001:db8::1/96')
42howto/ipaddress,,:db8,>>> addr6 = ipaddress.ip_address('2001:db8::1')
43howto/ipaddress,,::,>>> addr6 = ipaddress.ip_address('2001:db8::1')
44howto/ipaddress,,:db8,>>> host6 = ipaddress.ip_interface('2001:db8::1/96')
45howto/ipaddress,,::,>>> host6 = ipaddress.ip_interface('2001:db8::1/96')
Georg Brandl3539afd2012-05-30 22:03:20 +020046howto/ipaddress,,:db8,>>> net6 = ipaddress.ip_network('2001:db8::0/96')
47howto/ipaddress,,::,>>> net6 = ipaddress.ip_network('2001:db8::0/96')
48howto/ipaddress,,:ffff,IPv6Address('ffff:ffff:ffff:ffff:ffff:ffff::')
49howto/ipaddress,,::,IPv6Address('ffff:ffff:ffff:ffff:ffff:ffff::')
50howto/ipaddress,,::,IPv6Address('::ffff:ffff')
51howto/ipaddress,,:ffff,IPv6Address('::ffff:ffff')
Georg Brandla81b4812012-08-11 08:43:59 +020052howto/ipaddress,,:db8,'2001:db8::/96'
53howto/ipaddress,,::,'2001:db8::/96'
Ezio Melottie5caf292013-03-28 04:54:58 +020054howto/ipaddress,,:db8,>>> ipaddress.ip_interface('2001:db8::1/96')
55howto/ipaddress,,::,>>> ipaddress.ip_interface('2001:db8::1/96')
56howto/ipaddress,,:db8,'2001:db8::1'
57howto/ipaddress,,::,'2001:db8::1'
58howto/ipaddress,,:db8,IPv6Address('2001:db8::ffff:ffff')
59howto/ipaddress,,::,IPv6Address('2001:db8::ffff:ffff')
60howto/ipaddress,,:ffff,IPv6Address('2001:db8::ffff:ffff')
Georg Brandl0e475c32012-03-04 16:22:05 +010061howto/logging,,:And,"WARNING:And this, too"
62howto/logging,,:And,"WARNING:root:And this, too"
63howto/logging,,:Doing,INFO:root:Doing something
64howto/logging,,:Finished,INFO:root:Finished
65howto/logging,,:logger,severity:logger name:message
66howto/logging,,:Look,WARNING:root:Look before you leap!
67howto/logging,,:message,severity:logger name:message
68howto/logging,,:root,DEBUG:root:This message should go to the log file
69howto/logging,,:root,INFO:root:Doing something
70howto/logging,,:root,INFO:root:Finished
71howto/logging,,:root,INFO:root:So should this
72howto/logging,,:root,INFO:root:Started
73howto/logging,,:root,"WARNING:root:And this, too"
74howto/logging,,:root,WARNING:root:Look before you leap!
75howto/logging,,:root,WARNING:root:Watch out!
76howto/logging,,:So,INFO:root:So should this
77howto/logging,,:So,INFO:So should this
78howto/logging,,:Started,INFO:root:Started
79howto/logging,,:This,DEBUG:root:This message should go to the log file
80howto/logging,,:This,DEBUG:This message should appear on the console
81howto/logging,,:Watch,WARNING:root:Watch out!
82howto/pyporting,75,::,# make sure to use :: Python *and* :: Python :: 3 so
83howto/pyporting,75,::,"'Programming Language :: Python',"
84howto/pyporting,75,::,'Programming Language :: Python :: 3'
Benjamin Peterson28d88b42009-01-09 03:03:23 +000085howto/regex,,::,
86howto/regex,,:foo,(?:foo)
87howto/urllib2,,:example,"for example ""joe@password:example.com"""
Benjamin Peterson28d88b42009-01-09 03:03:23 +000088library/audioop,,:ipos,"# factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)],"
Georg Brandl0e475c32012-03-04 16:22:05 +010089library/bisect,32,:hi,all(val >= x for val in a[i:hi])
90library/bisect,42,:hi,all(val > x for val in a[i:hi])
91library/configparser,,:home,my_dir: ${Common:home_dir}/twosheds
92library/configparser,,:option,${section:option}
93library/configparser,,:path,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
94library/configparser,,:Python,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
Georg Brandl0e475c32012-03-04 16:22:05 +010095library/configparser,,:system,path: ${Common:system_dir}/Library/Frameworks/
Benjamin Peterson28d88b42009-01-09 03:03:23 +000096library/datetime,,:MM,
97library/datetime,,:SS,
98library/decimal,,:optional,"trailneg:optional trailing minus indicator"
99library/difflib,,:ahi,a[alo:ahi]
100library/difflib,,:bhi,b[blo:bhi]
Georg Brandl0e475c32012-03-04 16:22:05 +0100101library/difflib,,:i1,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000102library/difflib,,:i2,
103library/difflib,,:j2,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000104library/doctest,,`,``factorial`` from the ``example`` module:
105library/doctest,,`,The ``example`` module
106library/doctest,,`,Using ``factorial``
Ezio Melottie5caf292013-03-28 04:54:58 +0200107library/exceptions,,:err,err.object[err.start:err.end]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000108library/functions,,:step,a[start:stop:step]
109library/functions,,:stop,"a[start:stop, i]"
110library/functions,,:stop,a[start:stop:step]
Ezio Melottibe54d6d2012-09-20 08:46:06 +0300111library/http.client,,:port,host:port
Georg Brandlebb29642012-05-01 09:29:56 +0200112library/http.cookies,,`,!#$%&'*+-.^_`|~:
Georg Brandld3b41c62011-07-09 11:48:50 +0200113library/imaplib,,:MM,"""DD-Mmm-YYYY HH:MM:SS"
114library/imaplib,,:SS,"""DD-Mmm-YYYY HH:MM:SS"
Ezio Melotti6f69fb12012-08-22 08:38:04 +0300115library/inspect,,:int,">>> def foo(a, *, b:int, **kwargs):"
116library/inspect,,:int,"'(a, *, b:int, **kwargs)'"
117library/inspect,,:int,'b:int'
Georg Brandl3f81ba82012-06-26 09:12:26 +0200118library/ipaddress,,:db8,>>> ipaddress.ip_address('2001:db8::')
119library/ipaddress,,::,>>> ipaddress.ip_address('2001:db8::')
120library/ipaddress,,:db8,IPv6Address('2001:db8::')
121library/ipaddress,,::,IPv6Address('2001:db8::')
122library/ipaddress,,:db8,>>> ipaddress.IPv6Address('2001:db8::1000')
123library/ipaddress,,::,>>> ipaddress.IPv6Address('2001:db8::1000')
124library/ipaddress,,:db8,IPv6Address('2001:db8::1000')
125library/ipaddress,,::,IPv6Address('2001:db8::1000')
Georg Brandla81b4812012-08-11 08:43:59 +0200126library/ipaddress,,::,"""::abc:7:def"""
127library/ipaddress,,:def,"""::abc:7:def"""
128library/ipaddress,,::,::FFFF/96
129library/ipaddress,,::,2002::/16
130library/ipaddress,,::,2001::/32
131library/ipaddress,,::,>>> str(ipaddress.IPv6Address('::1'))
132library/ipaddress,,::,'::1'
Georg Brandla81b4812012-08-11 08:43:59 +0200133library/ipaddress,,:ff00,ffff:ff00::
134library/ipaddress,,:db00,2001:db00::0/24
135library/ipaddress,,::,2001:db00::0/24
136library/ipaddress,,:db00,2001:db00::0/ffff:ff00::
137library/ipaddress,,::,2001:db00::0/ffff:ff00::
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000138library/itertools,,:step,elements from seq[start:stop:step]
Georg Brandl0e475c32012-03-04 16:22:05 +0100139library/itertools,,:stop,elements from seq[start:stop:step]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000140library/linecache,,:sys,"sys:x:3:3:sys:/dev:/bin/sh"
Georg Brandl0e475c32012-03-04 16:22:05 +0100141library/logging.handlers,,:port,host:port
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000142library/mmap,,:i2,obj[i1:i2]
Georg Brandl0e475c32012-03-04 16:22:05 +0100143library/multiprocessing,,`,# Add more tasks using `put()`
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000144library/multiprocessing,,`,# A test file for the `multiprocessing` package
145library/multiprocessing,,`,# A test of `multiprocessing.Pool` class
Georg Brandl0e475c32012-03-04 16:22:05 +0100146library/multiprocessing,,`,# `BaseManager`.
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000147library/multiprocessing,,`,# in the original order then consider using `Pool.map()` or
Georg Brandl0e475c32012-03-04 16:22:05 +0100148library/multiprocessing,,`,">>> l._callmethod('__getitem__', (20,)) # equiv to `l[20]`"
149library/multiprocessing,,`,">>> l._callmethod('__getslice__', (2, 7)) # equiv to `l[2:7]`"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000150library/multiprocessing,,`,# Not sure if we should synchronize access to `socket.accept()` method by
151library/multiprocessing,,`,# object. (We import `multiprocessing.reduction` to enable this pickling.)
Georg Brandl0e475c32012-03-04 16:22:05 +0100152library/multiprocessing,,`,# `Pool.imap()` (which will save on the amount of code needed anyway).
153library/multiprocessing,,:queue,">>> QueueManager.register('get_queue', callable=lambda:queue)"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000154library/multiprocessing,,`,# register the Foo class; make `f()` and `g()` accessible via proxy
155library/multiprocessing,,`,# register the Foo class; make `g()` and `_h()` accessible via proxy
156library/multiprocessing,,`,# register the generator function baz; use `GeneratorProxy` to make proxies
Georg Brandl0e475c32012-03-04 16:22:05 +0100157library/nntplib,,:bytes,:bytes
Georg Brandl0e475c32012-03-04 16:22:05 +0100158library/nntplib,,:lines,:lines
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000159library/optparse,,:len,"del parser.rargs[:len(value)]"
160library/os.path,,:foo,c:foo
Georg Brandl0e475c32012-03-04 16:22:05 +0100161library/pdb,,:lineno,filename:lineno
Georg Brandl0e475c32012-03-04 16:22:05 +0100162library/pickle,,:memory,"conn = sqlite3.connect("":memory:"")"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000163library/posix,,`,"CFLAGS=""`getconf LFS_CFLAGS`"" OPT=""-g -O2 $CFLAGS"""
Georg Brandl0e475c32012-03-04 16:22:05 +0100164library/pprint,209,::,"'classifiers': ['Development Status :: 4 - Beta',"
165library/pprint,209,::,"'Intended Audience :: Developers',"
166library/pprint,209,::,"'License :: OSI Approved :: MIT License',"
167library/pprint,209,::,"'Natural Language :: English',"
168library/pprint,209,::,"'Operating System :: OS Independent',"
169library/pprint,209,::,"'Programming Language :: Python',"
170library/pprint,209,::,"'Programming Language :: Python :: 2',"
171library/pprint,209,::,"'Programming Language :: Python :: 2.6',"
172library/pprint,209,::,"'Programming Language :: Python :: 2.7',"
173library/pprint,209,::,"'Topic :: Software Development :: Libraries',"
174library/pprint,209,::,"'Topic :: Software Development :: Libraries :: Python Modules'],"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000175library/profile,,:lineno,filename:lineno(function)
176library/pyexpat,,:elem1,<py:elem1 />
177library/pyexpat,,:py,"xmlns:py = ""http://www.python.org/ns/"">"
Georg Brandl0e475c32012-03-04 16:22:05 +0100178library/smtplib,,:port,method must support that as well as a regular host:port
179library/socket,,::,"(10, 1, 6, '', ('2001:888:2000:d::a2', 80, 0, 0))]"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000180library/socket,,::,'5aef:2b::8'
Georg Brandl0e475c32012-03-04 16:22:05 +0100181library/socket,,:can,"return (can_id, can_dlc, data[:can_dlc])"
182library/socket,,:len,fds.fromstring(cmsg_data[:len(cmsg_data) - (len(cmsg_data) % fds.itemsize)])
183library/sqlite3,,:age,"cur.execute(""select * from people where name_last=:who and age=:age"", {""who"": who, ""age"": age})"
Georg Brandl0e475c32012-03-04 16:22:05 +0100184library/sqlite3,,:memory,
185library/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 +0000186library/ssl,,:My,"Organizational Unit Name (eg, section) []:My Group"
Georg Brandl0e475c32012-03-04 16:22:05 +0100187library/ssl,,:My,"Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc."
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000188library/ssl,,:myserver,"Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com"
189library/ssl,,:MyState,State or Province Name (full name) [Some-State]:MyState
190library/ssl,,:ops,Email Address []:ops@myserver.mygroup.myorganization.com
191library/ssl,,:Some,"Locality Name (eg, city) []:Some City"
192library/ssl,,:US,Country Name (2 letter code) [AU]:US
Georg Brandl0e475c32012-03-04 16:22:05 +0100193library/stdtypes,,::,>>> a[::-1].tolist()
194library/stdtypes,,::,>>> a[::2].tolist()
195library/stdtypes,,:end,s[start:end]
196library/stdtypes,,::,>>> hash(v[::-2]) == hash(b'abcefg'[::-2])
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000197library/stdtypes,,:len,s[len(s):len(s)]
Georg Brandl0e475c32012-03-04 16:22:05 +0100198library/stdtypes,,::,>>> y = m[::2]
Georg Brandld183f0b2012-08-25 12:14:59 +0200199library/stdtypes,,::,>>> z = y[::-2]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000200library/subprocess,,`,"output=`dmesg | grep hda`"
Georg Brandl0e475c32012-03-04 16:22:05 +0100201library/subprocess,,`,"output=`mycmd myarg`"
202library/tarfile,,:bz2,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000203library/tarfile,,:compression,filemode[:compression]
204library/tarfile,,:gz,
Georg Brandl0e475c32012-03-04 16:22:05 +0100205library/tarfile,,:xz,'a:xz'
206library/tarfile,,:xz,'r:xz'
207library/tarfile,,:xz,'w:xz'
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000208library/time,,:mm,
209library/time,,:ss,
210library/turtle,,::,Example::
Georg Brandl0e475c32012-03-04 16:22:05 +0100211library/urllib.request,,:close,Connection:close
212library/urllib.request,,:lang,"xmlns=""http://www.w3.org/1999/xhtml"" xml:lang=""en"" lang=""en"">\n\n<head>\n"
213library/urllib.request,,:password,"""joe:password@python.org"""
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000214library/uuid,,:uuid,urn:uuid:12345678-1234-5678-1234-567812345678
Georg Brandl325a1c22013-10-27 09:16:01 +0100215library/venv,,:param,":param nodist: If True, setuptools and pip are not installed into the"
216library/venv,,:param,":param progress: If setuptools or pip are installed, the progress of the"
Ezio Melottie5caf292013-03-28 04:54:58 +0200217library/venv,,:param,":param nopip: If True, pip is not installed into the created"
Ezio Melottie5caf292013-03-28 04:54:58 +0200218library/venv,,:param,:param context: The information for the environment creation request
Georg Brandl0e475c32012-03-04 16:22:05 +0100219library/xmlrpc.client,,:pass,http://user:pass@host:port/path
220library/xmlrpc.client,,:pass,user:pass
221library/xmlrpc.client,,:port,http://user:pass@host:port/path
222license,,`,"``Software''), to deal in the Software without restriction, including"
223license,,`,"THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,"
224license,,`,* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
225license,,`,THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
226license,,`,* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000227license,,`,THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
228license,,:zooko,mailto:zooko@zooko.com
Georg Brandl0e475c32012-03-04 16:22:05 +0100229reference/expressions,,:index,x[index:index]
Georg Brandl0e475c32012-03-04 16:22:05 +0100230reference/lexical_analysis,,`,$ ? `
231reference/lexical_analysis,,:fileencoding,# vim:fileencoding=<encoding-name>
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000232tutorial/datastructures,,:value,It is also possible to delete a key:value
Georg Brandl0e475c32012-03-04 16:22:05 +0100233tutorial/datastructures,,:value,key:value pairs within the braces adds initial key:value pairs
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000234tutorial/stdlib2,,:config,"logging.warning('Warning:config file %s not found', 'server.conf')"
235tutorial/stdlib2,,:config,WARNING:root:Warning:config file server.conf not found
236tutorial/stdlib2,,:Critical,CRITICAL:root:Critical error -- shutting down
237tutorial/stdlib2,,:Error,ERROR:root:Error occurred
238tutorial/stdlib2,,:root,CRITICAL:root:Critical error -- shutting down
239tutorial/stdlib2,,:root,ERROR:root:Error occurred
240tutorial/stdlib2,,:root,WARNING:root:Warning:config file server.conf not found
Georg Brandl0e475c32012-03-04 16:22:05 +0100241tutorial/stdlib2,,:start,extra = data[start:start+extra_size]
242tutorial/stdlib2,,:start,"fields = struct.unpack('<IIIHH', data[start:start+16])"
243tutorial/stdlib2,,:start,filename = data[start:start+filenamesize]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000244tutorial/stdlib2,,:Warning,WARNING:root:Warning:config file server.conf not found
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000245using/cmdline,,:category,action:message:category:module:line
Georg Brandl0e475c32012-03-04 16:22:05 +0100246using/cmdline,,:errorhandler,:errorhandler
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000247using/cmdline,,:line,action:message:category:module:line
Georg Brandl0e475c32012-03-04 16:22:05 +0100248using/cmdline,,:line,file:line: category: message
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000249using/cmdline,,:message,action:message:category:module:line
250using/cmdline,,:module,action:message:category:module:line
Georg Brandl325a1c22013-10-27 09:16:01 +0100251using/unix,,:Packaging,http://en.opensuse.org/Portal:Packaging
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000252whatsnew/2.0,418,:len,
253whatsnew/2.3,,::,
254whatsnew/2.3,,:config,
255whatsnew/2.3,,:Critical,
256whatsnew/2.3,,:Error,
257whatsnew/2.3,,:Problem,
258whatsnew/2.3,,:root,
259whatsnew/2.3,,:Warning,
260whatsnew/2.4,,::,
261whatsnew/2.4,,:System,
262whatsnew/2.5,,:memory,:memory:
263whatsnew/2.5,,:step,[start:stop:step]
264whatsnew/2.5,,:stop,[start:stop:step]
Georg Brandl19b3e002010-10-06 10:35:24 +0000265whatsnew/2.7,1619,::,"ParseResult(scheme='http', netloc='[1080::8:800:200C:417A]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100266whatsnew/2.7,1619,::,>>> urlparse.urlparse('http://[1080::8:800:200C:417A]/foo')
267whatsnew/2.7,735,:Sunday,'2009:4:Sunday'
268whatsnew/2.7,862,:Cookie,"export PYTHONWARNINGS=all,error:::Cookie:0"
269whatsnew/2.7,862,::,"export PYTHONWARNINGS=all,error:::Cookie:0"
Georg Brandl14927d02011-02-20 10:22:41 +0000270whatsnew/3.2,,:affe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100271whatsnew/3.2,,:affe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
272whatsnew/3.2,,:beef,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
273whatsnew/3.2,,:beef,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
274whatsnew/3.2,,:cafe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
275whatsnew/3.2,,:cafe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
Georg Brandl14927d02011-02-20 10:22:41 +0000276whatsnew/3.2,,:deaf,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100277whatsnew/3.2,,:deaf,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
Georg Brandl0e475c32012-03-04 16:22:05 +0100278whatsnew/3.2,,:directory,${buildout:directory}/downloads/dist
279whatsnew/3.2,,::,"$ export PYTHONWARNINGS='ignore::RuntimeWarning::,once::UnicodeWarning::'"
Georg Brandl14927d02011-02-20 10:22:41 +0000280whatsnew/3.2,,:feed,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100281whatsnew/3.2,,:feed,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
282whatsnew/3.2,,:gz,">>> with tarfile.open(name='myarchive.tar.gz', mode='w:gz') as tf:"
Georg Brandl0e475c32012-03-04 16:22:05 +0100283whatsnew/3.2,,:location,zope9-location = ${zope9:location}
Georg Brandl0e475c32012-03-04 16:22:05 +0100284whatsnew/3.2,,:prefix,zope-conf = ${custom:prefix}/etc/zope.conf
Ezio Melottie5caf292013-03-28 04:54:58 +0200285whatsnew/changelog,,:platform,:platform:
Ezio Melottie5caf292013-03-28 04:54:58 +0200286whatsnew/changelog,,:PythonCmd,"With Tk < 8.5 _tkinter.c:PythonCmd() raised UnicodeDecodeError, caused"
Ezio Melottie5caf292013-03-28 04:54:58 +0200287whatsnew/changelog,,::,": Fix FTP tests for IPv6, bind to ""::1"" instead of ""localhost""."
Georg Brandl325a1c22013-10-27 09:16:01 +0100288whatsnew/changelog,,::,": Use ""127.0.0.1"" or ""::1"" instead of ""localhost"" as much as"
289whatsnew/changelog,,:password,user:password
Georg Brandlbcf69242014-01-25 09:15:44 +0100290whatsnew/changelog,,:gz,w:gz