Update suspicious ignore file.

This commit is contained in:
Ezio Melotti 2013-03-28 05:47:31 +02:00
parent 352def0ed2
commit 93324d7d9c
6 changed files with 37 additions and 9 deletions

View File

@ -773,7 +773,7 @@ UTF-8, then you need to do the following:
u'ASCII section\ufeffUnicode section'
The Unicode code point ``u'\feff```, when encoded using UTF-8, will be
The Unicode code point ``u'\ufeff'``, when encoded using UTF-8, will be
encoded as a UTF-8 BOM -- the byte-string ``'\xef\xbb\xbf'``.
#. Replace the ASCII section with whatever placeholders you like, but make sure

View File

@ -72,7 +72,7 @@ numeric address in *host* portion.
tuple, and the fields depend on the address type. The general tuple form is
``(addr_type, v1, v2, v3 [, scope])``, where:
- *addr_type* is one of :const;`TIPC_ADDR_NAMESEQ`, :const:`TIPC_ADDR_NAME`,
- *addr_type* is one of :const:`TIPC_ADDR_NAMESEQ`, :const:`TIPC_ADDR_NAME`,
or :const:`TIPC_ADDR_ID`.
- *scope* is one of :const:`TIPC_ZONE_SCOPE`, :const:`TIPC_CLUSTER_SCOPE`,
and :const:`TIPC_NODE_SCOPE`.

View File

@ -225,7 +225,7 @@ default values. The arguments that are most commonly needed are:
When *stdout* or *stderr* are pipes and *universal_newlines* is
``True`` then all line endings will be converted to ``'\n'`` as described
for the :term:`universal newlines` `'U'`` mode argument to :func:`open`.
for the :term:`universal newlines` ``'U'`` mode argument to :func:`open`.
If *shell* is ``True``, the specified command will be executed through
the shell. This can be useful if you are using Python primarily for the

View File

@ -774,7 +774,7 @@ always available.
independent Python files are installed; by default, this is the string
``'/usr/local'``. This can be set at build time with the ``--prefix``
argument to the :program:`configure` script. The main collection of Python
library modules is installed in the directory :file:`{prefix}/lib/python{X.Y}``
library modules is installed in the directory :file:`{prefix}/lib/python{X.Y}`
while the platform independent header files (all except :file:`pyconfig.h`) are
stored in :file:`{prefix}/include/python{X.Y}`, where *X.Y* is the version
number of Python, for example ``2.7``.

View File

@ -737,7 +737,7 @@ can be found but the path exists then a value of ``None`` is
stored in :data:`sys.path_importer_cache` to signify that an implicit,
file-based finder that handles modules stored as individual files should be
used for that path. If the path does not exist then a finder which always
returns `None`` is placed in the cache for the path.
returns ``None`` is placed in the cache for the path.
.. index::
single: loader

View File

@ -22,11 +22,33 @@ howto/curses,,:magenta,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:m
howto/curses,,:red,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
howto/curses,,:white,"7:white."
howto/curses,,:yellow,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
howto/logging,,:root,WARNING:root:Watch out!
howto/logging,,:Watch,WARNING:root:Watch out!
howto/logging,,:root,DEBUG:root:This message should go to the log file
howto/logging,,:root,INFO:root:So should this
howto/logging,,:So,INFO:root:So should this
howto/logging,,:root,"WARNING:root:And this, too"
howto/logging,,:And,"WARNING:root:And this, too"
howto/logging,,:root,INFO:root:Started
howto/logging,,:Started,INFO:root:Started
howto/logging,,:root,INFO:root:Doing something
howto/logging,,:Doing,INFO:root:Doing something
howto/logging,,:root,INFO:root:Finished
howto/logging,,:Finished,INFO:root:Finished
howto/logging,,:root,WARNING:root:Look before you leap!
howto/logging,,:Look,WARNING:root:Look before you leap!
howto/logging,,:This,DEBUG:This message should appear on the console
howto/logging,,:So,INFO:So should this
howto/logging,,:And,"WARNING:And this, too"
howto/logging,,:logger,severity:logger name:message
howto/logging,,:message,severity:logger name:message
howto/logging,,:This,DEBUG:root:This message should go to the log file
howto/regex,,::,
howto/regex,,:foo,(?:foo)
howto/urllib2,,:example,"for example ""joe@password:example.com"""
howto/webservers,,.. image:,.. image:: http.png
library/audioop,,:ipos,"# factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)],"
library/cookie,,`,!#$%&'*+-.^_`|~
library/datetime,,:MM,
library/datetime,,:SS,
library/decimal,,:optional,"trailneg:optional trailing minus indicator"
@ -40,13 +62,14 @@ library/dis,,`,TOS = `TOS`
library/doctest,,`,``factorial`` from the ``example`` module:
library/doctest,,`,The ``example`` module
library/doctest,,`,Using ``factorial``
library/exceptions,,:err,err.object[err.start:err.end]
library/functions,,:step,a[start:stop:step]
library/functions,,:stop,"a[start:stop, i]"
library/functions,,:stop,a[start:stop:step]
library/hotshot,,:lineno,"ncalls tottime percall cumtime percall filename:lineno(function)"
library/httplib,,:port,host:port
library/imaplib,,:MM,"""DD-Mmm-YYYY HH:MM:SS +HHMM"""
library/imaplib,,:SS,"""DD-Mmm-YYYY HH:MM:SS +HHMM"""
library/imaplib,,:MM,"""DD-Mmm-YYYY HH:MM:SS"
library/imaplib,,:SS,"""DD-Mmm-YYYY HH:MM:SS"
library/itertools,,:stop,elements from seq[start:stop:step]
library/itertools,,:step,elements from seq[start:stop:step]
library/linecache,,:sys,"sys:x:3:3:sys:/dev:/bin/sh"
@ -56,6 +79,7 @@ library/logging,,:package2,
library/logging,,:root,
library/logging,,:This,
library/logging,,:port,host:port
library/logging.handlers,,:port,host:port
library/mmap,,:i2,obj[i1:i2]
library/multiprocessing,,:queue,">>> QueueManager.register('get_queue', callable=lambda:queue)"
library/multiprocessing,,`,">>> l._callmethod('__getitem__', (20,)) # equiv to `l[20]`"
@ -79,6 +103,8 @@ library/multiprocessing,,`,`slots` is used to specify the number of slots for pr
library/optparse,,:len,"del parser.rargs[:len(value)]"
library/os.path,,:foo,c:foo
library/parser,,`,"""Make a function that raises an argument to the exponent `exp`."""
library/pdb,,:lineno,filename:lineno
library/pdb,,:lineno,filename:lineno
library/posix,,`,"CFLAGS=""`getconf LFS_CFLAGS`"" OPT=""-g -O2 $CFLAGS"""
library/profile,,:lineno,ncalls tottime percall cumtime percall filename:lineno(function)
library/profile,,:lineno,filename:lineno(function)
@ -88,8 +114,8 @@ library/repr,,`,"return `obj`"
library/smtplib,,:port,"as well as a regular host:port server."
library/socket,,::,'5aef:2b::8'
library/sqlite3,,:memory,
library/sqlite3,,:age,"select name_last, age from people where name_last=:who and age=:age"
library/sqlite3,,:who,"select name_last, age from people where name_last=:who and age=:age"
library/sqlite3,,:who,"cur.execute(""select * from people where name_last=:who and age=:age"", {""who"": who, ""age"": age})"
library/sqlite3,,:age,"cur.execute(""select * from people where name_last=:who and age=:age"", {""who"": who, ""age"": age})"
library/ssl,,:My,"Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc."
library/ssl,,:My,"Organizational Unit Name (eg, section) []:My Group"
library/ssl,,:myserver,"Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com"
@ -123,6 +149,8 @@ reference/datamodel,,:max,
reference/expressions,,:index,x[index:index]
reference/expressions,,:datum,{key:datum...}
reference/expressions,,`,`expressions...`
reference/expressions,,`,"""`"""
reference/expressions,,`,"""`"""
reference/grammar,,:output,#diagram:output
reference/grammar,,:rules,#diagram:rules
reference/grammar,,:token,#diagram:token

1 c-api/arg :ref PyArg_ParseTuple(args, "O|O:ref", &object, &callback)
22 howto/curses :red They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and
23 howto/curses :white 7:white.
24 howto/curses :yellow They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and
25 howto/logging :root WARNING:root:Watch out!
26 howto/logging :Watch WARNING:root:Watch out!
27 howto/logging :root DEBUG:root:This message should go to the log file
28 howto/logging :root INFO:root:So should this
29 howto/logging :So INFO:root:So should this
30 howto/logging :root WARNING:root:And this, too
31 howto/logging :And WARNING:root:And this, too
32 howto/logging :root INFO:root:Started
33 howto/logging :Started INFO:root:Started
34 howto/logging :root INFO:root:Doing something
35 howto/logging :Doing INFO:root:Doing something
36 howto/logging :root INFO:root:Finished
37 howto/logging :Finished INFO:root:Finished
38 howto/logging :root WARNING:root:Look before you leap!
39 howto/logging :Look WARNING:root:Look before you leap!
40 howto/logging :This DEBUG:This message should appear on the console
41 howto/logging :So INFO:So should this
42 howto/logging :And WARNING:And this, too
43 howto/logging :logger severity:logger name:message
44 howto/logging :message severity:logger name:message
45 howto/logging :This DEBUG:root:This message should go to the log file
46 howto/regex ::
47 howto/regex :foo (?:foo)
48 howto/urllib2 :example for example "joe@password:example.com"
49 howto/webservers .. image: .. image:: http.png
50 library/audioop :ipos # factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)],
51 library/cookie ` !#$%&'*+-.^_`|~
52 library/datetime :MM
53 library/datetime :SS
54 library/decimal :optional trailneg:optional trailing minus indicator
62 library/doctest ` ``factorial`` from the ``example`` module:
63 library/doctest ` The ``example`` module
64 library/doctest ` Using ``factorial``
65 library/exceptions :err err.object[err.start:err.end]
66 library/functions :step a[start:stop:step]
67 library/functions :stop a[start:stop, i]
68 library/functions :stop a[start:stop:step]
69 library/hotshot :lineno ncalls tottime percall cumtime percall filename:lineno(function)
70 library/httplib :port host:port
71 library/imaplib :MM "DD-Mmm-YYYY HH:MM:SS +HHMM" "DD-Mmm-YYYY HH:MM:SS
72 library/imaplib :SS "DD-Mmm-YYYY HH:MM:SS +HHMM" "DD-Mmm-YYYY HH:MM:SS
73 library/itertools :stop elements from seq[start:stop:step]
74 library/itertools :step elements from seq[start:stop:step]
75 library/linecache :sys sys:x:3:3:sys:/dev:/bin/sh
79 library/logging :root
80 library/logging :This
81 library/logging :port host:port
82 library/logging.handlers :port host:port
83 library/mmap :i2 obj[i1:i2]
84 library/multiprocessing :queue >>> QueueManager.register('get_queue', callable=lambda:queue)
85 library/multiprocessing ` >>> l._callmethod('__getitem__', (20,)) # equiv to `l[20]`
103 library/optparse :len del parser.rargs[:len(value)]
104 library/os.path :foo c:foo
105 library/parser ` "Make a function that raises an argument to the exponent `exp`."
106 library/pdb :lineno filename:lineno
107 library/pdb :lineno filename:lineno
108 library/posix ` CFLAGS="`getconf LFS_CFLAGS`" OPT="-g -O2 $CFLAGS"
109 library/profile :lineno ncalls tottime percall cumtime percall filename:lineno(function)
110 library/profile :lineno filename:lineno(function)
114 library/smtplib :port as well as a regular host:port server.
115 library/socket :: '5aef:2b::8'
116 library/sqlite3 :memory
117 library/sqlite3 :age :who select name_last, age from people where name_last=:who and age=:age cur.execute("select * from people where name_last=:who and age=:age", {"who": who, "age": age})
118 library/sqlite3 :who :age select name_last, age from people where name_last=:who and age=:age cur.execute("select * from people where name_last=:who and age=:age", {"who": who, "age": age})
119 library/ssl :My Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc.
120 library/ssl :My Organizational Unit Name (eg, section) []:My Group
121 library/ssl :myserver Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com
149 reference/expressions :index x[index:index]
150 reference/expressions :datum {key:datum...}
151 reference/expressions ` `expressions...`
152 reference/expressions ` "`"
153 reference/expressions ` "`"
154 reference/grammar :output #diagram:output
155 reference/grammar :rules #diagram:rules
156 reference/grammar :token #diagram:token