MCPcopy Index your code
hub / github.com/RustPython/RustPython / get_cache_version

Method get_cache_version

crates/vm/src/stdlib/_abc.rs:54–56  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

52 }
53
54 fn get_cache_version(&self) -> u64 {
55 self.negative_cache_version.load(Ordering::SeqCst)
56 }
57
58 fn set_cache_version(&self, version: u64) {
59 self.negative_cache_version.store(version, Ordering::SeqCst);

Callers 3

_abc_instancecheckFunction · 0.80
_abc_subclasscheckFunction · 0.80
_get_dumpFunction · 0.80

Calls 1

loadMethod · 0.45

Tested by

no test coverage detected