Lines Matching refs:annotate
2395 def dis(pickle, out=None, memo=None, indentlevel=4, annotate=0):
2414 Optional arg 'annotate' if nonzero instructs dis() to add short
2416 The value given to 'annotate' must be an integer and is used as a
2447 annocol = annotate # column hint for annotations
2519 if annotate:
2524 annocol = annotate
2794 >>> dis(pickle.dumps(T, 3), annotate=1)
2863 '-a', '--annotate', action='store_true',
2864 help='annotate each line with a short opcode description')
2879 annotate = 30 if args.annotate else 0
2884 args.indentlevel, annotate)
2890 dis(f, args.output, memo, args.indentlevel, annotate)