]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#4526: fix typo.
authorGeorg Brandl <georg@python.org>
Thu, 4 Dec 2008 18:19:41 +0000 (18:19 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 4 Dec 2008 18:19:41 +0000 (18:19 +0000)
Doc/whatsnew/3.0.rst

index b6ffa3618797fdad154d7c74da860fe65e20cbb8..3b0964cef106273ff94c713408a5174d45a07d2d 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
+  there is 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
 --------------