[Python-checkins] cpython (3.3): Close #16665: improve documentation for hex(). Patch by Jessica McKellar.

antoine.pitrou python-checkins at python.org
Sun Mar 16 02:16:56 CET 2014


http://hg.python.org/cpython/rev/464c22bf9fe1
changeset:   89680:464c22bf9fe1
branch:      3.3
parent:      89677:014c2a62c168
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sun Mar 16 02:12:20 2014 +0100
summary:
  Close #16665: improve documentation for hex().  Patch by Jessica McKellar.

files:
  Doc/library/functions.rst |  16 +++++++++++++---
  1 files changed, 13 insertions(+), 3 deletions(-)


diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -608,9 +608,19 @@
 
 .. function:: hex(x)
 
-   Convert an integer number to a hexadecimal string. The result is a valid Python
-   expression.  If *x* is not a Python :class:`int` object, it has to define an
-   :meth:`__index__` method that returns an integer.
+   Convert an integer number to a lowercase hexadecimal string
+   prefixed with "0x", for example:
+
+      >>> hex(255)
+      '0xff'
+      >>> hex(-42)
+      '-0x2a'
+
+   If x is not a Python :class:`int` object, it has to define an __index__()
+   method that returns an integer.
+
+   See also :func:`int` for converting a hexadecimal string to an
+   integer using a base of 16.
 
    .. note::
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list