mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70980 | jack.diederich | 2009-04-01 15:26:13 -0500 (Wed, 01 Apr 2009) | 3 lines bounds check arguments to mmap.move(). All of them. Really. fixes crasher on OS X 10.5 ........ r71059 | mark.dickinson | 2009-04-02 13:39:37 -0500 (Thu, 02 Apr 2009) | 2 lines sys.long_info attributes should be ints, not longs ........ r71225 | georg.brandl | 2009-04-05 06:54:07 -0500 (Sun, 05 Apr 2009) | 1 line #5580: no need to use parentheses when converterr() argument is actually a type description. ........ r71234 | georg.brandl | 2009-04-05 08:16:35 -0500 (Sun, 05 Apr 2009) | 1 line Whitespace normalization. ........ r71241 | georg.brandl | 2009-04-05 09:48:49 -0500 (Sun, 05 Apr 2009) | 1 line #5471: fix expanduser() for $HOME set to "/". ........ r71243 | georg.brandl | 2009-04-05 10:14:29 -0500 (Sun, 05 Apr 2009) | 1 line #5432: make plistlib docstring a raw string, since it contains examples with backslash escapes. ........ r71249 | georg.brandl | 2009-04-05 11:30:43 -0500 (Sun, 05 Apr 2009) | 1 line #5444: adapt make.bat to new htmlhelp output file name. ........ r71251 | georg.brandl | 2009-04-05 12:17:42 -0500 (Sun, 05 Apr 2009) | 1 line #5298: clarify docs about GIL by using more consistent wording. ........ r71255 | georg.brandl | 2009-04-05 13:34:58 -0500 (Sun, 05 Apr 2009) | 1 line #602893: add indicator for current line in cgitb that doesnt rely on styling alone. ........ r71266 | georg.brandl | 2009-04-05 15:23:13 -0500 (Sun, 05 Apr 2009) | 1 line Normalize issue referencing style. ........ r71299 | gregory.p.smith | 2009-04-05 18:43:58 -0500 (Sun, 05 Apr 2009) | 3 lines Fixes issue5705: os.setuid() and friends did not accept the same range of values that pwd.getpwnam() returns. ........ r71329 | benjamin.peterson | 2009-04-06 16:53:33 -0500 (Mon, 06 Apr 2009) | 1 line add create_connection to __all__ #5711 ........ r71397 | georg.brandl | 2009-04-08 11:36:39 -0500 (Wed, 08 Apr 2009) | 1 line Remove redundant backtick. ........ r71398 | georg.brandl | 2009-04-08 11:39:04 -0500 (Wed, 08 Apr 2009) | 1 line Update ignore file for suspicious builder. ........ r71486 | andrew.kuchling | 2009-04-11 11:18:14 -0500 (Sat, 11 Apr 2009) | 1 line Re-word ........
9.1 KiB
9.1 KiB
| 1 | c-api/arg | :ref | PyArg_ParseTuple(args, "O|O:ref", &object, &callback) | |
|---|---|---|---|---|
| 2 | c-api/list | :high | list[low:high] | |
| 3 | c-api/list | :high | list[low:high] = itemlist | |
| 4 | c-api/sequence | :i2 | o[i1:i2] | |
| 5 | c-api/sequence | :i2 | o[i1:i2] = v | |
| 6 | c-api/sequence | :i2 | del o[i1:i2] | |
| 7 | c-api/unicode | :end | str[start:end] | |
| 8 | distutils/apiref | :action | http://pypi.python.org/pypi?:action=list_classifiers | |
| 9 | distutils/setupscript | :: | ||
| 10 | extending/embedding | :numargs | if(!PyArg_ParseTuple(args, ":numargs")) | |
| 11 | extending/extending | :set | if (PyArg_ParseTuple(args, "O:set_callback", &temp)) { | |
| 12 | extending/extending | :myfunction | PyArg_ParseTuple(args, "D:myfunction", &c); | |
| 13 | extending/newtypes | :call | if (!PyArg_ParseTuple(args, "sss:call", &arg1, &arg2, &arg3)) { | |
| 14 | extending/windows | :initspam | /export:initspam | |
| 15 | howto/cporting | :add | if (!PyArg_ParseTuple(args, "ii:add_ints", &one, &two)) | |
| 16 | howto/cporting | :encode | if (!PyArg_ParseTuple(args, "O:encode_object", &myobj)) | |
| 17 | howto/cporting | :say | if (!PyArg_ParseTuple(args, "U:say_hello", &name)) | |
| 18 | howto/curses | :black | They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and | |
| 19 | howto/curses | :blue | They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and | |
| 20 | howto/curses | :cyan | They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and | |
| 21 | howto/curses | :green | They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and | |
| 22 | howto/curses | :magenta | They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and | |
| 23 | howto/curses | :red | They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and | |
| 24 | howto/curses | :white | 7:white. | |
| 25 | howto/curses | :yellow | They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and | |
| 26 | howto/regex | :: | ||
| 27 | howto/regex | :foo | (?:foo) | |
| 28 | howto/urllib2 | :example | for example "joe@password:example.com" | |
| 29 | howto/webservers | .. image: | .. image:: http.png | |
| 30 | library/audioop | :ipos | # factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)], | |
| 31 | library/datetime | :MM | ||
| 32 | library/datetime | :SS | ||
| 33 | library/decimal | :optional | trailneg:optional trailing minus indicator | |
| 34 | library/difflib | :ahi | a[alo:ahi] | |
| 35 | library/difflib | :bhi | b[blo:bhi] | |
| 36 | library/difflib | :i2 | ||
| 37 | library/difflib | :j2 | ||
| 38 | library/difflib | :i1 | ||
| 39 | library/dis | :TOS | ||
| 40 | library/dis | ` | TOS = `TOS` | |
| 41 | library/doctest | ` | ``factorial`` from the ``example`` module: | |
| 42 | library/doctest | ` | The ``example`` module | |
| 43 | library/doctest | ` | Using ``factorial`` | |
| 44 | library/functions | :step | a[start:stop:step] | |
| 45 | library/functions | :stop | a[start:stop, i] | |
| 46 | library/functions | :stop | a[start:stop:step] | |
| 47 | library/hotshot | :lineno | ncalls tottime percall cumtime percall filename:lineno(function) | |
| 48 | library/httplib | :port | host:port | |
| 49 | library/imaplib | :MM | "DD-Mmm-YYYY HH:MM:SS +HHMM" | |
| 50 | library/imaplib | :SS | "DD-Mmm-YYYY HH:MM:SS +HHMM" | |
| 51 | library/itertools | :stop | elements from seq[start:stop:step] | |
| 52 | library/itertools | :step | elements from seq[start:stop:step] | |
| 53 | library/linecache | :sys | sys:x:3:3:sys:/dev:/bin/sh | |
| 54 | library/logging | :And | ||
| 55 | library/logging | :package1 | ||
| 56 | library/logging | :package2 | ||
| 57 | library/logging | :root | ||
| 58 | library/logging | :This | ||
| 59 | library/logging | :port | host:port | |
| 60 | library/mmap | :i2 | obj[i1:i2] | |
| 61 | library/multiprocessing | :queue | >>> QueueManager.register('get_queue', callable=lambda:queue) | |
| 62 | library/multiprocessing | ` | >>> l._callmethod('__getitem__', (20,)) # equiv to `l[20]` | |
| 63 | library/multiprocessing | ` | >>> l._callmethod('__getslice__', (2, 7)) # equiv to `l[2:7]` | |
| 64 | library/multiprocessing | ` | # `BaseManager`. | |
| 65 | library/multiprocessing | ` | # `Pool.imap()` (which will save on the amount of code needed anyway). | |
| 66 | library/multiprocessing | ` | # A test file for the `multiprocessing` package | |
| 67 | library/multiprocessing | ` | # A test of `multiprocessing.Pool` class | |
| 68 | library/multiprocessing | ` | # Add more tasks using `put()` | |
| 69 | library/multiprocessing | ` | # create server for a `HostManager` object | |
| 70 | library/multiprocessing | ` | # Depends on `multiprocessing` package -- tested with `processing-0.60` | |
| 71 | library/multiprocessing | ` | # in the original order then consider using `Pool.map()` or | |
| 72 | library/multiprocessing | ` | # Not sure if we should synchronize access to `socket.accept()` method by | |
| 73 | library/multiprocessing | ` | # object. (We import `multiprocessing.reduction` to enable this pickling.) | |
| 74 | library/multiprocessing | ` | # register the Foo class; make `f()` and `g()` accessible via proxy | |
| 75 | library/multiprocessing | ` | # register the Foo class; make `g()` and `_h()` accessible via proxy | |
| 76 | library/multiprocessing | ` | # register the generator function baz; use `GeneratorProxy` to make proxies | |
| 77 | library/multiprocessing | ` | `Cluster` is a subclass of `SyncManager` so it allows creation of | |
| 78 | library/multiprocessing | ` | `hostname` gives the name of the host. If hostname is not | |
| 79 | library/multiprocessing | ` | `slots` is used to specify the number of slots for processes on | |
| 80 | library/optparse | :len | del parser.rargs[:len(value)] | |
| 81 | library/os.path | :foo | c:foo | |
| 82 | library/parser | ` | "Make a function that raises an argument to the exponent `exp`." | |
| 83 | library/posix | ` | CFLAGS="`getconf LFS_CFLAGS`" OPT="-g -O2 $CFLAGS" | |
| 84 | library/profile | :lineno | ncalls tottime percall cumtime percall filename:lineno(function) | |
| 85 | library/profile | :lineno | filename:lineno(function) | |
| 86 | library/pyexpat | :elem1 | <py:elem1 /> | |
| 87 | library/pyexpat | :py | xmlns:py = "http://www.python.org/ns/"> | |
| 88 | library/repr | ` | return `obj` | |
| 89 | library/smtplib | :port | as well as a regular host:port server. | |
| 90 | library/socket | :: | '5aef:2b::8' | |
| 91 | library/sqlite3 | :memory | ||
| 92 | library/sqlite3 | :age | select name_last, age from people where name_last=:who and age=:age | |
| 93 | library/sqlite3 | :who | select name_last, age from people where name_last=:who and age=:age | |
| 94 | library/ssl | :My | Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc. | |
| 95 | library/ssl | :My | Organizational Unit Name (eg, section) []:My Group | |
| 96 | library/ssl | :myserver | Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com | |
| 97 | library/ssl | :MyState | State or Province Name (full name) [Some-State]:MyState | |
| 98 | library/ssl | :ops | Email Address []:ops@myserver.mygroup.myorganization.com | |
| 99 | library/ssl | :Some | Locality Name (eg, city) []:Some City | |
| 100 | library/ssl | :US | Country Name (2 letter code) [AU]:US | |
| 101 | library/stdtypes | :len | s[len(s):len(s)] | |
| 102 | library/stdtypes | :len | s[len(s):len(s)] | |
| 103 | library/string | :end | s[start:end] | |
| 104 | library/string | :end | s[start:end] | |
| 105 | library/subprocess | ` | output=`mycmd myarg` | |
| 106 | library/subprocess | ` | output=`dmesg | grep hda` | |
| 107 | library/tarfile | :compression | filemode[:compression] | |
| 108 | library/tarfile | :gz | ||
| 109 | library/tarfile | :bz2 | ||
| 110 | library/time | :mm | ||
| 111 | library/time | :ss | ||
| 112 | library/turtle | :: | Example:: | |
| 113 | library/urllib | :port | :port | |
| 114 | library/urllib2 | :password | "joe:password@python.org" | |
| 115 | library/uuid | :uuid | urn:uuid:12345678-1234-5678-1234-567812345678 | |
| 116 | library/xmlrpclib | :pass | http://user:pass@host:port/path | |
| 117 | library/xmlrpclib | :pass | user:pass | |
| 118 | library/xmlrpclib | :port | http://user:pass@host:port/path | |
| 119 | license | ` | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND | |
| 120 | license | :zooko | mailto:zooko@zooko.com | |
| 121 | license | ` | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | |
| 122 | reference/datamodel | :step | a[i:j:step] | |
| 123 | reference/datamodel | :max | ||
| 124 | reference/expressions | :index | x[index:index] | |
| 125 | reference/expressions | :datum | {key:datum...} | |
| 126 | reference/expressions | ` | `expressions...` | |
| 127 | reference/grammar | :output | #diagram:output | |
| 128 | reference/grammar | :rules | #diagram:rules | |
| 129 | reference/grammar | :token | #diagram:token | |
| 130 | reference/grammar | ` | '`' testlist1 '`' | |
| 131 | reference/lexical_analysis | :fileencoding | # vim:fileencoding=<encoding-name> | |
| 132 | reference/lexical_analysis | ` | , : . ` = ; | |
| 133 | tutorial/datastructures | :value | key:value pairs within the braces adds initial key:value pairs | |
| 134 | tutorial/datastructures | :value | It is also possible to delete a key:value | |
| 135 | tutorial/stdlib2 | :start | fields = struct.unpack('<IIIHH', data[start:start+16]) | |
| 136 | tutorial/stdlib2 | :start | extra = data[start:start+extra_size] | |
| 137 | tutorial/stdlib2 | :start | filename = data[start:start+filenamesize] | |
| 138 | tutorial/stdlib2 | :config | logging.warning('Warning:config file %s not found', 'server.conf') | |
| 139 | tutorial/stdlib2 | :config | WARNING:root:Warning:config file server.conf not found | |
| 140 | tutorial/stdlib2 | :Critical | CRITICAL:root:Critical error -- shutting down | |
| 141 | tutorial/stdlib2 | :Error | ERROR:root:Error occurred | |
| 142 | tutorial/stdlib2 | :root | CRITICAL:root:Critical error -- shutting down | |
| 143 | tutorial/stdlib2 | :root | ERROR:root:Error occurred | |
| 144 | tutorial/stdlib2 | :root | WARNING:root:Warning:config file server.conf not found | |
| 145 | tutorial/stdlib2 | :Warning | WARNING:root:Warning:config file server.conf not found | |
| 146 | using/cmdline | :line | file:line: category: message | |
| 147 | using/cmdline | :category | action:message:category:module:line | |
| 148 | using/cmdline | :line | action:message:category:module:line | |
| 149 | using/cmdline | :message | action:message:category:module:line | |
| 150 | using/cmdline | :module | action:message:category:module:line | |
| 151 | using/cmdline | :errorhandler | :errorhandler | |
| 152 | using/windows | 162 | ` | `` this fixes syntax highlighting errors in some editors due to the \\\\ hackery |
| 153 | using/windows | 170 | ` | `` |
| 154 | whatsnew/2.0 | 418 | :len | |
| 155 | whatsnew/2.3 | :: | ||
| 156 | whatsnew/2.3 | :config | ||
| 157 | whatsnew/2.3 | :Critical | ||
| 158 | whatsnew/2.3 | :Error | ||
| 159 | whatsnew/2.3 | :Problem | ||
| 160 | whatsnew/2.3 | :root | ||
| 161 | whatsnew/2.3 | :Warning | ||
| 162 | whatsnew/2.4 | :: | ||
| 163 | whatsnew/2.4 | :System | ||
| 164 | whatsnew/2.5 | :memory | :memory: | |
| 165 | whatsnew/2.5 | :step | [start:stop:step] | |
| 166 | whatsnew/2.5 | :stop | [start:stop:step] |