Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a837aa6 commit bb4f218Copy full SHA for bb4f218
1 file changed
Lib/os.py
@@ -390,8 +390,8 @@ def get_exec_path(env=None):
390
if env is None:
391
env = environ
392
393
- # {b'PATH': ...}.get('PATH') and {'PATH': ...}.get(b'PATH') emit a
394
- # 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
395
with warnings.catch_warnings():
396
warnings.simplefilter("ignore", BytesWarning)
397
0 commit comments