]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Minor change in int() docstring for proper spacing.
authorGustavo Niemeyer <gustavo@niemeyer.net>
Wed, 10 Jan 2007 16:15:48 +0000 (16:15 +0000)
committerGustavo Niemeyer <gustavo@niemeyer.net>
Wed, 10 Jan 2007 16:15:48 +0000 (16:15 +0000)
Objects/intobject.c

index dedc4776baf8e65052d91c448ae5666ce46d84a6..f504af7a4ed50105cbe2993c3eb4ad381ba2bb9f 100644 (file)
@@ -1070,7 +1070,7 @@ Convert a string or number to an integer, if possible.  A floating point\n\
 argument will be truncated towards zero (this does not include a string\n\
 representation of a floating point number!)  When converting a string, use\n\
 the optional base.  It is an error to supply a base when converting a\n\
-non-string. If base is zero, the proper base is guessed based on the\n\
+non-string.  If base is zero, the proper base is guessed based on the\n\
 string content.  If the argument is outside the integer range a\n\
 long object will be returned instead.");