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
26da1871
Kaydet (Commit)
26da1871
authored
May 21, 2010
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
simplify and modernize updatecache()
üst
b9e7c012
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
12 deletions
+10
-12
linecache.py
Lib/linecache.py
+10
-12
No files found.
Lib/linecache.py
Dosyayı görüntüle @
26da1871
...
...
@@ -72,13 +72,13 @@ def updatecache(filename, module_globals=None):
if
filename
in
cache
:
del
cache
[
filename
]
if
not
filename
or
filename
[
0
]
+
filename
[
-
1
]
==
'<>'
:
if
not
filename
or
(
filename
.
startswith
(
'<'
)
and
filename
.
endswith
(
'>'
))
:
return
[]
fullname
=
filename
try
:
stat
=
os
.
stat
(
fullname
)
except
os
.
error
,
msg
:
except
OSError
:
basename
=
filename
# Try for a __loader__, if available
...
...
@@ -115,20 +115,18 @@ def updatecache(filename, module_globals=None):
fullname
=
os
.
path
.
join
(
dirname
,
basename
)
except
(
TypeError
,
AttributeError
):
# Not sufficiently string-like to do anything useful with.
continue
try
:
stat
=
os
.
stat
(
fullname
)
break
except
os
.
error
:
pass
else
:
try
:
stat
=
os
.
stat
(
fullname
)
break
except
os
.
error
:
pass
else
:
return
[]
try
:
fp
=
open
(
fullname
,
'rU'
)
lines
=
fp
.
readlines
()
fp
.
close
()
except
IOError
,
msg
:
with
open
(
fullname
,
'rU'
)
as
fp
:
lines
=
fp
.
readlines
()
except
IOError
:
return
[]
if
lines
and
not
lines
[
-
1
]
.
endswith
(
'
\n
'
):
lines
[
-
1
]
+=
'
\n
'
...
...
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