From c46cb2a1a92c26e01ddb3921aa6828bcd3576f3e Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 19 Apr 2004 19:06:21 +0000 Subject: * Restore the pure python version of heapq.py. * Mark the C version as private and only use when available. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 70ae730142..52ed232452 100644 --- a/setup.py +++ b/setup.py @@ -327,7 +327,7 @@ class PyBuildExt(build_ext): # bisect exts.append( Extension("_bisect", ["_bisectmodule.c"]) ) # heapq - exts.append( Extension("heapq", ["heapqmodule.c"]) ) + exts.append( Extension("_heapq", ["_heapqmodule.c"]) ) # operator.add() and similar goodies exts.append( Extension('operator', ['operator.c']) ) # Python C API test module -- cgit v1.2.1