[Python-checkins] r88412 - in python/branches/py3k/Doc: howto/pyporting.rst tools/sphinxext/susp-ignored.csv

georg.brandl python-checkins at python.org
Sun Feb 13 10:59:39 CET 2011


Author: georg.brandl
Date: Sun Feb 13 10:59:39 2011
New Revision: 88412

Log:
Fix markup error and update suspicious ignores.

Modified:
   python/branches/py3k/Doc/howto/pyporting.rst
   python/branches/py3k/Doc/tools/sphinxext/susp-ignored.csv

Modified: python/branches/py3k/Doc/howto/pyporting.rst
==============================================================================
--- python/branches/py3k/Doc/howto/pyporting.rst	(original)
+++ python/branches/py3k/Doc/howto/pyporting.rst	Sun Feb 13 10:59:39 2011
@@ -557,11 +557,11 @@
    except ImportError:  # Python 2
      from distutils.command.build_py import build_py
 
-   setup(cmdclass = {'build_py':build_py},
+   setup(cmdclass = {'build_py': build_py},
      # ...
    )
 
-   For Distribute::
+For Distribute::
 
    setup(use_2to3=True,
      # ...

Modified: python/branches/py3k/Doc/tools/sphinxext/susp-ignored.csv
==============================================================================
--- python/branches/py3k/Doc/tools/sphinxext/susp-ignored.csv	(original)
+++ python/branches/py3k/Doc/tools/sphinxext/susp-ignored.csv	Sun Feb 13 10:59:39 2011
@@ -383,3 +383,20 @@
 whatsnew/3.2,2102,:affe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
 whatsnew/3.2,2102,:deaf,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
 whatsnew/3.2,2102,:feed,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
+howto/pyporting,75,::,# make sure to use :: Python *and* :: Python :: 3 so
+howto/pyporting,75,::,"'Programming Language :: Python',"
+howto/pyporting,75,::,'Programming Language :: Python :: 3'
+whatsnew/3.2,1419,:gz,">>> with tarfile.open(name='myarchive.tar.gz', mode='w:gz') as tf:"
+whatsnew/3.2,2135,:directory,${buildout:directory}/downloads/dist
+whatsnew/3.2,2135,:location,zope9-location = ${zope9:location}
+whatsnew/3.2,2135,:prefix,zope-conf = ${custom:prefix}/etc/zope.conf
+whatsnew/3.2,2178,:beef,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
+whatsnew/3.2,2178,:cafe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
+whatsnew/3.2,2178,:affe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
+whatsnew/3.2,2178,:deaf,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
+whatsnew/3.2,2178,:feed,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
+whatsnew/3.2,2178,:beef,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
+whatsnew/3.2,2178,:cafe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
+whatsnew/3.2,2178,:affe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
+whatsnew/3.2,2178,:deaf,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
+whatsnew/3.2,2178,:feed,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"


More information about the Python-checkins mailing list