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
21afd01c
Kaydet (Commit)
21afd01c
authored
Eyl 24, 2000
tarafından
Nicholas Riley
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Change for Python 1.6 compatibility - UNIX's 'os' module defines
'spawnv' now, so we check for 'fork' first.
üst
1f54902e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
16 deletions
+15
-16
spawn.py
Lib/idlelib/spawn.py
+15
-16
No files found.
Lib/idlelib/spawn.py
Dosyayı görüntüle @
21afd01c
...
...
@@ -13,22 +13,7 @@ def hardpath(path):
pass
return
path
if
hasattr
(
os
,
'spawnv'
):
# Windows-ish OS: we use spawnv(), and stick quotes around arguments
# in case they contains spaces, since Windows will jam all the
# arguments to spawn() or exec() together into one string. The
# kill_zombies function is a noop.
def
spawn
(
bin
,
*
args
):
nargs
=
[
bin
]
for
arg
in
args
:
nargs
.
append
(
'"'
+
arg
+
'"'
)
os
.
spawnv
(
os
.
P_NOWAIT
,
bin
,
nargs
)
def
kill_zombies
():
pass
elif
hasattr
(
os
,
'fork'
):
if
hasattr
(
os
,
'fork'
):
# UNIX-ish operating system: we fork() and exec(), and we have to track
# the pids of our children and call waitpid() on them to avoid leaving
...
...
@@ -49,6 +34,20 @@ elif hasattr(os, 'fork'):
stat
=
os
.
waitpid
(
z
,
os
.
WNOHANG
)
if
stat
[
0
]
==
z
:
zombies
.
remove
(
z
)
elif
hasattr
(
os
,
'spawnv'
):
# Windows-ish OS: we use spawnv(), and stick quotes around arguments
# in case they contains spaces, since Windows will jam all the
# arguments to spawn() or exec() together into one string. The
# kill_zombies function is a noop.
def
spawn
(
bin
,
*
args
):
nargs
=
[
bin
]
for
arg
in
args
:
nargs
.
append
(
'"'
+
arg
+
'"'
)
os
.
spawnv
(
os
.
P_NOWAIT
,
bin
,
nargs
)
def
kill_zombies
():
pass
else
:
# If you get here, you may be able to write an alternative implementation
...
...
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