From: Raymond Hettinger Date: Sun, 7 Dec 2008 01:27:31 +0000 (+0000) Subject: Fix typo in whatsnew3.0 X-Git-Tag: v3.0.1~258 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d79f58061ee99f0afdc7d74b82cf37f6b65600b;p=thirdparty%2FPython%2Fcpython.git Fix typo in whatsnew3.0 --- diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index b6ffa3618797..457fce0110c5 100644 --- a/Doc/whatsnew/3.0.rst +++ b/Doc/whatsnew/3.0.rst @@ -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 --------------