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
ffdf1c30
Unverified
Kaydet (Commit)
ffdf1c30
authored
Ock 31, 2019
tarafından
Raymond Hettinger
Kaydeden (comit)
GitHub
Ock 31, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Consistently move the misses update to just before the user function call (GH-11715)
üst
dcfcd146
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
functools.py
Lib/functools.py
+3
-3
_functoolsmodule.c
Modules/_functoolsmodule.c
+5
-3
No files found.
Lib/functools.py
Dosyayı görüntüle @
ffdf1c30
...
...
@@ -541,10 +541,10 @@ def _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo):
if
maxsize
==
0
:
def
wrapper
(
*
args
,
**
kwds
):
# No caching -- just a statistics update
after a successful call
# No caching -- just a statistics update
nonlocal
misses
result
=
user_function
(
*
args
,
**
kwds
)
misses
+=
1
result
=
user_function
(
*
args
,
**
kwds
)
return
result
elif
maxsize
is
None
:
...
...
@@ -557,9 +557,9 @@ def _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo):
if
result
is
not
sentinel
:
hits
+=
1
return
result
misses
+=
1
result
=
user_function
(
*
args
,
**
kwds
)
cache
[
key
]
=
result
misses
+=
1
return
result
else
:
...
...
Modules/_functoolsmodule.c
Dosyayı görüntüle @
ffdf1c30
...
...
@@ -796,10 +796,12 @@ lru_cache_make_key(PyObject *args, PyObject *kwds, int typed)
static
PyObject
*
uncached_lru_cache_wrapper
(
lru_cache_object
*
self
,
PyObject
*
args
,
PyObject
*
kwds
)
{
PyObject
*
result
=
PyObject_Call
(
self
->
func
,
args
,
kwds
);
PyObject
*
result
;
self
->
misses
++
;
result
=
PyObject_Call
(
self
->
func
,
args
,
kwds
);
if
(
!
result
)
return
NULL
;
self
->
misses
++
;
return
result
;
}
...
...
@@ -827,6 +829,7 @@ infinite_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwd
Py_DECREF
(
key
);
return
NULL
;
}
self
->
misses
++
;
result
=
PyObject_Call
(
self
->
func
,
args
,
kwds
);
if
(
!
result
)
{
Py_DECREF
(
key
);
...
...
@@ -838,7 +841,6 @@ infinite_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwd
return
NULL
;
}
Py_DECREF
(
key
);
self
->
misses
++
;
return
result
;
}
...
...
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