Merged revisions 68288-68291,68325-68326,68338,68388,68393,68423 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

................
  r68288 | benjamin.peterson | 2009-01-03 18:39:07 -0600 (Sat, 03 Jan 2009) | 1 line

  only check the actual compile() call for a SyntaxError
................
  r68289 | georg.brandl | 2009-01-04 02:26:10 -0600 (Sun, 04 Jan 2009) | 2 lines

  Test commit.
................
  r68290 | georg.brandl | 2009-01-04 04:23:49 -0600 (Sun, 04 Jan 2009) | 4 lines

  Add "suspicious" builder which finds leftover markup in the HTML files.

  Patch by Gabriel Genellina.
................
  r68291 | georg.brandl | 2009-01-04 04:24:09 -0600 (Sun, 04 Jan 2009) | 2 lines

  Fix two issues found by the suspicious builder.
................
  r68325 | benjamin.peterson | 2009-01-04 16:00:18 -0600 (Sun, 04 Jan 2009) | 1 line

  use Jinja 2.1.1
................
  r68326 | georg.brandl | 2009-01-04 16:03:10 -0600 (Sun, 04 Jan 2009) | 2 lines

  Update make.bat.
................
  r68338 | neal.norwitz | 2009-01-04 21:57:25 -0600 (Sun, 04 Jan 2009) | 1 line

  Make sure to checkout any new packages
................
  r68388 | benjamin.peterson | 2009-01-07 21:39:46 -0600 (Wed, 07 Jan 2009) | 1 line

  string exceptions are gone
................
  r68393 | benjamin.peterson | 2009-01-07 22:01:00 -0600 (Wed, 07 Jan 2009) | 1 line

  use new sphinx modules
................
  r68423 | benjamin.peterson | 2009-01-08 20:13:34 -0600 (Thu, 08 Jan 2009) | 29 lines

  Merged revisions 68306-68308,68340,68368,68422 via svnmerge from
  svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

  ........
    r68306 | benjamin.peterson | 2009-01-04 12:27:19 -0600 (Sun, 04 Jan 2009) | 1 line

    fix_urllib: add mappings for the url parsing functions
  ........
    r68307 | benjamin.peterson | 2009-01-04 12:30:01 -0600 (Sun, 04 Jan 2009) | 1 line

    remove duplicated function
  ........
    r68308 | benjamin.peterson | 2009-01-04 12:50:34 -0600 (Sun, 04 Jan 2009) | 1 line

    turtle is no longer renamed
  ........
    r68340 | georg.brandl | 2009-01-05 02:11:39 -0600 (Mon, 05 Jan 2009) | 2 lines

    Fix undefined locals in parse_tokens().
  ........
    r68368 | benjamin.peterson | 2009-01-06 17:56:10 -0600 (Tue, 06 Jan 2009) | 1 line

    fix typo (thanks to Robert Lehmann)
  ........
    r68422 | benjamin.peterson | 2009-01-08 20:01:03 -0600 (Thu, 08 Jan 2009) | 1 line

    run the imports fixers after fix_import, so fix_import doesn't try to make stdlib renames into relative imports #4876
  ........
................
This commit is contained in:
Benjamin Peterson 2009-01-09 03:04:01 +00:00
parent b2f2291182
commit 9f7ae1b8c3
15 changed files with 462 additions and 46 deletions

View File

@ -24,6 +24,7 @@ help:
@echo " text to make plain text files" @echo " text to make plain text files"
@echo " changes to make an overview over all changed/added/deprecated items" @echo " changes to make an overview over all changed/added/deprecated items"
@echo " linkcheck to check all external links for integrity" @echo " linkcheck to check all external links for integrity"
@echo " suspicious to check for suspicious markup in output text"
@echo " coverage to check documentation coverage for library and C API" @echo " coverage to check documentation coverage for library and C API"
@echo " dist to create a \"dist\" directory with archived docs for download" @echo " dist to create a \"dist\" directory with archived docs for download"
@ -36,9 +37,9 @@ checkout:
echo "Checking out Docutils..."; \ echo "Checking out Docutils..."; \
svn checkout $(SVNROOT)/external/docutils-0.5/docutils tools/docutils; \ svn checkout $(SVNROOT)/external/docutils-0.5/docutils tools/docutils; \
fi fi
@if [ ! -d tools/jinja ]; then \ @if [ ! -d tools/jinja2 ]; then \
echo "Checking out Jinja..."; \ echo "Checking out Jinja..."; \
svn checkout $(SVNROOT)/external/Jinja-1.2/jinja tools/jinja; \ svn checkout $(SVNROOT)/external/Jinja-2.1.1/jinja2 tools/jinja2; \
fi fi
@if [ ! -d tools/pygments ]; then \ @if [ ! -d tools/pygments ]; then \
echo "Checking out Pygments..."; \ echo "Checking out Pygments..."; \
@ -48,7 +49,7 @@ checkout:
update: checkout update: checkout
svn update tools/sphinx svn update tools/sphinx
svn update tools/docutils svn update tools/docutils
svn update tools/jinja svn update tools/jinja2
svn update tools/pygments svn update tools/pygments
build: checkout build: checkout
@ -84,6 +85,11 @@ linkcheck: build
@echo "Link check complete; look for any errors in the above output " \ @echo "Link check complete; look for any errors in the above output " \
"or in build/$(BUILDER)/output.txt" "or in build/$(BUILDER)/output.txt"
suspicious: BUILDER = suspicious
suspicious: build
@echo "Suspicious check complete; look for any errors in the above output " \
"or in build/$(BUILDER)/suspicious.txt"
coverage: BUILDER = coverage coverage: BUILDER = coverage
coverage: build coverage: build
@echo "Coverage finished; see c.txt and python.txt in build/coverage" @echo "Coverage finished; see c.txt and python.txt in build/coverage"

View File

@ -1864,7 +1864,7 @@ Utility functions
:module: ctypes.util :module: ctypes.util
Try to find a library and return a pathname. *name* is the library name Try to find a library and return a pathname. *name* is the library name
without any prefix like ``lib```, suffix like ``.so``, ``.dylib`` or version without any prefix like ``lib``, suffix like ``.so``, ``.dylib`` or version
number (this is the form used for the posix linker option :option:`-l`). If number (this is the form used for the posix linker option :option:`-l`). If
no library can be found, returns ``None``. no library can be found, returns ``None``.

View File

@ -1,4 +1,3 @@
:mod:`ftplib` --- FTP protocol client :mod:`ftplib` --- FTP protocol client
===================================== =====================================

View File

@ -1812,7 +1812,7 @@ Address Formats
* An ``'AF_PIPE'`` address is a string of the form * An ``'AF_PIPE'`` address is a string of the form
:samp:`r'\\\\.\\pipe\\{PipeName}'`. To use :func:`Client` to connect to a named :samp:`r'\\\\.\\pipe\\{PipeName}'`. To use :func:`Client` to connect to a named
pipe on a remote computer called *ServerName* one should use an address of the pipe on a remote computer called *ServerName* one should use an address of the
form :samp:`r'\\\\{ServerName}\\pipe\\{PipeName}'`` instead. form :samp:`r'\\\\{ServerName}\\pipe\\{PipeName}'` instead.
Note that any string beginning with two backslashes is assumed by default to be Note that any string beginning with two backslashes is assumed by default to be
an ``'AF_PIPE'`` address rather than an ``'AF_UNIX'`` address. an ``'AF_PIPE'`` address rather than an ``'AF_UNIX'`` address.

View File

@ -8,34 +8,41 @@ if "%HTMLHELP%" EQU "" set HTMLHELP=%ProgramFiles%\HTML Help Workshop\hhc.exe
if "%1" EQU "" goto help if "%1" EQU "" goto help
if "%1" EQU "html" goto build if "%1" EQU "html" goto build
if "%1" EQU "htmlhelp" goto build if "%1" EQU "htmlhelp" goto build
if "%1" EQU "web" goto build if "%1" EQU "latex" goto build
if "%1" EQU "webrun" goto webrun if "%1" EQU "text" goto build
if "%1" EQU "suspicious" goto build
if "%1" EQU "linkcheck" goto build
if "%1" EQU "changes" goto build
if "%1" EQU "checkout" goto checkout if "%1" EQU "checkout" goto checkout
if "%1" EQU "update" goto update if "%1" EQU "update" goto update
:help :help
set this=%~n0
echo HELP echo HELP
echo. echo.
echo builddoc checkout echo %this% checkout
echo builddoc update echo %this% update
echo builddoc html echo %this% html
echo builddoc htmlhelp echo %this% htmlhelp
echo builddoc web echo %this% latex
echo builddoc webrun echo %this% text
echo %this% suspicious
echo %this% linkcheck
echo %this% changes
echo. echo.
goto end goto end
:checkout :checkout
svn co %SVNROOT%/doctools/trunk/sphinx tools/sphinx svn co %SVNROOT%/doctools/trunk/sphinx tools/sphinx
svn co %SVNROOT%/external/docutils-0.4/docutils tools/docutils svn co %SVNROOT%/external/docutils-0.5/docutils tools/docutils
svn co %SVNROOT%/external/Jinja-1.1/jinja tools/jinja svn co %SVNROOT%/external/Jinja-2.1.1/jinja2 tools/jinja2
svn co %SVNROOT%/external/Pygments-0.9/pygments tools/pygments svn co %SVNROOT%/external/Pygments-0.11.1/pygments tools/pygments
goto end goto end
:update :update
svn update tools/sphinx svn update tools/sphinx
svn update tools/docutils svn update tools/docutils
svn update tools/jinja svn update tools/jinja2
svn update tools/pygments svn update tools/pygments
goto end goto end
@ -43,13 +50,8 @@ goto end
if not exist build mkdir build if not exist build mkdir build
if not exist build\%1 mkdir build\%1 if not exist build\%1 mkdir build\%1
if not exist build\doctrees mkdir build\doctrees if not exist build\doctrees mkdir build\doctrees
cmd /C %PYTHON% tools\sphinx-build.py -b%1 -dbuild\doctrees . build\%1 cmd /C %PYTHON% tools\sphinx-build.py -b%1 -dbuild\doctrees . build\%*
if "%1" EQU "htmlhelp" "%HTMLHELP%" build\htmlhelp\pydoc.hhp if "%1" EQU "htmlhelp" "%HTMLHELP%" build\htmlhelp\pydoc.hhp
goto end goto end
:webrun
set PYTHONPATH=tools
%PYTHON% -m sphinx.web build\web
goto end
:end :end

View File

@ -62,12 +62,12 @@ def checker(*suffixes, **kwds):
@checker('.py', severity=4) @checker('.py', severity=4)
def check_syntax(fn, lines): def check_syntax(fn, lines):
"""Check Python examples for valid syntax.""" """Check Python examples for valid syntax."""
code = ''.join(lines)
if '\r' in code:
if os.name != 'nt':
yield 0, '\\r in code file'
code = code.replace('\r', '')
try: try:
code = ''.join(lines)
if '\r' in code:
if os.name != 'nt':
yield 0, '\\r in code file'
code = code.replace('\r', '')
compile(code, fn, 'exec') compile(code, fn, 'exec')
except SyntaxError, err: except SyntaxError, err:
yield err.lineno, 'not compilable: %s' % err yield err.lineno, 'not compilable: %s' % err

View File

@ -48,15 +48,9 @@ from pprint import pformat
from docutils.io import StringOutput from docutils.io import StringOutput
from docutils.utils import new_document from docutils.utils import new_document
try: from sphinx.builders import Builder
from sphinx.builders import Builder from sphinx.writers.text import TextWriter
except ImportError:
from sphinx.builder import Builder
try:
from sphinx.writers.text import TextWriter
except ImportError:
from sphinx.textwriter import TextWriter
class PydocTopicsBuilder(Builder): class PydocTopicsBuilder(Builder):
name = 'pydoc-topics' name = 'pydoc-topics'
@ -92,6 +86,9 @@ class PydocTopicsBuilder(Builder):
finally: finally:
f.close() f.close()
# Support for checking for suspicious markup
import suspicious
# Support for documenting Opcodes # Support for documenting Opcodes
@ -116,5 +113,6 @@ def parse_opcode_signature(env, sig, signode):
def setup(app): def setup(app):
app.add_role('issue', issue_role) app.add_role('issue', issue_role)
app.add_builder(PydocTopicsBuilder) app.add_builder(PydocTopicsBuilder)
app.add_builder(suspicious.CheckSuspiciousMarkupBuilder)
app.add_description_unit('opcode', 'opcode', '%s (opcode)', app.add_description_unit('opcode', 'opcode', '%s (opcode)',
parse_opcode_signature) parse_opcode_signature)

View File

@ -0,0 +1,164 @@
c-api/arg,,:ref,"PyArg_ParseTuple(args, ""O|O:ref"", &object, &callback)"
c-api/list,,:high,list[low:high]
c-api/list,,:high,list[low:high] = itemlist
c-api/sequence,,:i2,o[i1:i2]
c-api/sequence,,:i2,o[i1:i2] = v
c-api/sequence,,:i2,del o[i1:i2]
c-api/unicode,,:end,str[start:end]
distutils/apiref,,:action,http://pypi.python.org/pypi?:action=list_classifiers
distutils/setupscript,,::,
extending/embedding,,:numargs,"if(!PyArg_ParseTuple(args, "":numargs""))"
extending/extending,,:set,"if (PyArg_ParseTuple(args, ""O:set_callback"", &temp)) {"
extending/extending,,:myfunction,"PyArg_ParseTuple(args, ""D:myfunction"", &c);"
extending/newtypes,,:call,"if (!PyArg_ParseTuple(args, ""sss:call"", &arg1, &arg2, &arg3)) {"
extending/windows,,:initspam,/export:initspam
howto/cporting,,:add,"if (!PyArg_ParseTuple(args, ""ii:add_ints"", &one, &two))"
howto/cporting,,:encode,"if (!PyArg_ParseTuple(args, ""O:encode_object"", &myobj))"
howto/cporting,,:say,"if (!PyArg_ParseTuple(args, ""U:say_hello"", &name))"
howto/curses,,:black,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
howto/curses,,:blue,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
howto/curses,,:cyan,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
howto/curses,,:green,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
howto/curses,,:magenta,"They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and"
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/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/datetime,,:MM,
library/datetime,,:SS,
library/decimal,,:optional,"trailneg:optional trailing minus indicator"
library/difflib,,:ahi,a[alo:ahi]
library/difflib,,:bhi,b[blo:bhi]
library/difflib,,:i2,
library/difflib,,:j2,
library/difflib,,:i1,
library/dis,,:TOS,
library/dis,,`,TOS = `TOS`
library/doctest,,`,``factorial`` from the ``example`` module:
library/doctest,,`,The ``example`` module
library/doctest,,`,Using ``factorial``
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/linecache,,:sys,"sys:x:3:3:sys:/dev:/bin/sh"
library/logging,,:And,
library/logging,,:package1,
library/logging,,:package2,
library/logging,,:root,
library/logging,,:This,
library/logging,,: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]`"
library/multiprocessing,,`,">>> l._callmethod('__getslice__', (2, 7)) # equiv to `l[2:7]`"
library/multiprocessing,,`,# `BaseManager`.
library/multiprocessing,,`,# `Pool.imap()` (which will save on the amount of code needed anyway).
library/multiprocessing,,`,# A test file for the `multiprocessing` package
library/multiprocessing,,`,# A test of `multiprocessing.Pool` class
library/multiprocessing,,`,# Add more tasks using `put()`
library/multiprocessing,,`,# create server for a `HostManager` object
library/multiprocessing,,`,# Depends on `multiprocessing` package -- tested with `processing-0.60`
library/multiprocessing,,`,# in the original order then consider using `Pool.map()` or
library/multiprocessing,,`,# Not sure if we should synchronize access to `socket.accept()` method by
library/multiprocessing,,`,# object. (We import `multiprocessing.reduction` to enable this pickling.)
library/multiprocessing,,`,# register the Foo class; make `f()` and `g()` accessible via proxy
library/multiprocessing,,`,# register the Foo class; make `g()` and `_h()` accessible via proxy
library/multiprocessing,,`,# register the generator function baz; use `GeneratorProxy` to make proxies
library/multiprocessing,,`,`Cluster` is a subclass of `SyncManager` so it allows creation of
library/multiprocessing,,`,`hostname` gives the name of the host. If hostname is not
library/multiprocessing,,`,`slots` is used to specify the number of slots for processes on
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/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)
library/pyexpat,,:elem1,<py:elem1 />
library/pyexpat,,:py,"xmlns:py = ""http://www.python.org/ns/"">"
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/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"
library/ssl,,:MyState,State or Province Name (full name) [Some-State]:MyState
library/ssl,,:ops,Email Address []:ops@myserver.mygroup.myorganization.com
library/ssl,,:Some,"Locality Name (eg, city) []:Some City"
library/ssl,,:US,Country Name (2 letter code) [AU]:US
library/stdtypes,,:len,s[len(s):len(s)]
library/stdtypes,,:len,s[len(s):len(s)]
library/string,,:end,s[start:end]
library/string,,:end,s[start:end]
library/subprocess,,`,"output=`mycmd myarg`"
library/subprocess,,`,"output=`dmesg | grep hda`"
library/tarfile,,:compression,filemode[:compression]
library/tarfile,,:gz,
library/tarfile,,:bz2,
library/time,,:mm,
library/time,,:ss,
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
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
reference/datamodel,,:step,a[i:j:step]
reference/datamodel,,:max,
reference/expressions,,:index,x[index:index]
reference/expressions,,:datum,{key:datum...}
reference/expressions,,`,`expressions...`
reference/grammar,,:output,#diagram:output
reference/grammar,,:rules,#diagram:rules
reference/grammar,,:token,#diagram:token
reference/grammar,,`,'`' testlist1 '`'
reference/lexical_analysis,,:fileencoding,# vim:fileencoding=<encoding-name>
reference/lexical_analysis,,`,", : . ` = ;"
tutorial/datastructures,,:value,key:value pairs within the braces adds initial key:value pairs
tutorial/datastructures,,:value,It is also possible to delete a key:value
tutorial/stdlib2,,:start,"fields = struct.unpack('<IIIHH', data[start:start+16])"
tutorial/stdlib2,,:start,extra = data[start:start+extra_size]
tutorial/stdlib2,,:start,filename = data[start:start+filenamesize]
tutorial/stdlib2,,:config,"logging.warning('Warning:config file %s not found', 'server.conf')"
tutorial/stdlib2,,:config,WARNING:root:Warning:config file server.conf not found
tutorial/stdlib2,,:Critical,CRITICAL:root:Critical error -- shutting down
tutorial/stdlib2,,:Error,ERROR:root:Error occurred
tutorial/stdlib2,,:root,CRITICAL:root:Critical error -- shutting down
tutorial/stdlib2,,:root,ERROR:root:Error occurred
tutorial/stdlib2,,:root,WARNING:root:Warning:config file server.conf not found
tutorial/stdlib2,,:Warning,WARNING:root:Warning:config file server.conf not found
using/cmdline,,:line,file:line: category: message
using/cmdline,,:category,action:message:category:module:line
using/cmdline,,:line,action:message:category:module:line
using/cmdline,,:message,action:message:category:module:line
using/cmdline,,:module,action:message:category:module:line
using/cmdline,,:errorhandler,:errorhandler
using/windows,162,`,`` this fixes syntax highlighting errors in some editors due to the \\\\ hackery
using/windows,170,`,``
whatsnew/2.0,418,:len,
whatsnew/2.3,,::,
whatsnew/2.3,,:config,
whatsnew/2.3,,:Critical,
whatsnew/2.3,,:Error,
whatsnew/2.3,,:Problem,
whatsnew/2.3,,:root,
whatsnew/2.3,,:Warning,
whatsnew/2.4,,::,
whatsnew/2.4,,:System,
whatsnew/2.5,,:memory,:memory:
whatsnew/2.5,,:step,[start:stop:step]
whatsnew/2.5,,:stop,[start:stop:step]
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/linecache :sys sys:x:3:3:sys:/dev:/bin/sh
52 library/logging :And
53 library/logging :package1
54 library/logging :package2
55 library/logging :root
56 library/logging :This
57 library/logging :port host:port
58 library/mmap :i2 obj[i1:i2]
59 library/multiprocessing :queue >>> QueueManager.register('get_queue', callable=lambda:queue)
60 library/multiprocessing ` >>> l._callmethod('__getitem__', (20,)) # equiv to `l[20]`
61 library/multiprocessing ` >>> l._callmethod('__getslice__', (2, 7)) # equiv to `l[2:7]`
62 library/multiprocessing ` # `BaseManager`.
63 library/multiprocessing ` # `Pool.imap()` (which will save on the amount of code needed anyway).
64 library/multiprocessing ` # A test file for the `multiprocessing` package
65 library/multiprocessing ` # A test of `multiprocessing.Pool` class
66 library/multiprocessing ` # Add more tasks using `put()`
67 library/multiprocessing ` # create server for a `HostManager` object
68 library/multiprocessing ` # Depends on `multiprocessing` package -- tested with `processing-0.60`
69 library/multiprocessing ` # in the original order then consider using `Pool.map()` or
70 library/multiprocessing ` # Not sure if we should synchronize access to `socket.accept()` method by
71 library/multiprocessing ` # object. (We import `multiprocessing.reduction` to enable this pickling.)
72 library/multiprocessing ` # register the Foo class; make `f()` and `g()` accessible via proxy
73 library/multiprocessing ` # register the Foo class; make `g()` and `_h()` accessible via proxy
74 library/multiprocessing ` # register the generator function baz; use `GeneratorProxy` to make proxies
75 library/multiprocessing ` `Cluster` is a subclass of `SyncManager` so it allows creation of
76 library/multiprocessing ` `hostname` gives the name of the host. If hostname is not
77 library/multiprocessing ` `slots` is used to specify the number of slots for processes on
78 library/optparse :len del parser.rargs[:len(value)]
79 library/os.path :foo c:foo
80 library/parser ` "Make a function that raises an argument to the exponent `exp`."
81 library/posix ` CFLAGS="`getconf LFS_CFLAGS`" OPT="-g -O2 $CFLAGS"
82 library/profile :lineno ncalls tottime percall cumtime percall filename:lineno(function)
83 library/profile :lineno filename:lineno(function)
84 library/pyexpat :elem1 <py:elem1 />
85 library/pyexpat :py xmlns:py = "http://www.python.org/ns/">
86 library/repr ` return `obj`
87 library/smtplib :port as well as a regular host:port server.
88 library/socket :: '5aef:2b::8'
89 library/sqlite3 :memory
90 library/sqlite3 :age select name_last, age from people where name_last=:who and age=:age
91 library/sqlite3 :who select name_last, age from people where name_last=:who and age=:age
92 library/ssl :My Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc.
93 library/ssl :My Organizational Unit Name (eg, section) []:My Group
94 library/ssl :myserver Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com
95 library/ssl :MyState State or Province Name (full name) [Some-State]:MyState
96 library/ssl :ops Email Address []:ops@myserver.mygroup.myorganization.com
97 library/ssl :Some Locality Name (eg, city) []:Some City
98 library/ssl :US Country Name (2 letter code) [AU]:US
99 library/stdtypes :len s[len(s):len(s)]
100 library/stdtypes :len s[len(s):len(s)]
101 library/string :end s[start:end]
102 library/string :end s[start:end]
103 library/subprocess ` output=`mycmd myarg`
104 library/subprocess ` output=`dmesg | grep hda`
105 library/tarfile :compression filemode[:compression]
106 library/tarfile :gz
107 library/tarfile :bz2
108 library/time :mm
109 library/time :ss
110 library/turtle :: Example::
111 library/urllib :port :port
112 library/urllib2 :password "joe:password@python.org"
113 library/uuid :uuid urn:uuid:12345678-1234-5678-1234-567812345678
114 library/xmlrpclib :pass http://user:pass@host:port/path
115 library/xmlrpclib :pass user:pass
116 library/xmlrpclib :port http://user:pass@host:port/path
117 license ` THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
118 license :zooko mailto:zooko@zooko.com
119 license ` THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
120 reference/datamodel :step a[i:j:step]
121 reference/datamodel :max
122 reference/expressions :index x[index:index]
123 reference/expressions :datum {key:datum...}
124 reference/expressions ` `expressions...`
125 reference/grammar :output #diagram:output
126 reference/grammar :rules #diagram:rules
127 reference/grammar :token #diagram:token
128 reference/grammar ` '`' testlist1 '`'
129 reference/lexical_analysis :fileencoding # vim:fileencoding=<encoding-name>
130 reference/lexical_analysis ` , : . ` = ;
131 tutorial/datastructures :value key:value pairs within the braces adds initial key:value pairs
132 tutorial/datastructures :value It is also possible to delete a key:value
133 tutorial/stdlib2 :start fields = struct.unpack('<IIIHH', data[start:start+16])
134 tutorial/stdlib2 :start extra = data[start:start+extra_size]
135 tutorial/stdlib2 :start filename = data[start:start+filenamesize]
136 tutorial/stdlib2 :config logging.warning('Warning:config file %s not found', 'server.conf')
137 tutorial/stdlib2 :config WARNING:root:Warning:config file server.conf not found
138 tutorial/stdlib2 :Critical CRITICAL:root:Critical error -- shutting down
139 tutorial/stdlib2 :Error ERROR:root:Error occurred
140 tutorial/stdlib2 :root CRITICAL:root:Critical error -- shutting down
141 tutorial/stdlib2 :root ERROR:root:Error occurred
142 tutorial/stdlib2 :root WARNING:root:Warning:config file server.conf not found
143 tutorial/stdlib2 :Warning WARNING:root:Warning:config file server.conf not found
144 using/cmdline :line file:line: category: message
145 using/cmdline :category action:message:category:module:line
146 using/cmdline :line action:message:category:module:line
147 using/cmdline :message action:message:category:module:line
148 using/cmdline :module action:message:category:module:line
149 using/cmdline :errorhandler :errorhandler
150 using/windows 162 ` `` this fixes syntax highlighting errors in some editors due to the \\\\ hackery
151 using/windows 170 ` ``
152 whatsnew/2.0 418 :len
153 whatsnew/2.3 ::
154 whatsnew/2.3 :config
155 whatsnew/2.3 :Critical
156 whatsnew/2.3 :Error
157 whatsnew/2.3 :Problem
158 whatsnew/2.3 :root
159 whatsnew/2.3 :Warning
160 whatsnew/2.4 ::
161 whatsnew/2.4 :System
162 whatsnew/2.5 :memory :memory:
163 whatsnew/2.5 :step [start:stop:step]
164 whatsnew/2.5 :stop [start:stop:step]

View File

@ -0,0 +1,237 @@
"""
Try to detect suspicious constructs, resembling markup
that has leaked into the final output.
Suspicious lines are reported in a comma-separated-file,
``suspicious.csv``, located in the output directory.
The file is utf-8 encoded, and each line contains four fields:
* document name (normalized)
* line number in the source document
* problematic text
* complete line showing the problematic text in context
It is common to find many false positives. To avoid reporting them
again and again, they may be added to the ``ignored.csv`` file
(located in the configuration directory). The file has the same
format as ``suspicious.csv`` with a few differences:
- each line defines a rule; if the rule matches, the issue
is ignored.
- line number may be empty (that is, nothing between the
commas: ",,"). In this case, line numbers are ignored (the
rule matches anywhere in the file).
- the last field does not have to be a complete line; some
surrounding text (never more than a line) is enough for
context.
Rules are processed sequentially. A rule matches when:
* document names are the same
* problematic texts are the same
* line numbers are close to each other (5 lines up or down)
* the rule text is completely contained into the source line
The simplest way to create the ignored.csv file is by copying
undesired entries from suspicious.csv (possibly trimming the last
field.)
Copyright 2009 Gabriel A. Genellina
"""
import os, sys
import csv
import re
from docutils import nodes
from sphinx.builders import Builder
detect_all = re.compile(ur'''
::(?=[^=])| # two :: (but NOT ::=)
:[a-zA-Z][a-zA-Z0-9]+| # :foo
`| # ` (seldom used by itself)
(?<!\.)\.\.[ \t]*\w+: # .. foo: (but NOT ... else:)
''', re.UNICODE | re.VERBOSE).finditer
class Rule:
def __init__(self, docname, lineno, issue, line):
"A rule for ignoring issues"
self.docname = docname # document to which this rule applies
self.lineno = lineno # line number in the original source;
# this rule matches only near that.
# None -> don't care
self.issue = issue # the markup fragment that triggered this rule
self.line = line # text of the container element (single line only)
class CheckSuspiciousMarkupBuilder(Builder):
"""
Checks for possibly invalid markup that may leak into the output
"""
name = 'suspicious'
def init(self):
# create output file
self.log_file_name = os.path.join(self.outdir, 'suspicious.csv')
open(self.log_file_name, 'w').close()
# load database of previously ignored issues
self.load_rules(os.path.join(os.path.dirname(__file__), 'susp-ignored.csv'))
def get_outdated_docs(self):
return self.env.found_docs
def get_target_uri(self, docname, typ=None):
return ''
def prepare_writing(self, docnames):
### PYTHON PROJECT SPECIFIC ###
for name in set(docnames):
if name.split('/', 1)[0] == 'documenting':
docnames.remove(name)
### PYTHON PROJECT SPECIFIC ###
def write_doc(self, docname, doctree):
self.any_issue = False # set when any issue is encountered in this document
self.docname = docname
visitor = SuspiciousVisitor(doctree, self)
doctree.walk(visitor)
def finish(self):
return
def check_issue(self, line, lineno, issue):
if not self.is_ignored(line, lineno, issue):
self.report_issue(line, lineno, issue)
def is_ignored(self, line, lineno, issue):
"""Determine whether this issue should be ignored.
"""
docname = self.docname
for rule in self.rules:
if rule.docname != docname: continue
if rule.issue != issue: continue
# Both lines must match *exactly*. This is rather strict,
# and probably should be improved.
# Doing fuzzy matches with levenshtein distance could work,
# but that means bringing other libraries...
# Ok, relax that requirement: just check if the rule fragment
# is contained in the document line
if rule.line not in line: continue
# Check both line numbers. If they're "near"
# this rule matches. (lineno=None means "don't care")
if (rule.lineno is not None) and \
abs(rule.lineno - lineno) > 5: continue
# if it came this far, the rule matched
return True
return False
def report_issue(self, text, lineno, issue):
if not self.any_issue: self.info()
self.any_issue = True
self.write_log_entry(lineno, issue, text)
self.warn('[%s:%d] "%s" found in "%-.120s"' % (
self.docname.encode(sys.getdefaultencoding(),'replace'),
lineno,
issue.encode(sys.getdefaultencoding(),'replace'),
text.strip().encode(sys.getdefaultencoding(),'replace')))
self.app.statuscode = 1
def write_log_entry(self, lineno, issue, text):
f = open(self.log_file_name, 'ab')
writer = csv.writer(f)
writer.writerow([self.docname.encode('utf-8'),
lineno,
issue.encode('utf-8'),
text.strip().encode('utf-8')])
del writer
f.close()
def load_rules(self, filename):
"""Load database of previously ignored issues.
A csv file, with exactly the same format as suspicious.csv
Fields: document name (normalized), line number, issue, surrounding text
"""
self.info("loading ignore rules... ", nonl=1)
self.rules = rules = []
try: f = open(filename, 'rb')
except IOError: return
for i, row in enumerate(csv.reader(f)):
if len(row) != 4:
raise ValueError, "wrong format in %s, line %d: %s" % (filename, i+1, row)
docname, lineno, issue, text = row
docname = docname.decode('utf-8')
if lineno: lineno = int(lineno)
else: lineno = None
issue = issue.decode('utf-8')
text = text.decode('utf-8')
rule = Rule(docname, lineno, issue, text)
rules.append(rule)
f.close()
self.info('done, %d rules loaded' % len(self.rules))
def get_lineno(node):
"Obtain line number information for a node"
lineno = None
while lineno is None and node:
node = node.parent
lineno = node.line
return lineno
def extract_line(text, index):
"""text may be a multiline string; extract
only the line containing the given character index.
>>> extract_line("abc\ndefgh\ni", 6)
>>> 'defgh'
>>> for i in (0, 2, 3, 4, 10):
... print extract_line("abc\ndefgh\ni", i)
abc
abc
abc
defgh
defgh
i
"""
p = text.rfind('\n', 0, index) + 1
q = text.find('\n', index)
if q<0: q = len(text)
return text[p:q]
class SuspiciousVisitor(nodes.GenericNodeVisitor):
lastlineno = 0
def __init__(self, document, builder):
nodes.GenericNodeVisitor.__init__(self, document)
self.builder = builder
def default_visit(self, node):
if isinstance(node, (nodes.Text, nodes.image)): # direct text containers
text = node.astext()
# lineno seems to go backwards sometimes (?)
self.lastlineno = lineno = max(get_lineno(node) or 0, self.lastlineno)
seen = set() # don't report the same issue more than only once per line
for match in detect_all(text):
#import pdb; pdb.set_trace()
issue = match.group()
line = extract_line(text, match.start())
if (issue, line) not in seen:
self.builder.check_issue(line, lineno, issue)
seen.add((issue, line))
unknown_visit = default_visit
def visit_document(self, node):
self.lastlineno = 0
def visit_comment(self, node):
# ignore comments -- too much false positives.
# (although doing this could miss some errors;
# there were two sections "commented-out" by mistake
# in the Python docs that would not be catched)
raise nodes.SkipNode

View File

@ -3213,6 +3213,9 @@ that may require changes to your code:
set ``__hash__ = None`` in their definitions to indicate set ``__hash__ = None`` in their definitions to indicate
the fact. the fact.
* String exceptions have been removed. Attempting to use them raises a
:exc:`TypeError`.
* The :meth:`__init__` method of :class:`collections.deque` * The :meth:`__init__` method of :class:`collections.deque`
now clears any existing contents of the deque now clears any existing contents of the deque
before adding elements from the iterable. This change makes the before adding elements from the iterable. This change makes the

View File

@ -25,7 +25,6 @@ MAPPING = {'StringIO': 'io',
'tkFont': 'tkinter.font', 'tkFont': 'tkinter.font',
'tkMessageBox': 'tkinter.messagebox', 'tkMessageBox': 'tkinter.messagebox',
'ScrolledText': 'tkinter.scrolledtext', 'ScrolledText': 'tkinter.scrolledtext',
'turtle': 'tkinter.turtle',
'Tkconstants': 'tkinter.constants', 'Tkconstants': 'tkinter.constants',
'Tix': 'tkinter.tix', 'Tix': 'tkinter.tix',
'Tkinter': 'tkinter', 'Tkinter': 'tkinter',
@ -89,6 +88,10 @@ class FixImports(fixer_base.BaseFix):
# This is overridden in fix_imports2. # This is overridden in fix_imports2.
mapping = MAPPING mapping = MAPPING
# We want to run this fixer late, so fix_import doesn't try to make stdlib
# renames into relative imports.
run_order = 6
def build_pattern(self): def build_pattern(self):
return "|".join(build_pattern(self.mapping)) return "|".join(build_pattern(self.mapping))

View File

@ -11,6 +11,6 @@ MAPPING = {
class FixImports2(fix_imports.FixImports): class FixImports2(fix_imports.FixImports):
run_order = 6 run_order = 7
mapping = MAPPING mapping = MAPPING

View File

@ -15,7 +15,10 @@ MAPPING = {'urllib': [
'_urlopener', 'urlcleanup']), '_urlopener', 'urlcleanup']),
('urllib.parse', ('urllib.parse',
['quote', 'quote_plus', 'unquote', 'unquote_plus', ['quote', 'quote_plus', 'unquote', 'unquote_plus',
'urlencode', 'pahtname2url', 'url2pathname']), 'urlencode', 'pathname2url', 'url2pathname', 'splitattr',
'splithost', 'splitnport', 'splitpasswd', 'splitport',
'splitquery', 'splittag', 'splittype', 'splituser',
'splitvalue', ]),
('urllib.error', ('urllib.error',
['ContentTooShortError'])], ['ContentTooShortError'])],
'urllib2' : [ 'urllib2' : [
@ -34,12 +37,12 @@ MAPPING = {'urllib': [
'FTPHandler', 'CacheFTPHandler', 'FTPHandler', 'CacheFTPHandler',
'UnknownHandler']), 'UnknownHandler']),
('urllib.error', ('urllib.error',
['URLError', 'HTTPError'])], ['URLError', 'HTTPError']),
]
} }
# Duplicate the url parsing functions for urllib2.
# def alternates(members): MAPPING["urllib2"].append(MAPPING["urllib"][1])
# return "(" + "|".join(map(repr, members)) + ")"
def build_pattern(): def build_pattern():

View File

@ -77,7 +77,8 @@ class Driver(object):
column = 0 column = 0
else: else:
# We never broke out -- EOF is too soon (how can this happen???) # We never broke out -- EOF is too soon (how can this happen???)
raise parse.ParseError("incomplete input", t, v, x) raise parse.ParseError("incomplete input",
type, value, (prefix, start))
return p.rootnode return p.rootnode
def parse_stream_raw(self, stream, debug=False): def parse_stream_raw(self, stream, debug=False):