Lines Matching refs:dis
9 dis(pickle, out=None, memo=None, indentlevel=4)
13 __all__ = ['dis', 'genops', 'optimize']
18 # well-formedness. dis() does a lot of this already.
22 # dis() already prints this info at the end.
1891 def dis(pickle, out=None, memo=None, indentlevel=4):
1902 may be mutated by dis(), if the pickle contains PUT or BINPUT opcodes.
1903 Passing the same memo object to another dis() call then allows disassembly
2036 >>> dis(pkl)
2065 >>> dis(pkl)
2090 >>> dis(pickle.dumps(pickletools.dis, 0))
2091 0: c GLOBAL 'pickletools dis'
2098 >>> dis(pickle.dumps(x, 0))
2119 >>> dis(pickle.dumps(x, 1))
2153 >>> dis(pickle.dumps(L, 0))
2165 >>> dis(pickle.dumps(L, 1))
2180 >>> dis(pickle.dumps(T, 0))
2196 >>> dis(pickle.dumps(T, 1))
2212 >>> dis(pickle.dumps(L, 2))
2223 >>> dis(pickle.dumps(T, 2))
2247 >>> dis(f, memo=memo)
2258 >>> dis(f, memo=memo)