]> granicus.if.org Git - python/commitdiff
os module: remove nonbreaking space in a comment
authorVictor Stinner <victor.stinner@haypocalc.com>
Sun, 7 Nov 2010 15:43:39 +0000 (15:43 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Sun, 7 Nov 2010 15:43:39 +0000 (15:43 +0000)
Lib/os.py

index 5848d74461b302617f451b032e9db8233200f4aa..89fd1f3343c82e80d8160c8d37c4f30954c969ca 100644 (file)
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -390,8 +390,8 @@ def get_exec_path(env=None):
     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)