Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

from .function_mangling cimport ArgumentFixer 

  

cpdef dict_key(o) 

cpdef cache_key(o) 

  

cdef class CachedFunction(object): 

cdef public str __name__ 

cdef public str __module__ 

cdef ArgumentFixer _argument_fixer 

cdef public f 

cdef public cache # not always of type <dict> 

cdef bint is_classmethod 

cdef int argfix_init(self) except -1 

cdef get_key_args_kwds(self, tuple args, dict kwds) 

cdef fix_args_kwds(self, tuple args, dict kwds) 

cdef empty_key 

cdef key 

cdef bint do_pickle 

  

cdef class CachedMethod(object): 

cdef str _cache_name 

cdef public str __name__ 

cdef public str __module__ 

cdef CachedFunction _cachedfunc 

cdef Py_ssize_t nargs 

cpdef _get_instance_cache(self, inst) 

  

cdef class CacheDict(dict): 

pass 

  

cdef class CachedInParentMethod(CachedMethod): 

pass 

  

cdef class CachedMethodCaller(CachedFunction): 

cdef public _instance 

cdef public CachedMethod _cachedmethod 

  

cdef class CachedMethodCallerNoArgs(CachedFunction): 

cdef public _instance 

  

cdef class GloballyCachedMethodCaller(CachedMethodCaller): 

pass