Commit 4dcf5025 authored by Éric Araujo's avatar Éric Araujo

Use universal construct os.path.expanduser('~') instead of os.environ['HOME']

parent ebbf1e67
...@@ -719,7 +719,7 @@ cookies (assumes Unix/Netscape convention for location of the cookies file):: ...@@ -719,7 +719,7 @@ cookies (assumes Unix/Netscape convention for location of the cookies file)::
import os, http.cookiejar, urllib.request import os, http.cookiejar, urllib.request
cj = http.cookiejar.MozillaCookieJar() cj = http.cookiejar.MozillaCookieJar()
cj.load(os.path.join(os.environ["HOME"], ".netscape/cookies.txt")) cj.load(os.path.join(os.path.expanduser("~"), ".netscape", "cookies.txt"))
opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj)) opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
r = opener.open("http://example.com/") r = opener.open("http://example.com/")
......
...@@ -197,7 +197,7 @@ normally be executed automatically during interactive sessions from the user's ...@@ -197,7 +197,7 @@ normally be executed automatically during interactive sessions from the user's
import os import os
import readline import readline
histfile = os.path.join(os.environ["HOME"], ".pyhist") histfile = os.path.join(os.path.expanduser("~"), ".pyhist")
try: try:
readline.read_history_file(histfile) readline.read_history_file(histfile)
except IOError: except IOError:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment