summaryrefslogtreecommitdiffstats
path: root/Python/codegen.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/codegen.c')
-rw-r--r--Python/codegen.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/Python/codegen.c b/Python/codegen.c
index bfacc6f..976c942 100644
--- a/Python/codegen.c
+++ b/Python/codegen.c
@@ -280,6 +280,14 @@ codegen_addop_noarg(instr_sequence *seq, int opcode, location loc)
static int
codegen_addop_load_const(compiler *c, location loc, PyObject *o)
{
+ if (PyLong_CheckExact(o)) {
+ int overflow;
+ long val = PyLong_AsLongAndOverflow(o, &overflow);
+ if (!overflow && val >= 0 && val < 256 && val < _PY_NSMALLPOSINTS) {
+ ADDOP_I(c, loc, LOAD_SMALL_INT, val);
+ return SUCCESS;
+ }
+ }
Py_ssize_t arg = _PyCompile_AddConst(c, o);
if (arg < 0) {
return ERROR;
@@ -656,6 +664,9 @@ codegen_setup_annotations_scope(compiler *c, location loc,
codegen_enter_scope(c, name, COMPILE_SCOPE_ANNOTATIONS,
key, loc.lineno, NULL, &umd));
+ // Insert None into consts to prevent an annotation
+ // appearing to be a docstring
+ _PyCompile_AddConst(c, Py_None);
// if .format != 1: raise NotImplementedError
_Py_DECLARE_STR(format, ".format");
ADDOP_I(c, loc, LOAD_FAST, 0);