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
36fe2280
Kaydet (Commit)
36fe2280
authored
Mar 09, 2013
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge
üst
a28c55a2
d8d6010d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
functools.py
Lib/functools.py
+2
-2
No files found.
Lib/functools.py
Dosyayı görüntüle @
36fe2280
...
...
@@ -266,7 +266,7 @@ def lru_cache(maxsize=128, typed=False):
elif
maxsize
is
None
:
def
wrapper
(
*
args
,
**
kwds
):
#
s
imple caching without ordering or size limit
#
S
imple caching without ordering or size limit
nonlocal
hits
,
misses
key
=
make_key
(
args
,
kwds
,
typed
)
result
=
cache_get
(
key
,
sentinel
)
...
...
@@ -281,7 +281,7 @@ def lru_cache(maxsize=128, typed=False):
else
:
def
wrapper
(
*
args
,
**
kwds
):
#
s
ize limited caching that tracks accesses by recency
#
S
ize limited caching that tracks accesses by recency
nonlocal
root
,
hits
,
misses
,
full
key
=
make_key
(
args
,
kwds
,
typed
)
with
lock
:
...
...
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