[Python-checkins] r67626 - python/branches/release30-maint/Doc/whatsnew/3.0.rst

raymond.hettinger python-checkins at python.org
Sun Dec 7 02:27:32 CET 2008


Author: raymond.hettinger
Date: Sun Dec  7 02:27:31 2008
New Revision: 67626

Log:
Fix typo in whatsnew3.0

Modified:
   python/branches/release30-maint/Doc/whatsnew/3.0.rst

Modified: python/branches/release30-maint/Doc/whatsnew/3.0.rst
==============================================================================
--- python/branches/release30-maint/Doc/whatsnew/3.0.rst	(original)
+++ python/branches/release30-maint/Doc/whatsnew/3.0.rst	Sun Dec  7 02:27:31 2008
@@ -383,10 +383,11 @@
 * New octal literals, e.g. ``0o720`` (already in 2.6).  The old octal
   literals (``0720``) are gone.
 
-* New binary literals, e.g. ``0b1010`` (already in 2.6).
+* New binary literals, e.g. ``0b1010`` (already in 2.6) and a new
+  corresponding builtin function, :func:`bin`.
 
 * Bytes literals are introduced with a leading ``b`` or ``B``, and
-  there is a new corresponding builtin function, :func:`bin`.
+  there is a new corresponding builtin function, :func:`bytes`.
 
 Changed Syntax
 --------------


More information about the Python-checkins mailing list