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
97f46db9
Kaydet (Commit)
97f46db9
authored
9 years ago
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #25410: Made testing that od_fast_nodes and dk_entries are in sync more
reliable.
üst
4981dd2c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
odictobject.c
Objects/odictobject.c
+8
-4
No files found.
Objects/odictobject.c
Dosyayı görüntüle @
97f46db9
...
...
@@ -481,10 +481,12 @@ struct _odictobject {
PyDictObject
od_dict
;
/* the underlying dict */
_ODictNode
*
od_first
;
/* first node in the linked list, if any */
_ODictNode
*
od_last
;
/* last node in the linked list, if any */
/* od_fast_nodes and od_resize_sentinel are managed by _odict_resize()
/* od_fast_nodes, od_fast_nodes_size and od_resize_sentinel are managed
* by _odict_resize().
* Note that we rely on implementation details of dict for both. */
_ODictNode
**
od_fast_nodes
;
/* hash table that mirrors the dict table */
Py_uintptr_t
od_resize_sentinel
;
/* changes if odict should be resized */
Py_ssize_t
od_fast_nodes_size
;
void
*
od_resize_sentinel
;
/* changes if odict should be resized */
size_t
od_state
;
/* incremented whenever the LL changes */
PyObject
*
od_inst_dict
;
/* OrderedDict().__dict__ */
...
...
@@ -573,7 +575,8 @@ _odict_resize(PyODictObject *od) {
/* Replace the old fast nodes table. */
_odict_free_fast_nodes
(
od
);
od
->
od_fast_nodes
=
fast_nodes
;
od
->
od_resize_sentinel
=
(
Py_uintptr_t
)(((
PyDictObject
*
)
od
)
->
ma_keys
);
od
->
od_fast_nodes_size
=
size
;
od
->
od_resize_sentinel
=
((
PyDictObject
*
)
od
)
->
ma_keys
;
return
0
;
}
...
...
@@ -591,7 +594,8 @@ _odict_get_index(PyODictObject *od, PyObject *key)
keys
=
((
PyDictObject
*
)
od
)
->
ma_keys
;
/* Ensure od_fast_nodes and dk_entries are in sync. */
if
(
od
->
od_resize_sentinel
!=
(
Py_uintptr_t
)
keys
)
{
if
(
od
->
od_resize_sentinel
!=
keys
||
od
->
od_fast_nodes_size
!=
keys
->
dk_size
)
{
int
resize_res
=
_odict_resize
(
od
);
if
(
resize_res
<
0
)
return
-
1
;
...
...
This diff is collapsed.
Click to expand it.
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