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
030afb1d
Kaydet (Commit)
030afb1d
authored
Mar 14, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add execvpe -- mix of execvp and execve
üst
dcce73af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
6 deletions
+22
-6
os.py
Lib/os.py
+22
-6
No files found.
Lib/os.py
Dosyayı görüntüle @
030afb1d
...
...
@@ -55,16 +55,32 @@ def execle(file, *args):
def
execlp
(
file
,
*
args
):
execvp
(
file
,
args
)
_notfound
=
None
def
execlpe
(
file
,
*
args
):
env
=
args
[
-
1
]
execvpe
(
file
,
args
[:
-
1
],
env
)
def
execvp
(
file
,
args
):
_execvpe
(
file
,
args
)
def
execvpe
(
file
,
args
,
env
):
_execvpe
(
file
,
args
,
env
)
_notfound
=
None
def
_execvpe
(
file
,
args
,
env
=
None
):
if
env
:
func
=
execve
argrest
=
(
args
,
env
)
else
:
func
=
execv
argrest
=
(
args
,)
env
=
environ
global
_notfound
head
,
tail
=
path
.
split
(
file
)
if
head
:
execv
(
file
,
args
)
apply
(
func
,
(
file
,)
+
argrest
)
return
ENOENT
=
2
if
environ
.
has_key
(
'PATH'
):
envpath
=
environ
[
'PATH'
]
if
env
.
has_key
(
'PATH'
):
envpath
=
env
[
'PATH'
]
else
:
envpath
=
defpath
import
string
...
...
@@ -78,7 +94,7 @@ def execvp(file, args):
for
dir
in
PATH
:
fullname
=
path
.
join
(
dir
,
file
)
try
:
execv
(
fullname
,
args
)
apply
(
func
,
(
fullname
,)
+
argrest
)
except
error
,
(
errno
,
msg
):
if
errno
!=
arg
[
0
]:
exc
,
arg
=
error
,
(
errno
,
msg
)
...
...
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