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
05ddbf08
Kaydet (Commit)
05ddbf08
authored
Nis 01, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #23838: linecache now clears the cache and returns an empty result on
MemoryError.
üst
ef2a397a
c512adc9
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
6 deletions
+24
-6
linecache.py
Lib/linecache.py
+6
-3
test_linecache.py
Lib/test/test_linecache.py
+15
-3
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/linecache.py
Dosyayı görüntüle @
05ddbf08
...
...
@@ -40,11 +40,14 @@ def getlines(filename, module_globals=None):
if
filename
in
cache
:
entry
=
cache
[
filename
]
if
len
(
entry
)
==
1
:
return
updatecache
(
filename
,
module_globals
)
if
len
(
entry
)
!=
1
:
return
cache
[
filename
][
2
]
else
:
try
:
return
updatecache
(
filename
,
module_globals
)
except
MemoryError
:
clearcache
()
return
[]
def
checkcache
(
filename
=
None
):
...
...
Lib/test/test_linecache.py
Dosyayı görüntüle @
05ddbf08
...
...
@@ -169,9 +169,21 @@ class LineCacheTests(unittest.TestCase):
linecache
.
lazycache
(
NONEXISTENT_FILENAME
,
globals
()))
self
.
assertEqual
(
4
,
len
(
linecache
.
cache
[
NONEXISTENT_FILENAME
]))
def
test_memoryerror
(
self
):
lines
=
linecache
.
getlines
(
FILENAME
)
self
.
assertTrue
(
lines
)
def
raise_memoryerror
(
*
args
,
**
kwargs
):
raise
MemoryError
with
support
.
swap_attr
(
linecache
,
'updatecache'
,
raise_memoryerror
):
lines2
=
linecache
.
getlines
(
FILENAME
)
self
.
assertEqual
(
lines2
,
lines
)
linecache
.
clearcache
()
with
support
.
swap_attr
(
linecache
,
'updatecache'
,
raise_memoryerror
):
lines3
=
linecache
.
getlines
(
FILENAME
)
self
.
assertEqual
(
lines3
,
[])
self
.
assertEqual
(
linecache
.
getlines
(
FILENAME
),
lines
)
def
test_main
():
support
.
run_unittest
(
LineCacheTests
)
if
__name__
==
"__main__"
:
test_
main
()
unittest
.
main
()
Misc/NEWS
Dosyayı görüntüle @
05ddbf08
...
...
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
- Issue #23838: linecache now clears the cache and returns an empty result on
MemoryError.
- Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath.
Based on patch by Rafik Draoui.
...
...
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