mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
Merge remote-tracking branch 'upstream/main' into tachyon-opcodes
This commit is contained in:
commit
8129e3d7f4
154 changed files with 10330 additions and 4926 deletions
|
|
@ -273,6 +273,11 @@ parse_code_object(RemoteUnwinderObject *unwinder,
|
|||
|
||||
if (unwinder && unwinder->code_object_cache != NULL) {
|
||||
meta = _Py_hashtable_get(unwinder->code_object_cache, key);
|
||||
if (meta) {
|
||||
STATS_INC(unwinder, code_object_cache_hits);
|
||||
} else {
|
||||
STATS_INC(unwinder, code_object_cache_misses);
|
||||
}
|
||||
}
|
||||
|
||||
if (meta == NULL) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue