]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in whatsnew3.0
authorRaymond Hettinger <python@rcn.com>
Sun, 7 Dec 2008 01:27:31 +0000 (01:27 +0000)
committerRaymond Hettinger <python@rcn.com>
Sun, 7 Dec 2008 01:27:31 +0000 (01:27 +0000)
Doc/whatsnew/3.0.rst

index b6ffa3618797fdad154d7c74da860fe65e20cbb8..457fce0110c5c70e8294a872856e0456631f74fd 100644 (file)
@@ -383,10 +383,11 @@ New Syntax
 * 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
 --------------