blob: dba93bf3a72b3e8a066484aafc38df1ad23bc43e [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)) {"
Georg Brandl0e475c32012-03-04 16:22:05 +010013faq/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("
14faq/programming,,::,for x in sequence[::-1]:
15faq/programming,,:reduce,"print((lambda Ru,Ro,Iu,Io,IM,Sx,Sy:reduce(lambda x,y:x+y,map(lambda y,"
16faq/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 +020017faq/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 +000018howto/cporting,,:encode,"if (!PyArg_ParseTuple(args, ""O:encode_object"", &myobj))"
19howto/cporting,,:say,"if (!PyArg_ParseTuple(args, ""U:say_hello"", &name))"
Georg Brandl325a1c22013-10-27 09:16:01 +010020howto/curses,,:black,"colors when it activates color mode. They are: 0:black, 1:red,"
21howto/curses,,:red,"colors when it activates color mode. They are: 0:black, 1:red,"
22howto/curses,,:green,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
23howto/curses,,:yellow,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
24howto/curses,,:blue,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
25howto/curses,,:magenta,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
26howto/curses,,:cyan,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
27howto/curses,,:white,"2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The"
Georg Brandl3539afd2012-05-30 22:03:20 +020028howto/ipaddress,,:DB8,>>> ipaddress.ip_address('2001:DB8::1')
29howto/ipaddress,,::,>>> ipaddress.ip_address('2001:DB8::1')
30howto/ipaddress,,:db8,IPv6Address('2001:db8::1')
31howto/ipaddress,,::,IPv6Address('2001:db8::1')
Georg Brandl3539afd2012-05-30 22:03:20 +020032howto/ipaddress,,::,IPv6Address('::1')
33howto/ipaddress,,:db8,>>> ipaddress.ip_network('2001:db8::0/96')
34howto/ipaddress,,::,>>> ipaddress.ip_network('2001:db8::0/96')
35howto/ipaddress,,:db8,IPv6Network('2001:db8::/96')
36howto/ipaddress,,::,IPv6Network('2001:db8::/96')
37howto/ipaddress,,:db8,IPv6Network('2001:db8::/128')
38howto/ipaddress,,::,IPv6Network('2001:db8::/128')
Georg Brandl3539afd2012-05-30 22:03:20 +020039howto/ipaddress,,:db8,IPv6Interface('2001:db8::1/96')
40howto/ipaddress,,::,IPv6Interface('2001:db8::1/96')
41howto/ipaddress,,:db8,>>> addr6 = ipaddress.ip_address('2001:db8::1')
42howto/ipaddress,,::,>>> addr6 = ipaddress.ip_address('2001:db8::1')
43howto/ipaddress,,:db8,>>> host6 = ipaddress.ip_interface('2001:db8::1/96')
44howto/ipaddress,,::,>>> host6 = ipaddress.ip_interface('2001:db8::1/96')
Georg Brandl3539afd2012-05-30 22:03:20 +020045howto/ipaddress,,:db8,>>> net6 = ipaddress.ip_network('2001:db8::0/96')
46howto/ipaddress,,::,>>> net6 = ipaddress.ip_network('2001:db8::0/96')
47howto/ipaddress,,:ffff,IPv6Address('ffff:ffff:ffff:ffff:ffff:ffff::')
48howto/ipaddress,,::,IPv6Address('ffff:ffff:ffff:ffff:ffff:ffff::')
49howto/ipaddress,,::,IPv6Address('::ffff:ffff')
50howto/ipaddress,,:ffff,IPv6Address('::ffff:ffff')
Georg Brandla81b4812012-08-11 08:43:59 +020051howto/ipaddress,,:db8,'2001:db8::/96'
52howto/ipaddress,,::,'2001:db8::/96'
Ezio Melottie5caf292013-03-28 04:54:58 +020053howto/ipaddress,,:db8,>>> ipaddress.ip_interface('2001:db8::1/96')
54howto/ipaddress,,::,>>> ipaddress.ip_interface('2001:db8::1/96')
55howto/ipaddress,,:db8,'2001:db8::1'
56howto/ipaddress,,::,'2001:db8::1'
57howto/ipaddress,,:db8,IPv6Address('2001:db8::ffff:ffff')
58howto/ipaddress,,::,IPv6Address('2001:db8::ffff:ffff')
59howto/ipaddress,,:ffff,IPv6Address('2001:db8::ffff:ffff')
Georg Brandl0e475c32012-03-04 16:22:05 +010060howto/logging,,:And,"WARNING:And this, too"
61howto/logging,,:And,"WARNING:root:And this, too"
62howto/logging,,:Doing,INFO:root:Doing something
63howto/logging,,:Finished,INFO:root:Finished
64howto/logging,,:logger,severity:logger name:message
65howto/logging,,:Look,WARNING:root:Look before you leap!
66howto/logging,,:message,severity:logger name:message
67howto/logging,,:root,DEBUG:root:This message should go to the log file
68howto/logging,,:root,INFO:root:Doing something
69howto/logging,,:root,INFO:root:Finished
70howto/logging,,:root,INFO:root:So should this
71howto/logging,,:root,INFO:root:Started
72howto/logging,,:root,"WARNING:root:And this, too"
73howto/logging,,:root,WARNING:root:Look before you leap!
74howto/logging,,:root,WARNING:root:Watch out!
75howto/logging,,:So,INFO:root:So should this
76howto/logging,,:So,INFO:So should this
77howto/logging,,:Started,INFO:root:Started
78howto/logging,,:This,DEBUG:root:This message should go to the log file
79howto/logging,,:This,DEBUG:This message should appear on the console
80howto/logging,,:Watch,WARNING:root:Watch out!
Larry Hastings0e254102014-01-26 00:42:02 -080081howto/pyporting,,::,Programming Language :: Python :: 2
82howto/pyporting,,::,Programming Language :: Python :: 3
Benjamin Peterson28d88b42009-01-09 03:03:23 +000083howto/regex,,::,
84howto/regex,,:foo,(?:foo)
Martin Panterd5db1472016-02-08 01:34:09 +000085howto/urllib2,,:password,"for example ""joe:password@example.com"""
Benjamin Peterson28d88b42009-01-09 03:03:23 +000086library/audioop,,:ipos,"# factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)],"
Georg Brandl0e475c32012-03-04 16:22:05 +010087library/bisect,32,:hi,all(val >= x for val in a[i:hi])
88library/bisect,42,:hi,all(val > x for val in a[i:hi])
89library/configparser,,:home,my_dir: ${Common:home_dir}/twosheds
90library/configparser,,:option,${section:option}
91library/configparser,,:path,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
92library/configparser,,:Python,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
Georg Brandl0e475c32012-03-04 16:22:05 +010093library/configparser,,:system,path: ${Common:system_dir}/Library/Frameworks/
Benjamin Peterson28d88b42009-01-09 03:03:23 +000094library/datetime,,:MM,
95library/datetime,,:SS,
96library/decimal,,:optional,"trailneg:optional trailing minus indicator"
97library/difflib,,:ahi,a[alo:ahi]
98library/difflib,,:bhi,b[blo:bhi]
Georg Brandl0e475c32012-03-04 16:22:05 +010099library/difflib,,:i1,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000100library/difflib,,:i2,
101library/difflib,,:j2,
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000102library/doctest,,`,``factorial`` from the ``example`` module:
103library/doctest,,`,The ``example`` module
104library/doctest,,`,Using ``factorial``
Ezio Melottie5caf292013-03-28 04:54:58 +0200105library/exceptions,,:err,err.object[err.start:err.end]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000106library/functions,,:step,a[start:stop:step]
107library/functions,,:stop,"a[start:stop, i]"
108library/functions,,:stop,a[start:stop:step]
Ezio Melottibe54d6d2012-09-20 08:46:06 +0300109library/http.client,,:port,host:port
Georg Brandlebb29642012-05-01 09:29:56 +0200110library/http.cookies,,`,!#$%&'*+-.^_`|~:
Georg Brandld3b41c62011-07-09 11:48:50 +0200111library/imaplib,,:MM,"""DD-Mmm-YYYY HH:MM:SS"
112library/imaplib,,:SS,"""DD-Mmm-YYYY HH:MM:SS"
Ezio Melotti6f69fb12012-08-22 08:38:04 +0300113library/inspect,,:int,">>> def foo(a, *, b:int, **kwargs):"
114library/inspect,,:int,"'(a, *, b:int, **kwargs)'"
115library/inspect,,:int,'b:int'
Georg Brandl3f81ba82012-06-26 09:12:26 +0200116library/ipaddress,,:db8,>>> ipaddress.ip_address('2001:db8::')
117library/ipaddress,,::,>>> ipaddress.ip_address('2001:db8::')
118library/ipaddress,,:db8,IPv6Address('2001:db8::')
119library/ipaddress,,::,IPv6Address('2001:db8::')
120library/ipaddress,,:db8,>>> ipaddress.IPv6Address('2001:db8::1000')
121library/ipaddress,,::,>>> ipaddress.IPv6Address('2001:db8::1000')
122library/ipaddress,,:db8,IPv6Address('2001:db8::1000')
123library/ipaddress,,::,IPv6Address('2001:db8::1000')
Georg Brandldb3f3182014-10-31 08:03:20 +0100124library/ipaddress,,:db8,">>> ipaddress.ip_address(""2001:db8::1"").reverse_pointer"
125library/ipaddress,,::,">>> ipaddress.ip_address(""2001:db8::1"").reverse_pointer"
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]
Georg Brandl0e475c32012-03-04 16:22:05 +0100140library/logging.handlers,,:port,host:port
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000141library/mmap,,:i2,obj[i1:i2]
Georg Brandl0e475c32012-03-04 16:22:05 +0100142library/multiprocessing,,`,# Add more tasks using `put()`
Georg Brandl0e475c32012-03-04 16:22:05 +0100143library/multiprocessing,,:queue,">>> QueueManager.register('get_queue', callable=lambda:queue)"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000144library/multiprocessing,,`,# register the Foo class; make `f()` and `g()` accessible via proxy
145library/multiprocessing,,`,# register the Foo class; make `g()` and `_h()` accessible via proxy
146library/multiprocessing,,`,# register the generator function baz; use `GeneratorProxy` to make proxies
Georg Brandl0e475c32012-03-04 16:22:05 +0100147library/nntplib,,:bytes,:bytes
Georg Brandl0e475c32012-03-04 16:22:05 +0100148library/nntplib,,:lines,:lines
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000149library/optparse,,:len,"del parser.rargs[:len(value)]"
150library/os.path,,:foo,c:foo
Georg Brandled007d52013-11-24 16:09:26 +0100151library/pathlib,,:bar,">>> PureWindowsPath('c:/Windows', 'd:bar')"
152library/pathlib,,:bar,PureWindowsPath('d:bar')
153library/pathlib,,:Program,>>> PureWindowsPath('c:Program Files/').root
154library/pathlib,,:Program,>>> PureWindowsPath('c:Program Files/').anchor
Georg Brandl0e475c32012-03-04 16:22:05 +0100155library/pdb,,:lineno,filename:lineno
Georg Brandl0e475c32012-03-04 16:22:05 +0100156library/pickle,,:memory,"conn = sqlite3.connect("":memory:"")"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000157library/posix,,`,"CFLAGS=""`getconf LFS_CFLAGS`"" OPT=""-g -O2 $CFLAGS"""
Ezio Melottif92b0632013-03-28 05:12:31 +0200158library/pprint,,::,"'Programming Language :: Python :: 2 :: Only'],"
Ezio Melottif2c64ed2013-03-28 17:46:20 +0200159library/pprint,,::,"'Programming Language :: Python :: 2.6',"
160library/pprint,,::,"'Programming Language :: Python :: 2.7',"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000161library/profile,,:lineno,filename:lineno(function)
162library/pyexpat,,:elem1,<py:elem1 />
163library/pyexpat,,:py,"xmlns:py = ""http://www.python.org/ns/"">"
Georg Brandl0e475c32012-03-04 16:22:05 +0100164library/smtplib,,:port,method must support that as well as a regular host:port
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000165library/socket,,::,'5aef:2b::8'
Georg Brandl0e475c32012-03-04 16:22:05 +0100166library/socket,,:can,"return (can_id, can_dlc, data[:can_dlc])"
167library/socket,,:len,fds.fromstring(cmsg_data[:len(cmsg_data) - (len(cmsg_data) % fds.itemsize)])
168library/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 +0100169library/sqlite3,,:memory,
170library/sqlite3,,:who,"cur.execute(""select * from people where name_last=:who and age=:age"", {""who"": who, ""age"": age})"
Ezio Melottif92b0632013-03-28 05:12:31 +0200171library/sqlite3,,:path,"db = sqlite3.connect('file:path/to/database?mode=ro', uri=True)"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000172library/ssl,,:My,"Organizational Unit Name (eg, section) []:My Group"
Georg Brandl0e475c32012-03-04 16:22:05 +0100173library/ssl,,:My,"Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc."
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000174library/ssl,,:myserver,"Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com"
175library/ssl,,:MyState,State or Province Name (full name) [Some-State]:MyState
176library/ssl,,:ops,Email Address []:ops@myserver.mygroup.myorganization.com
177library/ssl,,:Some,"Locality Name (eg, city) []:Some City"
178library/ssl,,:US,Country Name (2 letter code) [AU]:US
Georg Brandl0e475c32012-03-04 16:22:05 +0100179library/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]
Georg Brandld183f0b2012-08-25 12:14:59 +0200183library/stdtypes,,::,>>> z = y[::-2]
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,
Georg Brandled007d52013-11-24 16:09:26 +0100194library/tracemalloc,,:limit,"for index, stat in enumerate(top_stats[:limit], 1):"
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000195library/turtle,,::,Example::
Robert Collins80e4f302015-07-23 08:08:38 +1200196library/unittest,,:foo,"self.assertEqual(cm.output, ['INFO:foo:first message',"
197library/unittest,,:first,"self.assertEqual(cm.output, ['INFO:foo:first message',"
198library/unittest,,:foo,'ERROR:foo.bar:second message'])
199library/unittest,,:second,'ERROR:foo.bar:second message'])
Georg Brandl0e475c32012-03-04 16:22:05 +0100200library/urllib.request,,:close,Connection:close
Martin Panter887bc962016-04-24 04:06:15 +0000201library/urllib.request,,:port,:port
Georg Brandl0e475c32012-03-04 16:22:05 +0100202library/urllib.request,,:lang,"xmlns=""http://www.w3.org/1999/xhtml"" xml:lang=""en"" lang=""en"">\n\n<head>\n"
203library/urllib.request,,:password,"""joe:password@python.org"""
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000204library/uuid,,:uuid,urn:uuid:12345678-1234-5678-1234-567812345678
Georg Brandl325a1c22013-10-27 09:16:01 +0100205library/venv,,:param,":param nodist: If True, setuptools and pip are not installed into the"
206library/venv,,:param,":param progress: If setuptools or pip are installed, the progress of the"
Ezio Melottie5caf292013-03-28 04:54:58 +0200207library/venv,,:param,":param nopip: If True, pip is not installed into the created"
Ezio Melottie5caf292013-03-28 04:54:58 +0200208library/venv,,:param,:param context: The information for the environment creation request
Georg Brandl0e475c32012-03-04 16:22:05 +0100209library/xmlrpc.client,,:pass,http://user:pass@host:port/path
210library/xmlrpc.client,,:pass,user:pass
211library/xmlrpc.client,,:port,http://user:pass@host:port/path
212license,,`,"``Software''), to deal in the Software without restriction, including"
213license,,`,"THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,"
214license,,`,* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
215license,,`,THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
216license,,`,* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000217license,,`,THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
218license,,:zooko,mailto:zooko@zooko.com
Georg Brandl0e475c32012-03-04 16:22:05 +0100219reference/expressions,,:index,x[index:index]
Georg Brandl0e475c32012-03-04 16:22:05 +0100220reference/lexical_analysis,,`,$ ? `
221reference/lexical_analysis,,:fileencoding,# vim:fileencoding=<encoding-name>
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000222tutorial/datastructures,,:value,It is also possible to delete a key:value
Georg Brandl0e475c32012-03-04 16:22:05 +0100223tutorial/datastructures,,:value,key:value pairs within the braces adds initial key:value pairs
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000224tutorial/stdlib2,,:config,"logging.warning('Warning:config file %s not found', 'server.conf')"
225tutorial/stdlib2,,:config,WARNING:root:Warning:config file server.conf not found
226tutorial/stdlib2,,:Critical,CRITICAL:root:Critical error -- shutting down
227tutorial/stdlib2,,:Error,ERROR:root:Error occurred
228tutorial/stdlib2,,:root,CRITICAL:root:Critical error -- shutting down
229tutorial/stdlib2,,:root,ERROR:root:Error occurred
230tutorial/stdlib2,,:root,WARNING:root:Warning:config file server.conf not found
Georg Brandl0e475c32012-03-04 16:22:05 +0100231tutorial/stdlib2,,:start,extra = data[start:start+extra_size]
232tutorial/stdlib2,,:start,"fields = struct.unpack('<IIIHH', data[start:start+16])"
233tutorial/stdlib2,,:start,filename = data[start:start+filenamesize]
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000234tutorial/stdlib2,,:Warning,WARNING:root:Warning:config file server.conf not found
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000235using/cmdline,,:category,action:message:category:module:line
Georg Brandl0e475c32012-03-04 16:22:05 +0100236using/cmdline,,:errorhandler,:errorhandler
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000237using/cmdline,,:line,action:message:category:module:line
Georg Brandl0e475c32012-03-04 16:22:05 +0100238using/cmdline,,:line,file:line: category: message
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000239using/cmdline,,:message,action:message:category:module:line
240using/cmdline,,:module,action:message:category:module:line
Georg Brandl96421d62016-02-28 21:13:23 +0100241using/unix,,:Packaging,https://en.opensuse.org/Portal:Packaging
Benjamin Peterson28d88b42009-01-09 03:03:23 +0000242whatsnew/2.0,418,:len,
243whatsnew/2.3,,::,
244whatsnew/2.3,,:config,
245whatsnew/2.3,,:Critical,
246whatsnew/2.3,,:Error,
247whatsnew/2.3,,:Problem,
248whatsnew/2.3,,:root,
249whatsnew/2.3,,:Warning,
250whatsnew/2.4,,::,
251whatsnew/2.4,,:System,
252whatsnew/2.5,,:memory,:memory:
253whatsnew/2.5,,:step,[start:stop:step]
254whatsnew/2.5,,:stop,[start:stop:step]
Georg Brandldb3f3182014-10-31 08:03:20 +0100255whatsnew/2.7,,::,"ParseResult(scheme='http', netloc='[1080::8:800:200C:417A]',"
256whatsnew/2.7,,::,>>> urlparse.urlparse('http://[1080::8:800:200C:417A]/foo')
257whatsnew/2.7,,:Sunday,'2009:4:Sunday'
258whatsnew/2.7,,:Cookie,"export PYTHONWARNINGS=all,error:::Cookie:0"
259whatsnew/2.7,,::,"export PYTHONWARNINGS=all,error:::Cookie:0"
Georg Brandl14927d02011-02-20 10:22:41 +0000260whatsnew/3.2,,:affe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100261whatsnew/3.2,,:affe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
262whatsnew/3.2,,:beef,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
263whatsnew/3.2,,:beef,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
264whatsnew/3.2,,:cafe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
265whatsnew/3.2,,:cafe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
Georg Brandl14927d02011-02-20 10:22:41 +0000266whatsnew/3.2,,:deaf,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100267whatsnew/3.2,,:deaf,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
Georg Brandl0e475c32012-03-04 16:22:05 +0100268whatsnew/3.2,,:directory,${buildout:directory}/downloads/dist
269whatsnew/3.2,,::,"$ export PYTHONWARNINGS='ignore::RuntimeWarning::,once::UnicodeWarning::'"
Georg Brandl14927d02011-02-20 10:22:41 +0000270whatsnew/3.2,,:feed,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
Georg Brandl0e475c32012-03-04 16:22:05 +0100271whatsnew/3.2,,:feed,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
272whatsnew/3.2,,:gz,">>> with tarfile.open(name='myarchive.tar.gz', mode='w:gz') as tf:"
Georg Brandl0e475c32012-03-04 16:22:05 +0100273whatsnew/3.2,,:location,zope9-location = ${zope9:location}
Georg Brandl0e475c32012-03-04 16:22:05 +0100274whatsnew/3.2,,:prefix,zope-conf = ${custom:prefix}/etc/zope.conf
Larry Hastings0e254102014-01-26 00:42:02 -0800275whatsnew/changelog,,:gz,": TarFile opened with external fileobj and ""w:gz"" mode didn't"
Georg Brandl325a1c22013-10-27 09:16:01 +0100276whatsnew/changelog,,::,": Use ""127.0.0.1"" or ""::1"" instead of ""localhost"" as much as"
Larry Hastingsb2c2dc32015-03-29 15:32:55 -0700277library/tarfile,149,:xz,'x:xz'
278library/xml.etree.elementtree,290,:sometag,prefix:sometag
279library/xml.etree.elementtree,301,:fictional,"<actors xmlns:fictional=""http://characters.example.com"""
280library/xml.etree.elementtree,301,:character,<fictional:character>Lancelot</fictional:character>
281library/xml.etree.elementtree,301,:character,<fictional:character>Archie Leach</fictional:character>
282library/xml.etree.elementtree,301,:character,<fictional:character>Sir Robin</fictional:character>
283library/xml.etree.elementtree,301,:character,<fictional:character>Gunther</fictional:character>
284library/xml.etree.elementtree,301,:character,<fictional:character>Commander Clement</fictional:character>
Berker Peksag32619602016-06-11 22:38:33 +0300285library/xml.etree.elementtree,,:actor,"for actor in root.findall('real_person:actor', ns):"
286library/xml.etree.elementtree,,:name,"name = actor.find('real_person:name', ns)"
287library/xml.etree.elementtree,,:character,"for char in actor.findall('role:character', ns):"
Larry Hastingsb2c2dc32015-03-29 15:32:55 -0700288library/zipapp,31,:main,"$ python -m zipapp myapp -m ""myapp:main"""
289library/zipapp,82,:fn,"argument should have the form ""pkg.mod:fn"", where ""pkg.mod"" is a"
290library/zipapp,155,:callable,"""pkg.module:callable"" and the archive will be run by importing"
Martin Panter6cb19632015-09-07 03:40:17 +0000291library/stdtypes,,::,>>> m[::2].tolist()
Berker Peksag1d169792015-10-20 03:59:24 +0300292library/sys,,`,# ``wrapper`` creates a ``wrap(coro)`` coroutine:
Larry Hastingsaaa377f2015-07-04 19:11:41 -0700293tutorial/venv,77,:c7b9645a6f35,"Python 3.4.3+ (3.4:c7b9645a6f35+, May 22 2015, 09:31:25)"
Berker Peksag8214a7c2015-10-02 23:28:45 +0300294whatsnew/3.5,,:root,'WARNING:root:warning\n'
295whatsnew/3.5,,:warning,'WARNING:root:warning\n'
296whatsnew/3.5,,::,>>> addr6 = ipaddress.IPv6Address('::1')
297whatsnew/3.5,,:root,ERROR:root:exception
298whatsnew/3.5,,:exception,ERROR:root:exception