summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.0.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-12-04 18:19:41 (GMT)
committerGeorg Brandl <georg@python.org>2008-12-04 18:19:41 (GMT)
commita2361d908ec19e6212d81f8e6ef01322d3086c90 (patch)
tree0f5af8503945f4f2e540f089bdfcc6a862de4337 /Doc/whatsnew/3.0.rst
parentb159008a54a2daf1ca18d1c391221e8a7150688e (diff)
downloadcpython-a2361d908ec19e6212d81f8e6ef01322d3086c90.zip
cpython-a2361d908ec19e6212d81f8e6ef01322d3086c90.tar.gz
cpython-a2361d908ec19e6212d81f8e6ef01322d3086c90.tar.bz2
#4526: fix typo.
Diffstat (limited to 'Doc/whatsnew/3.0.rst')
-rw-r--r--Doc/whatsnew/3.0.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst
index b6ffa36..3b0964c 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
--------------