diff options
author | Georg Brandl <georg@python.org> | 2011-02-13 09:59:39 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-02-13 09:59:39 (GMT) |
commit | 829befb9e338013d7fb0b97965e991860622c2b6 (patch) | |
tree | a62eb4fa900aba880eef1cdbe746cf2178de8c4a /Doc/howto/pyporting.rst | |
parent | 3a780aaab4c2254729b1bf62890f164d9b2e44c8 (diff) | |
download | cpython-829befb9e338013d7fb0b97965e991860622c2b6.zip cpython-829befb9e338013d7fb0b97965e991860622c2b6.tar.gz cpython-829befb9e338013d7fb0b97965e991860622c2b6.tar.bz2 |
Fix markup error and update suspicious ignores.
Diffstat (limited to 'Doc/howto/pyporting.rst')
-rw-r--r-- | Doc/howto/pyporting.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst index fc08d18..fb595d0 100644 --- a/Doc/howto/pyporting.rst +++ b/Doc/howto/pyporting.rst @@ -557,11 +557,11 @@ For distutils, use the following idiom:: 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, # ... |