summaryrefslogtreecommitdiffstats
path: root/Objects/intobject.c
diff options
context:
space:
mode:
authorGustavo Niemeyer <gustavo@niemeyer.net>2007-01-10 16:15:48 (GMT)
committerGustavo Niemeyer <gustavo@niemeyer.net>2007-01-10 16:15:48 (GMT)
commit37e6502c252f654ef30295e3b685f4bfaf006be5 (patch)
tree6c2e764440919a961f915c95d028cb91be076fa9 /Objects/intobject.c
parenta443bc8ec789b2818a820a49cbdab7e1369baeb5 (diff)
downloadcpython-37e6502c252f654ef30295e3b685f4bfaf006be5.zip
cpython-37e6502c252f654ef30295e3b685f4bfaf006be5.tar.gz
cpython-37e6502c252f654ef30295e3b685f4bfaf006be5.tar.bz2
Minor change in int() docstring for proper spacing.
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r--Objects/intobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c
index dedc477..f504af7 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -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.");