Update suspicious ignore file.

This commit is contained in:
Ezio Melotti 2013-03-28 04:31:53 +02:00
parent 265281ac02
commit fd4365a4d8
4 changed files with 11 additions and 12 deletions

View File

@ -351,7 +351,7 @@ When run, this will produce the following output:
Worker <Thread(worker 1, started 130283832797456)> running with argument 5
...
Consult the module's documentation for more details; the :class:`~queue.Queue``
Consult the module's documentation for more details; the :class:`~queue.Queue`
class provides a featureful interface.

View File

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

View File

@ -764,7 +764,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 ``3.2``.

View File

@ -88,8 +88,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"
@ -112,9 +112,9 @@ library/turtle,,::,Example::
library/urllib,,:port,:port
library/urllib2,,:password,"""joe:password@python.org"""
library/uuid,,:uuid,urn:uuid:12345678-1234-5678-1234-567812345678
library/xmlrpclib,,:pass,http://user:pass@host:port/path
library/xmlrpclib,,:pass,user:pass
library/xmlrpclib,,:port,http://user:pass@host:port/path
library/xmlrpc.client,,:pass,http://user:pass@host:port/path
library/xmlrpc.client,,:port,http://user:pass@host:port/path
library/xmlrpc.client,,:pass,user:pass
license,,`,THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
license,,:zooko,mailto:zooko@zooko.com
license,,`,THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
@ -169,10 +169,12 @@ faq/programming,,:reduce,"Sx=Sx,Sy=Sy:reduce(lambda x,y:x+y,map(lambda x,xc=Ru,y
faq/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("
faq/programming,,::,for x in sequence[::-1]:
faq/windows,229,:EOF,@setlocal enableextensions & python -x %~f0 %* & goto :EOF
faq/windows,,:bd8afb90ebf2,"Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32"
faq/windows,393,:REG,.py :REG_SZ: c:\<path to python>\python.exe -u %s %s
library/bisect,32,:hi,all(val >= x for val in a[i:hi])
library/bisect,42,:hi,all(val > x for val in a[i:hi])
library/http.client,52,:port,host:port
library/http.client,,:port,host:port
library/http.cookies,,`,!#$%&'*+-.^_`|~
library/nntplib,,:bytes,:bytes
library/nntplib,,:lines,:lines
library/nntplib,,:lines,"['xref', 'from', ':lines', ':bytes', 'references', 'date', 'message-id', 'subject']"
@ -185,9 +187,6 @@ library/stdtypes,,:end,s[start:end]
library/urllib.request,,:close,Connection:close
library/urllib.request,,:password,"""joe:password@python.org"""
library/urllib.request,,:lang,"xmlns=""http://www.w3.org/1999/xhtml"" xml:lang=""en"" lang=""en"">\n\n<head>\n"
library/xmlrpc.client,103,:pass,http://user:pass@host:port/path
library/xmlrpc.client,103,:port,http://user:pass@host:port/path
library/xmlrpc.client,103,:pass,user:pass
license,,`,* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
license,,`,* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
license,,`,"``Software''), to deal in the Software without restriction, including"

1 c-api/arg :ref PyArg_ParseTuple(args, "O|O:ref", &object, &callback)
88 library/smtplib :port as well as a regular host:port server.
89 library/socket :: '5aef:2b::8'
90 library/sqlite3 :memory
91 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})
92 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})
93 library/ssl :My Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc.
94 library/ssl :My Organizational Unit Name (eg, section) []:My Group
95 library/ssl :myserver Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com
112 library/urllib :port :port
113 library/urllib2 :password "joe:password@python.org"
114 library/uuid :uuid urn:uuid:12345678-1234-5678-1234-567812345678
115 library/xmlrpclib library/xmlrpc.client :pass http://user:pass@host:port/path
116 library/xmlrpclib library/xmlrpc.client :pass :port user:pass http://user:pass@host:port/path
117 library/xmlrpclib library/xmlrpc.client :port :pass http://user:pass@host:port/path user:pass
118 license ` THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
119 license :zooko mailto:zooko@zooko.com
120 license ` THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
169 faq/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(
170 faq/programming :: for x in sequence[::-1]:
171 faq/windows 229 :EOF @setlocal enableextensions & python -x %~f0 %* & goto :EOF
172 faq/windows :bd8afb90ebf2 Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32
173 faq/windows 393 :REG .py :REG_SZ: c:\<path to python>\python.exe -u %s %s
174 library/bisect 32 :hi all(val >= x for val in a[i:hi])
175 library/bisect 42 :hi all(val > x for val in a[i:hi])
176 library/http.client 52 :port host:port
177 library/http.cookies ` !#$%&'*+-.^_`|~
178 library/nntplib :bytes :bytes
179 library/nntplib :lines :lines
180 library/nntplib :lines ['xref', 'from', ':lines', ':bytes', 'references', 'date', 'message-id', 'subject']
187 library/urllib.request :close Connection:close
188 library/urllib.request :password "joe:password@python.org"
189 library/urllib.request :lang xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\n\n<head>\n
library/xmlrpc.client 103 :pass http://user:pass@host:port/path
library/xmlrpc.client 103 :port http://user:pass@host:port/path
library/xmlrpc.client 103 :pass user:pass
190 license ` * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
191 license ` * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
192 license ` ``Software''), to deal in the Software without restriction, including