Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
196f733d
Kaydet (Commit)
196f733d
authored
Eki 04, 2005
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix pychecker warnings
üst
389482cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
webbrowser.py
Lib/webbrowser.py
+9
-4
No files found.
Lib/webbrowser.py
Dosyayı görüntüle @
196f733d
...
...
@@ -134,6 +134,9 @@ class BaseBrowser(object):
def
__init__
(
self
,
name
=
""
):
self
.
name
=
name
def
open
(
self
,
url
,
new
=
0
,
autoraise
=
1
):
raise
NotImplementedError
def
open_new
(
self
,
url
):
return
self
.
open
(
url
,
1
)
...
...
@@ -171,7 +174,7 @@ class UnixBrowser(BaseBrowser):
raise_opt
=
self
.
raise_opts
and
self
.
raise_opts
[
autoraise
]
or
''
cmd
=
"
%
s
%
s
%
s '
%
s' >/dev/null 2>&1"
%
(
self
.
name
,
raise_opt
,
self
.
remote_cmd
,
action
)
if
remote_background
:
if
self
.
remote_background
:
cmd
+=
' &'
rc
=
os
.
system
(
cmd
)
if
rc
:
...
...
@@ -333,9 +336,7 @@ class Grail(BaseBrowser):
# These are the right tests because all these Unix browsers require either
# a console terminal or an X display to run.
# Prefer X browsers if present
if
os
.
environ
.
get
(
"DISPLAY"
):
def
register_X_browsers
():
# First, the Mozilla/Netscape browsers
for
browser
in
(
"mozilla-firefox"
,
"firefox"
,
"mozilla-firebird"
,
"firebird"
,
...
...
@@ -381,6 +382,10 @@ if os.environ.get("DISPLAY"):
if
_iscommand
(
"grail"
):
register
(
"grail"
,
Grail
,
None
)
# Prefer X browsers if present
if
os
.
environ
.
get
(
"DISPLAY"
):
register_X_browsers
()
# Also try console browsers
if
os
.
environ
.
get
(
"TERM"
):
# The Links/elinks browsers <http://artax.karlin.mff.cuni.cz/~mikulas/links/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment