diff options
author | Fred Drake <fdrake@acm.org> | 2001-05-14 16:04:22 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-05-14 16:04:22 (GMT) |
commit | b3384d355567acc981c21c94cfce947317e5f8b4 (patch) | |
tree | 5f99fea09fbe3c457f467e954a8667ac0701bdb9 /Doc/ref | |
parent | 6db483e67935817908d286e230ac2b31d9039c59 (diff) | |
download | cpython-b3384d355567acc981c21c94cfce947317e5f8b4.zip cpython-b3384d355567acc981c21c94cfce947317e5f8b4.tar.gz cpython-b3384d355567acc981c21c94cfce947317e5f8b4.tar.bz2 |
Make sure we include all of Python's numeric types in the data model
description, so that the introduction of complex is not a surprise.
This closes SF bug #423429.
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref3.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index adb619a..984f76d 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -159,7 +159,8 @@ numbers are of course strongly related to mathematical numbers, but subject to the limitations of numerical representation in computers. \obindex{numeric} -Python distinguishes between integers and floating point numbers: +Python distinguishes between integers, floating point numbers, and +complex numbers: \begin{description} \item[Integers] |