Discussion:
[Python-3000-checkins] r65191 - python/branches/py3k/Doc/whatsnew/3.0.rst
raymond.hettinger
2008-07-22 19:27:12 UTC
Permalink
Author: raymond.hettinger
Date: Tue Jul 22 21:27:12 2008
New Revision: 65191

Log:
Fix spelling.

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 Tue Jul 22 21:27:12 2008
@@ -118,7 +118,7 @@
``print(x)`` instead!

* When using the ``2to3`` source-to-source conversion tool, all
- ``print`` statements are autmatically converted to :func:`print`
+ ``print`` statements are automatically converted to :func:`print`
function calls, so this is mostly a non-issue for larger projects.

* Python 3.0 uses strings and bytes instead of the Unicode strings and
@@ -159,7 +159,7 @@
implementation are like :class:`unicode` in 2.x.

* The :class:`basestring` superclass has been removed. The ``2to3`` tool
- replaces every occurence of :class:`basestring` with :class:`str`.
+ replaces every occurrence of :class:`basestring` with :class:`str`.

* PEP 3137: There is a new type, :class:`bytes`, to represent binary data (and
encoded text, which is treated as binary data until you decide to decode it).
Loading...