[Python-checkins] r86302 - python/branches/py3k/Lib/os.py

victor.stinner python-checkins at python.org
Sun Nov 7 16:43:39 CET 2010


Author: victor.stinner
Date: Sun Nov  7 16:43:39 2010
New Revision: 86302

Log:
os module: remove nonbreaking space in a comment


Modified:
   python/branches/py3k/Lib/os.py

Modified: python/branches/py3k/Lib/os.py
==============================================================================
--- python/branches/py3k/Lib/os.py	(original)
+++ python/branches/py3k/Lib/os.py	Sun Nov  7 16:43:39 2010
@@ -390,8 +390,8 @@
     if env is None:
         env = environ
 
-    # {b'PATH': ...}.get('PATH') and {'PATH': ...}.get(b'PATH') emit a
-    # BytesWarning when using python -b or python -bb: ignore the warning
+    # {b'PATH': ...}.get('PATH') and {'PATH': ...}.get(b'PATH') emit a
+    # BytesWarning when using python -b or python -bb: ignore the warning
     with warnings.catch_warnings():
         warnings.simplefilter("ignore", BytesWarning)
 


More information about the Python-checkins mailing list