This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients asolano, docs@python, eli.bendersky, ezio.melotti, ned.deily, roger.serwy
Date 2013-04-21.00:58:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1366505934.13.0.336457431425.issue17670@psf.upfronthosting.co.za>
In-reply-to
Content
Another round based on comments.  I also just noticed that the current doc incorrectly claims that tabs are replaced by *zero* or more spaces.


   Return a copy of the string where all tab characters are replaced by one or
   more spaces, depending on the current column and the given tab size.  Tab
   positions occur every *tabsize* characters (default is 8, giving tab
   positions at columns 0, 8, 16 and so on).  To expand the string, the current
   column is set to zero and the string is examined character by character.  If
   the character is a tab (``\t``), one or more space characters are inserted
   in the result until the current column is equal to the next tab position.
   (The tab character itself is not copied.)  If the character is a newline
   (``\n``) or return (``\r``), it is copied and the current column is reset to
   zero.  Any other character is copied unchanged and the current column is
   incremented by one regardless of how the character is represented when
   printed.

      >>> '01\t012\t0123\t01234'.expandtabs()
      '01      012     0123    01234'
      >>> '01\t012\t0123\t01234'.expandtabs(4)
      '01  012 0123    01234'
History
Date User Action Args
2013-04-21 00:58:54ned.deilysetrecipients: + ned.deily, ezio.melotti, roger.serwy, eli.bendersky, docs@python, asolano
2013-04-21 00:58:54ned.deilysetmessageid: <1366505934.13.0.336457431425.issue17670@psf.upfronthosting.co.za>
2013-04-21 00:58:54ned.deilylinkissue17670 messages
2013-04-21 00:58:53ned.deilycreate