Home | History | Annotate | Download | only in python2.7

Lines Matching full:none

62     PyStringMap = None
78 copier = getattr(cls, "__copy__", None)
86 reductor = getattr(x, "__reduce_ex__", None)
90 reductor = getattr(x, "__reduce__", None)
103 for t in (type(None), int, long, float, bool, str, tuple,
109 t = getattr(types, name, None)
110 if t is not None:
120 if PyStringMap is not None:
145 def deepcopy(x, memo=None, _nil=[]):
151 if memo is None:
172 copier = getattr(x, "__deepcopy__", None)
180 reductor = getattr(x, "__reduce_ex__", None)
184 reductor = getattr(x, "__reduce__", None)
200 d[type(None)] = _deepcopy_atomic
260 if PyStringMap is not None:
306 def _reconstruct(x, info, deep, memo=None):
310 if memo is None:
322 listiter = None
326 dictiter = None
341 slotstate = None
342 if state is not None:
344 if slotstate is not None:
348 if listiter is not None:
353 if dictiter is not None:
370 l = [None, 1, 2L, 3.14, 'xyzzy', (1, 2L), [3.14, 'abc'],
379 def __init__(self, arg=None):
394 def __deepcopy__(self, memo=None):