forked from extremecoders-re/pycdc-builds
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation and initial framework for Python 3.4 support
- Loading branch information
Showing
8 changed files
with
305 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
1 POP_TOP | ||
2 ROT_TWO | ||
3 ROT_THREE | ||
4 DUP_TOP | ||
5 DUP_TOP_TWO | ||
9 NOP | ||
10 UNARY_POSITIVE | ||
11 UNARY_NEGATIVE | ||
12 UNARY_NOT | ||
15 UNARY_INVERT | ||
19 BINARY_POWER | ||
20 BINARY_MULTIPLY | ||
22 BINARY_MODULO | ||
23 BINARY_ADD | ||
24 BINARY_SUBTRACT | ||
25 BINARY_SUBSCR | ||
26 BINARY_FLOOR_DIVIDE | ||
27 BINARY_TRUE_DIVIDE | ||
28 INPLACE_FLOOR_DIVIDE | ||
29 INPLACE_TRUE_DIVIDE | ||
54 STORE_MAP | ||
55 INPLACE_ADD | ||
56 INPLACE_SUBTRACT | ||
57 INPLACE_MULTIPLY | ||
59 INPLACE_MODULO | ||
60 STORE_SUBSCR | ||
61 DELETE_SUBSCR | ||
62 BINARY_LSHIFT | ||
63 BINARY_RSHIFT | ||
64 BINARY_AND | ||
65 BINARY_XOR | ||
66 BINARY_OR | ||
67 INPLACE_POWER | ||
68 GET_ITER | ||
70 PRINT_EXPR | ||
71 LOAD_BUILD_CLASS | ||
72 YIELD_FROM | ||
75 INPLACE_LSHIFT | ||
76 INPLACE_RSHIFT | ||
77 INPLACE_AND | ||
78 INPLACE_XOR | ||
79 INPLACE_OR | ||
80 BREAK_LOOP | ||
81 WITH_CLEANUP | ||
83 RETURN_VALUE | ||
84 IMPORT_STAR | ||
86 YIELD_VALUE | ||
87 POP_BLOCK | ||
88 END_FINALLY | ||
89 POP_EXCEPT | ||
90 STORE_NAME_A | ||
91 DELETE_NAME_A | ||
92 UNPACK_SEQUENCE_A | ||
93 FOR_ITER_A | ||
94 UNPACK_EX_A | ||
95 STORE_ATTR_A | ||
96 DELETE_ATTR_A | ||
97 STORE_GLOBAL_A | ||
98 DELETE_GLOBAL_A | ||
100 LOAD_CONST_A | ||
101 LOAD_NAME_A | ||
102 BUILD_TUPLE_A | ||
103 BUILD_LIST_A | ||
104 BUILD_SET_A | ||
105 BUILD_MAP_A | ||
106 LOAD_ATTR_A | ||
107 COMPARE_OP_A | ||
108 IMPORT_NAME_A | ||
109 IMPORT_FROM_A | ||
110 JUMP_FORWARD_A | ||
111 JUMP_IF_FALSE_OR_POP_A | ||
112 JUMP_IF_TRUE_OR_POP_A | ||
113 JUMP_ABSOLUTE_A | ||
114 POP_JUMP_IF_FALSE_A | ||
115 POP_JUMP_IF_TRUE_A | ||
116 LOAD_GLOBAL_A | ||
119 CONTINUE_LOOP_A | ||
120 SETUP_LOOP_A | ||
121 SETUP_EXCEPT_A | ||
122 SETUP_FINALLY_A | ||
124 LOAD_FAST_A | ||
125 STORE_FAST_A | ||
126 DELETE_FAST_A | ||
130 RAISE_VARARGS_A | ||
131 CALL_FUNCTION_A | ||
132 MAKE_FUNCTION_A | ||
133 BUILD_SLICE_A | ||
134 MAKE_CLOSURE_A | ||
135 LOAD_CLOSURE_A | ||
136 LOAD_DEREF_A | ||
137 STORE_DEREF_A | ||
138 DELETE_DEREF_A | ||
140 CALL_FUNCTION_VAR_A | ||
141 CALL_FUNCTION_KW_A | ||
142 CALL_FUNCTION_VAR_KW_A | ||
143 SETUP_WITH_A | ||
144 EXTENDED_ARG_A | ||
145 LIST_APPEND_A | ||
146 SET_ADD_A | ||
147 MAP_ADD_A | ||
148 LOAD_CLASSDEREF_A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters