Discussion:
[Python-3000-checkins] r67526 - python/branches/py3k/Doc/whatsnew/3.0.rst
georg.brandl
2008-12-04 18:19:42 UTC
Permalink
Author: georg.brandl
Date: Thu Dec 4 19:19:41 2008
New Revision: 67526

Log:
#4526: fix typo.


Modified:
python/branches/py3k/Doc/whatsnew/3.0.rst

Modified: python/branches/py3k/Doc/whatsnew/3.0.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.0.rst (original)
+++ python/branches/py3k/Doc/whatsnew/3.0.rst Thu Dec 4 19:19:41 2008
@@ -383,10 +383,11 @@
* 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
--------------

Loading...