[issue3822] zfill doc string uses inconsistent variable names

2008-09-09 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks, fixed in r66347. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3822] zfill doc string uses inconsistent variable names

2008-09-09 Thread Toby Donaldson
New submission from Toby Donaldson <[EMAIL PROTECTED]>: The doc string for zfill use the variable name "x" when it should probably be using the variable name "S". >>> print(''.zfill.__doc__) S.zfill(width) -> str Pad a numeric string x with zeros on the left, to fill a field of the specified wi