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 terry.reedy
Recipients terry.reedy
Date 2012-05-11.15:50:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336751413.58.0.519130225761.issue14783@psf.upfronthosting.co.za>
In-reply-to
Content
int.__doc__ starts "int(x[, base]) -> integer". That is not exactly correct as x is not required and base is only allowed if x is a string. The 3.3 manual fixes both problems with "int([number | string[, base]])"

I actually think the rest of the docstring might be replaced with the more accurate and informative manual entry. It might be condensed, but I am not sure what might be omitted.
History
Date User Action Args
2012-05-11 15:50:13terry.reedysetrecipients: + terry.reedy
2012-05-11 15:50:13terry.reedysetmessageid: <1336751413.58.0.519130225761.issue14783@psf.upfronthosting.co.za>
2012-05-11 15:50:12terry.reedylinkissue14783 messages
2012-05-11 15:50:12terry.reedycreate