[Python-checkins] r61048 - in python/trunk: Misc/cheatsheet Modules/future_builtins.c

neal.norwitz python-checkins at python.org
Sun Feb 24 09:27:50 CET 2008


Author: neal.norwitz
Date: Sun Feb 24 09:27:49 2008
New Revision: 61048

Modified:
   python/trunk/Misc/cheatsheet
   python/trunk/Modules/future_builtins.c
Log:
Fix typo of hexidecimal

Modified: python/trunk/Misc/cheatsheet
==============================================================================
--- python/trunk/Misc/cheatsheet	(original)
+++ python/trunk/Misc/cheatsheet	Sun Feb 24 09:27:49 2008
@@ -565,8 +565,8 @@
 i          Signed integer decimal.
 o          Unsigned octal.
 u          Unsigned decimal.
-x          Unsigned hexidecimal (lowercase).
-X          Unsigned hexidecimal (uppercase).
+x          Unsigned hexadecimal (lowercase).
+X          Unsigned hexadecimal (uppercase).
 e          Floating point exponential format (lowercase).
 E          Floating point exponential format (uppercase).
 f          Floating point decimal format.

Modified: python/trunk/Modules/future_builtins.c
==============================================================================
--- python/trunk/Modules/future_builtins.c	(original)
+++ python/trunk/Modules/future_builtins.c	Sun Feb 24 09:27:49 2008
@@ -14,7 +14,7 @@
 \n\
 Functions:\n\
 \n\
-hex(arg) -- Returns the hexidecimal representation of an integer\n\
+hex(arg) -- Returns the hexadecimal representation of an integer\n\
 oct(arg) -- Returns the octal representation of an integer\n\
 \n\
 The typical usage of this module is to replace existing builtins in a\n\


More information about the Python-checkins mailing list