From 3a9079742f2d71e6968823e155f3778473113538 Mon Sep 17 00:00:00 2001 From: Larry Hastings Date: Sat, 23 Nov 2013 14:49:22 -0800 Subject: Issue #19722: Added opcode.stack_effect(), which accurately computes the stack effect of bytecode instructions. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index c6ae1b227c..795534147d 100644 --- a/setup.py +++ b/setup.py @@ -596,6 +596,8 @@ class PyBuildExt(build_ext): exts.append( Extension('_lsprof', ['_lsprof.c', 'rotatingtree.c']) ) # static Unicode character database exts.append( Extension('unicodedata', ['unicodedata.c']) ) + # _opcode module + exts.append( Extension('_opcode', ['_opcode.c']) ) # Modules with some UNIX dependencies -- on by default: # (If you have a really backward UNIX, select and socket may not be -- cgit v1.2.1