-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathcinder.py
53 lines (50 loc) · 1.28 KB
/
cinder.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from _cinder import (
# Methods
_get_arg0_from_pyframe,
_get_awaiter_frame,
_get_call_stack,
_get_coro_awaiter,
_get_entire_call_stack_as_qualnames,
_get_frame_gen,
_get_qualname,
_has_no_shadowing_instances,
_set_qualname,
cinder_set_warn_handler,
debug_break,
freeze_type,
get_warn_handler,
getknobs,
set_warn_handler,
setknobs,
toggle_dump_ref_changes,
warn_on_inst_dict,
# Other attributes
STRUCTURED_DATA_VERSION,
_built_with_asan,
)
try:
from cinderx import (
# Methods
_compile_perf_trampoline_pre_fork,
_get_entire_call_stack_as_qualnames_with_lineno_and_frame,
_get_entire_call_stack_as_qualnames_with_lineno,
_is_compile_perf_trampoline_pre_fork_enabled,
clear_all_shadow_caches,
clear_caches,
clear_classloader_caches,
disable_parallel_gc,
enable_parallel_gc,
get_parallel_gc_settings,
strict_module_patch_delete,
strict_module_patch_enabled,
strict_module_patch,
watch_sys_modules,
# Other attributes
async_cached_classproperty,
async_cached_property,
cached_classproperty,
cached_property,
StrictModule,
)
except ImportError:
pass