[issue19238] Misleading explanation of fill and align in format_spec

2013-11-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2b0690c9a026 by Ezio Melotti in branch '2.7': #19238: fix typo in documentation. http://hg.python.org/cpython/rev/2b0690c9a026 New changeset 7e3f8026ed30 by Ezio Melotti in branch '3.3': #19238: fix typo in documentation. http://hg.python.org/cpytho

[issue19238] Misleading explanation of fill and align in format_spec

2013-11-16 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for noticing! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19238] Misleading explanation of fill and align in format_spec

2013-11-10 Thread David Chambers
David Chambers added the comment: These commits contain a typo: s/preceeded/preceded/ -- ___ Python tracker ___ ___ Python-bugs-list m

[issue19238] Misleading explanation of fill and align in format_spec

2013-10-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset e3ff2065c548 by Ezio Melotti in branch '3.3': #19238, #19289: fix description of the align and fill values of the format specification. http://hg.python.org/cpython/rev/e3ff2065c548 New changeset f52892642c15 by Ezio Melotti in branch 'default': #1

[issue19238] Misleading explanation of fill and align in format_spec

2013-10-20 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the review! -- assignee: docs@python -> ezio.melotti resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue19238] Misleading explanation of fill and align in format_spec

2013-10-20 Thread Eric V. Smith
Eric V. Smith added the comment: Looks good to me. Thanks! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue19238] Misleading explanation of fill and align in format_spec

2013-10-20 Thread Ezio Melotti
Ezio Melotti added the comment: Here's a patch. This also include a fix for #19289. -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file32266/issue19238.diff ___ Python tracker _

[issue19238] Misleading explanation of fill and align in format_spec

2013-10-18 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue19238] Misleading explanation of fill and align in format_spec

2013-10-18 Thread Eric V. Smith
Eric V. Smith added the comment: See also issue 19289. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue19238] Misleading explanation of fill and align in format_spec

2013-10-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy versions: +Python 2.7, Python 3.3, Python 3.4 ___ Python tracker ___ ___ Python-bugs

[issue19238] Misleading explanation of fill and align in format_spec

2013-10-12 Thread Ned Deily
Changes by Ned Deily : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue19238] Misleading explanation of fill and align in format_spec

2013-10-12 Thread David Chambers
New submission from David Chambers: >From http://docs.python.org/3/library/string.html#formatspec: > The presence of a fill character is signaled by the character > following it, which must be one of the alignment options. If the > second character of format_spec is not a valid alignment option,