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
f4aaf862
Kaydet (Commit)
f4aaf862
authored
May 28, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Be more careful about default temp dir
üst
7a623d7e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
10 deletions
+20
-10
tempfile.py
Lib/tempfile.py
+20
-10
No files found.
Lib/tempfile.py
Dosyayı görüntüle @
f4aaf862
...
...
@@ -17,16 +17,26 @@ template = None
# Function to calculate the directory to use
def
gettempdir
():
global
tempdir
if
tempdir
==
None
:
try
:
tempdir
=
os
.
environ
[
'TMPDIR'
]
except
(
KeyError
,
AttributeError
):
if
os
.
name
==
'posix'
:
tempdir
=
'/usr/tmp'
# XXX Why not /tmp?
else
:
tempdir
=
os
.
getcwd
()
# XXX Is this OK?
return
tempdir
global
tempdir
attempdirs
=
[
'/usr/tmp'
,
'/tmp'
,
os
.
getcwd
(),
os
.
curdir
]
if
os
.
environ
.
has_key
(
'TMPDIR'
):
attempdirs
.
insert
(
0
,
os
.
environ
[
'TMPDIR'
])
testfile
=
gettempprefix
()
+
'-*-writetest-*-'
for
dir
in
attempdirs
:
try
:
filename
=
os
.
path
.
join
(
dir
,
testfile
)
fp
=
open
(
filename
,
'w'
)
fp
.
write
(
'blat'
)
fp
.
close
()
os
.
unlink
(
filename
)
tempdir
=
dir
break
except
IOError
:
pass
if
tempdir
is
None
:
msg
=
"Can't find a usable temporary directory amongst "
+
`attempdirs`
raise
IOError
,
msg
return
tempdir
# Function to calculate a prefix of the filename to use
...
...
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