[issue14749] Add 'Z' to skipitem() in Python/getargs.c

2012-05-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: No test? -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue14749] Add 'Z' to skipitem() in Python/getargs.c

2012-05-08 Thread Larry Hastings
Changes by Larry Hastings : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue14749] Add 'Z' to skipitem() in Python/getargs.c

2012-05-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset b32baa5b7626 by Larry Hastings in branch 'default': Merge from 3.2. Issue #14749: Add support for 'Z' to skipitem(). http://hg.python.org/cpython/rev/b32baa5b7626 -- ___ Python tracker

[issue14749] Add 'Z' to skipitem() in Python/getargs.c

2012-05-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 91612618985b by Larry Hastings in branch '3.2': Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c. http://hg.python.org/cpython/rev/91612618985b -- nosy: +python-dev ___ Python tracker

[issue14749] Add 'Z' to skipitem() in Python/getargs.c

2012-05-08 Thread Georg Brandl
Georg Brandl added the comment: Sound good. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue14749] Add 'Z' to skipitem() in Python/getargs.c

2012-05-08 Thread Larry Hastings
New submission from Larry Hastings : skipitem() (in Python/getargs.c) has to be taught about all the "format units" understood by PyArg_Parse. There's a note at the top of the format-unit-understanding code saying When you add new format codes, please don't forget poor skipitem() below.