[Python-checkins] r84189 - in python/branches/py3k/Doc: using/cmdline.rst whatsnew/3.2.rst

eric.araujo python-checkins at python.org
Thu Aug 19 00:35:23 CEST 2010


Author: eric.araujo
Date: Thu Aug 19 00:35:23 2010
New Revision: 84189

Log:
Fix typo


Modified:
   python/branches/py3k/Doc/using/cmdline.rst
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/using/cmdline.rst
==============================================================================
--- python/branches/py3k/Doc/using/cmdline.rst	(original)
+++ python/branches/py3k/Doc/using/cmdline.rst	Thu Aug 19 00:35:23 2010
@@ -444,7 +444,7 @@
 
 .. envvar:: PYTHONFSENCODING
 
-   If this is set before running the intepreter, it overrides the encoding used
+   If this is set before running the interpreter, it overrides the encoding used
    for the filesystem encoding (see :func:`sys.getfilesystemencoding`).
 
    .. versionadded:: 3.2
@@ -452,7 +452,7 @@
 
 .. envvar:: PYTHONIOENCODING
 
-   If this is set before running the intepreter, it overrides the encoding used
+   If this is set before running the interpreter, it overrides the encoding used
    for stdin/stdout/stderr, in the syntax ``encodingname:errorhandler``. The
    ``:errorhandler`` part is optional and has the same meaning as in
    :func:`str.encode`.

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Thu Aug 19 00:35:23 2010
@@ -241,7 +241,7 @@
 =======
 
 The filesystem encoding can be specified by setting the
-:envvar:`PYTHONFSENCODING` environment variable before running the intepreter.
+:envvar:`PYTHONFSENCODING` environment variable before running the interpreter.
 The value should be a string in the form ``<encoding>``, e.g. ``utf-8``.
 
 


More information about the Python-checkins mailing list