move test_trace.py so as not to conflict with future tests for the trace module
diff --git a/Include/opcode.h b/Include/opcode.h
index 7ffa359..facadc2 100644
--- a/Include/opcode.h
+++ b/Include/opcode.h
@@ -123,6 +123,7 @@
#define LOAD_CLOSURE 135 /* Load free variable from closure */
#define LOAD_DEREF 136 /* Load and dereference from closure cell */
#define STORE_DEREF 137 /* Store into cell */
+#define LOAD_NAME_LOCAL_ONLY 138
/* The next 3 opcodes must be contiguous and satisfy
(CALL_FUNCTION_VAR - CALL_FUNCTION) & 3 == 1 */
diff --git a/Include/symtable.h b/Include/symtable.h
index d5ef96f..22075f0 100644
--- a/Include/symtable.h
+++ b/Include/symtable.h
@@ -88,6 +88,7 @@
#define GLOBAL_IMPLICIT 3
#define FREE 4
#define CELL 5
+#define LOCAL_ONLY 6
/* The following two names are used for the ste_unoptimized bit field */
#define OPT_IMPORT_STAR 1