diff options
author | Georg Brandl <georg@python.org> | 2008-05-11 14:30:18 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-11 14:30:18 (GMT) |
commit | 95817b36f0310f21fa2ec4099db72596b3442c13 (patch) | |
tree | ef148aec01d7bd43ba57875cce9620d8a8fd7d73 /Doc/reference/lexical_analysis.rst | |
parent | 6e6dcb5719cd3fec7a917e3d7954247305d8e50d (diff) | |
download | cpython-95817b36f0310f21fa2ec4099db72596b3442c13.zip cpython-95817b36f0310f21fa2ec4099db72596b3442c13.tar.gz cpython-95817b36f0310f21fa2ec4099db72596b3442c13.tar.bz2 |
Remove mentions of "plain" integers.
Diffstat (limited to 'Doc/reference/lexical_analysis.rst')
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 5748b9e..fdb5f99 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -565,9 +565,9 @@ Numeric literals floating point literal, hexadecimal literal octal literal, binary literal, decimal literal, imaginary literal, complex literal -There are three types of numeric literals: plain integers, floating point -numbers, and imaginary numbers. There are no complex literals -(complex numbers can be formed by adding a real number and an imaginary number). +There are three types of numeric literals: integers, floating point numbers, and +imaginary numbers. There are no complex literals (complex numbers can be formed +by adding a real number and an imaginary number). Note that numeric literals do not include a sign; a phrase like ``-1`` is actually an expression composed of the unary operator '``-``' and the literal |