this repo has no description
at trunk 30 lines 499 B view raw
1# Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com) 2__all__ = [ # noqa: F405 3 "cmp_op", 4 "hasconst", 5 "hasname", 6 "hasjrel", 7 "hasjabs", 8 "haslocal", 9 "hascompare", 10 "hasfree", 11 "opname", 12 "opmap", 13 "HAVE_ARGUMENT", 14 "EXTENDED_ARG", 15] 16 17from _compiler_opcode import ( 18 cmp_op, 19 hasconst, 20 hasname, 21 hasjrel, 22 hasjabs, 23 haslocal, 24 hascompare, 25 hasfree, 26 opname, 27 opmap, 28 HAVE_ARGUMENT, 29 EXTENDED_ARG, 30)