From a2361d908ec19e6212d81f8e6ef01322d3086c90 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 4 Dec 2008 18:19:41 +0000 Subject: [PATCH] #4526: fix typo. --- Doc/whatsnew/3.0.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index b6ffa36187..3b0964cef1 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 + 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 -------------- -- 2.40.0