From 0d467db38eb59ac442189896512bae3dbdab9e5e Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Fri, 22 Feb 2008 23:11:38 -0800 Subject: [PATCH] num -> int for int constants --- Cython/Compiler/Naming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/Naming.py b/Cython/Compiler/Naming.py index 165cb297..b0a8215c 100644 --- a/Cython/Compiler/Naming.py +++ b/Cython/Compiler/Naming.py @@ -22,7 +22,7 @@ pymethdef_prefix = pyrex_prefix + "mdef_" methtab_prefix = pyrex_prefix + "methods_" memtab_prefix = pyrex_prefix + "members_" interned_prefix = pyrex_prefix + "n_" -interned_num_prefix = pyrex_prefix + "num_" +interned_num_prefix = pyrex_prefix + "int_" objstruct_prefix = pyrex_prefix + "obj_" typeptr_prefix = pyrex_prefix + "ptype_" prop_set_prefix = pyrex_prefix + "setprop_" -- 2.26.2