diff options
author | Georg Brandl <georg@python.org> | 2007-11-29 17:24:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-11-29 17:24:34 (GMT) |
commit | ba956aebb96c38f1b8818189ed6ab18d5441313a (patch) | |
tree | 8cd8aba4cf4559f7e8e2086ea9ad05b4be91187f /Doc/using/cmdline.rst | |
parent | 0db38532b304c89a998e4fc53b3ac8cd7ff23a8a (diff) | |
download | cpython-ba956aebb96c38f1b8818189ed6ab18d5441313a.zip cpython-ba956aebb96c38f1b8818189ed6ab18d5441313a.tar.gz cpython-ba956aebb96c38f1b8818189ed6ab18d5441313a.tar.bz2 |
Remove mentions of "long integer" in the docs.
Credits to HappySmileMan from GHOP.
Diffstat (limited to 'Doc/using/cmdline.rst')
-rw-r--r-- | Doc/using/cmdline.rst | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 7ee9c04..18e6c68 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -171,13 +171,12 @@ Miscellaneous options Division control. The argument must be one of the following: - ``old`` - division of int/int and long/long return an int or long (*default*) ``new`` - new division semantics, i.e. division of int/int and long/long returns a - float + new division semantics, i.e. division of int/int returns a float (*default*) + ``old`` + division of int/int returns an int ``warn`` - old division semantics with a warning for int/int and long/long + old division semantics with a warning for int/int ``warnall`` old division semantics with a warning for all uses of the division operator |