diff options
author | Georg Brandl <georg@python.org> | 2008-02-22 12:31:45 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-22 12:31:45 (GMT) |
commit | 907a720f894a7b267e15b3bb1ba39f2d8677c0fe (patch) | |
tree | 35117e67e538ba92d38b987683440fee89ad93cc /Doc/whatsnew | |
parent | a14a4e8b84093184fefc908b241523915893850d (diff) | |
download | cpython-907a720f894a7b267e15b3bb1ba39f2d8677c0fe.zip cpython-907a720f894a7b267e15b3bb1ba39f2d8677c0fe.tar.gz cpython-907a720f894a7b267e15b3bb1ba39f2d8677c0fe.tar.bz2 |
A lot more typo fixes by Ori Avtalion.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 8f31d40..3f89c03 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -560,7 +560,7 @@ doing ``isinstance(obj, Number)``. Numbers are further divided into :class:`Exact` and :class:`Inexact`. Exact numbers can represent values precisely and operations never round off the results or introduce tiny errors that may break the -communtativity and associativity properties; inexact numbers may +commutativity and associativity properties; inexact numbers may perform such rounding or introduce small errors. Integers, long integers, and rational numbers are exact, while floating-point and complex numbers are inexact. @@ -1395,7 +1395,7 @@ Changes to Python's build process and to the C API include: .. Issue 1534 * Python's C API now includes two functions for case-insensitive string - comparisions, ``PyOS_stricmp(char*, char*)`` + comparisons, ``PyOS_stricmp(char*, char*)`` and ``PyOS_strnicmp(char*, char*, Py_ssize_t)``. (Contributed by Christian Heimes.) |