diff options
author | Georg Brandl <georg@python.org> | 2008-06-04 13:01:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-04 13:01:30 (GMT) |
commit | a26f8ca668d09eff8ab03ef3d1cddb9bfbc6d124 (patch) | |
tree | 4b3704507702b98e0ce4107403a72093a5d6b9fc /Doc/library/functions.rst | |
parent | f954c4b9fb8529cc13a2e24c58137c66ac836b28 (diff) | |
download | cpython-a26f8ca668d09eff8ab03ef3d1cddb9bfbc6d124.zip cpython-a26f8ca668d09eff8ab03ef3d1cddb9bfbc6d124.tar.gz cpython-a26f8ca668d09eff8ab03ef3d1cddb9bfbc6d124.tar.bz2 |
Revert r63934 -- it was mixing two patches.
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index a3c456c..875eea0 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -91,14 +91,6 @@ are always available. They are listed here in alphabetical order. return False -.. function:: ascii(object) - - As :func:`repr`, return a string containing a printable - representation of an object. But unlike :func:`repr`, the non-ASCII - characters in the string returned by :func:`ascii`() are hex-escaped - to generate a same string as :func:`repr` in Python 2. - - .. function:: bin(x) Convert an integer number to a binary string. The result is a valid Python |