Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r84831:01cdc4bae6d5
Date: 2016-05-30 13:10 +0200
http://bitbucket.org/pypy/pypy/changeset/01cdc4bae6d5/

Log:    typo

diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py
--- a/pypy/interpreter/app_main.py
+++ b/pypy/interpreter/app_main.py
@@ -583,10 +583,10 @@
         if hasattr(signal, 'SIGXFSZ'):
             signal.signal(signal.SIGXFSZ, signal.SIG_IGN)
 
-    # Pre-load the default encoder (controlled by PYTHONIOENCODING)
-    # now.  This is needed before someone mucks up with sys.path (or
-    # even adds a unicode string to it, leading to infnite recursion).
-    # Note: very obscure.  Issue #2314.
+    # Pre-load the default encoder (controlled by PYTHONIOENCODING) now.
+    # This is needed before someone mucks up with sys.path (or even adds
+    # a unicode string to it, leading to infinite recursion when we try
+    # to encode it during importing).  Note: very obscure.  Issue #2314.
     str(u'')
 
     def inspect_requested():
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to