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
2b2b44dc
Kaydet (Commit)
2b2b44dc
authored
May 12, 2008
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#Issue2835: Correct an infinite recursion in webbrowser.open(), when KDE Konqueror is tried.
üst
07404592
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
webbrowser.py
Lib/webbrowser.py
+2
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/webbrowser.py
Dosyayı görüntüle @
2b2b44dc
...
...
@@ -347,7 +347,8 @@ class Konqueror(BaseBrowser):
else
:
action
=
"openURL"
devnull
=
open
(
os
.
devnull
,
"r+"
)
import
io
devnull
=
io
.
open
(
os
.
devnull
,
"r+"
)
# if possible, put browser in separate process group, so
# keyboard interrupts don't affect browser as well as Python
setsid
=
getattr
(
os
,
'setsid'
,
None
)
...
...
Misc/NEWS
Dosyayı görüntüle @
2b2b44dc
...
...
@@ -25,6 +25,8 @@ Extension Modules
Library
-------
- Issue 2865: webbrowser.open() works again in a KDE environment.
- The multifile module has been removed.
- The SocketServer module has been renamed to socketserver.
...
...
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