Merged revisions 68221 via svnmerge from

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

........
  r68221 | georg.brandl | 2009-01-03 22:04:55 +0100 (Sat, 03 Jan 2009) | 2 lines

  Remove tabs from the documentation.
........
This commit is contained in:
Georg Brandl 2009-01-03 21:26:05 +00:00
parent 48310cd3f2
commit a1c6a1cea5
18 changed files with 148 additions and 152 deletions

View file

@ -553,8 +553,7 @@ translation until later. A classic example is::
'albatross',
'rat',
'penguin',
'python',
]
'python', ]
# ...
for a in animals:
print(a)
@ -571,8 +570,7 @@ Here is one way you can handle this situation::
_('albatross'),
_('rat'),
_('penguin'),
_('python'),
]
_('python'), ]
del _
@ -597,8 +595,7 @@ Another way to handle this is with the following example::
N_('albatross'),
N_('rat'),
N_('penguin'),
N_('python'),
]
N_('python'), ]
# ...
for a in animals:

View file

@ -857,8 +857,7 @@ the PyXML package::
'extensions/expat/xmlparse' ],
sources = [ 'extensions/pyexpat.c',
'extensions/expat/xmltok/xmltok.c',
'extensions/expat/xmltok/xmlrole.c',
]
'extensions/expat/xmltok/xmlrole.c', ]
)
setup (name = "PyXML", version = "0.5.4",
ext_modules =[ expat_extension ] )