[Python-checkins] r67602 - in python/branches/release30-maint: Lib/webbrowser.py
amaury.forgeotdarc
python-checkins at python.org
Fri Dec 5 23:20:38 CET 2008
Author: amaury.forgeotdarc
Date: Fri Dec 5 23:20:38 2008
New Revision: 67602
Log:
Merged revisions 67544 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r67544 | fred.drake | 2008年12月05日 03:47:42 +0100 (ven., 05 déc. 2008) | 2 lines
add missing import
........
Modified:
python/branches/release30-maint/ (props changed)
python/branches/release30-maint/Lib/webbrowser.py
Modified: python/branches/release30-maint/Lib/webbrowser.py
==============================================================================
--- python/branches/release30-maint/Lib/webbrowser.py (original)
+++ python/branches/release30-maint/Lib/webbrowser.py Fri Dec 5 23:20:38 2008
@@ -223,6 +223,7 @@
cmdline = [self.name] + raise_opt + args
if remote or self.background:
+ import io
inout = io.open(os.devnull, "r+")
else:
# for TTY browsers, we need stdin/out
More information about the Python-checkins
mailing list