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
2979b01f
Kaydet (Commit)
2979b01f
authored
Agu 01, 1994
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Merge changes
üst
da5d518d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
39 deletions
+57
-39
os.py
Lib/os.py
+57
-39
No files found.
Lib/os.py
Dosyayı görüntüle @
2979b01f
...
@@ -7,6 +7,8 @@
...
@@ -7,6 +7,8 @@
# - os.curdir is a string representing the current directory ('.' or ':')
# - os.curdir is a string representing the current directory ('.' or ':')
# - os.pardir is a string representing the parent directory ('..' or '::')
# - os.pardir is a string representing the parent directory ('..' or '::')
# - os.sep is the (or a most common) pathname separator ('/' or ':')
# - os.sep is the (or a most common) pathname separator ('/' or ':')
# - os.pathsep is the component separator used in $PATH etc
# - os.defpath is the default search path for executables
# Programs that import and use 'os' stand a better chance of being
# Programs that import and use 'os' stand a better chance of being
# portable between different platforms. Of course, they must then
# portable between different platforms. Of course, they must then
...
@@ -14,40 +16,29 @@
...
@@ -14,40 +16,29 @@
# and opendir), and leave all pathname manipulation to os.path
# and opendir), and leave all pathname manipulation to os.path
# (e.g., split and join).
# (e.g., split and join).
# XXX This is incorrect if the import *path fails...
_osindex
=
{
'posix'
:
(
'.'
,
'..'
,
'/'
,
':'
,
':/bin:/usr/bin'
),
'dos'
:
(
'.'
,
'..'
,
'
\\
'
,
';'
,
'.;C:
\\
bin'
),
'nt'
:
(
'.'
,
'..'
,
'
\\
'
,
';'
,
'.;C:
\\
bin'
),
'mac'
:
(
':'
,
'::'
,
':'
,
' '
,
':'
),
}
try
:
import
sys
from
posix
import
*
for
name
in
_osindex
.
keys
():
try
:
if
name
in
sys
.
builtin_module_names
:
from
posix
import
_exit
curdir
,
pardir
,
sep
,
pathsep
,
defpath
=
_osindex
[
name
]
except
ImportError
:
exec
'from
%
s import *'
%
name
pass
exec
'import
%
spath'
%
name
name
=
'posix'
exec
'path =
%
spath'
%
name
curdir
=
'.'
exec
'del
%
spath'
%
name
pardir
=
'..'
try
:
sep
=
'/'
exec
'from
%
s import _exit'
%
name
import
posixpath
except
ImportError
:
path
=
posixpath
pass
del
posixpath
break
except
ImportError
:
else
:
try
:
del
name
from
mac
import
*
raise
ImportError
,
'no os specific module found'
name
=
'mac'
curdir
=
':'
pardir
=
'::'
sep
=
':'
import
macpath
path
=
macpath
del
macpath
except
ImportError
:
from
dos
import
*
name
=
'dos'
curdir
=
'.'
# XXX doesn't always work
pardir
=
'..'
# XXX doesn't always work
sep
=
'/'
# XXX or '\\' ???
import
dospath
path
=
dospath
del
dospath
def
execl
(
file
,
*
args
):
def
execl
(
file
,
*
args
):
execv
(
file
,
args
)
execv
(
file
,
args
)
...
@@ -59,22 +50,49 @@ def execle(file, *args):
...
@@ -59,22 +50,49 @@ def execle(file, *args):
def
execlp
(
file
,
*
args
):
def
execlp
(
file
,
*
args
):
execvp
(
file
,
args
)
execvp
(
file
,
args
)
_notfound
=
None
def
execvp
(
file
,
args
):
def
execvp
(
file
,
args
):
if
'/'
in
file
:
global
_notfound
head
,
tail
=
path
.
split
(
file
)
if
head
:
execv
(
file
,
args
)
execv
(
file
,
args
)
return
return
ENOENT
=
2
ENOENT
=
2
if
environ
.
has_key
(
'PATH'
):
if
environ
.
has_key
(
'PATH'
):
import
string
envpath
=
environ
[
'PATH'
]
PATH
=
string
.
splitfields
(
environ
[
'PATH'
],
':'
)
else
:
else
:
PATH
=
[
''
,
'/bin'
,
'/usr/bin'
]
envpath
=
defpath
exc
,
arg
=
(
ENOENT
,
'No such file or directory'
)
import
string
PATH
=
string
.
splitfields
(
envpath
,
pathsep
)
if
not
_notfound
:
import
tempfile
# Exec a file that is guaranteed not to exist
try
:
execv
(
tempfile
.
mktemp
(),
())
except
error
,
_notfound
:
pass
exc
,
arg
=
error
,
_notfound
for
dir
in
PATH
:
for
dir
in
PATH
:
fullname
=
path
.
join
(
dir
,
file
)
fullname
=
path
.
join
(
dir
,
file
)
try
:
try
:
execv
(
fullname
,
args
)
execv
(
fullname
,
args
)
except
error
,
(
errno
,
msg
):
except
error
,
(
errno
,
msg
):
if
errno
!=
ENOENT
:
if
errno
!=
arg
[
0
]
:
exc
,
arg
=
error
,
(
errno
,
msg
)
exc
,
arg
=
error
,
(
errno
,
msg
)
raise
exc
,
arg
raise
exc
,
arg
# Provide listdir for Windows NT that doesn't have it built in
if
name
==
'nt'
:
try
:
_tmp
=
listdir
del
_tmp
except
NameError
:
def
listdir
(
name
):
if
path
.
ismount
(
name
):
list
=
[
'.'
]
else
:
list
=
[
'.'
,
'..'
]
f
=
popen
(
'dir/l/b '
+
name
,
'r'
)
line
=
f
.
readline
()
while
line
:
list
.
append
(
line
[:
-
1
])
line
=
f
.
readline
()
return
list
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