[Python-checkins] r67627 - python/branches/release30-maint/Doc/library/functions.rst

raymond.hettinger python-checkins at python.org
Sun Dec 7 02:48:34 CET 2008


Author: raymond.hettinger
Date: Sun Dec  7 02:48:34 2008
New Revision: 67627

Log:
Issue 1717: Finish de-documenting cmp(). Removal to follow.

Modified:
   python/branches/release30-maint/Doc/library/functions.rst

Modified: python/branches/release30-maint/Doc/library/functions.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/functions.rst	(original)
+++ python/branches/release30-maint/Doc/library/functions.rst	Sun Dec  7 02:48:34 2008
@@ -190,13 +190,6 @@
    type hierarchy in :ref:`types`.
 
 
-.. function:: cmp(x, y)
-
-   Compare the two objects *x* and *y* and return an integer according to the
-   outcome.  The return value is negative if ``x < y``, zero if ``x == y`` and
-   strictly positive if ``x > y``.
-
-
 .. function:: compile(source, filename, mode[, flags[, dont_inherit]])
 
    Compile the *source* into a code or AST object.  Code objects can be executed


More information about the Python-checkins mailing list