From: Lisandro Dalcin Date: Wed, 29 Oct 2008 14:29:14 +0000 (-0300) Subject: fix typo in generated C sources X-Git-Tag: 0.9.9.2.beta~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=857606e7dadc9793729ea9c3588332dcdd7a37d7;p=cython.git fix typo in generated C sources --- diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index a5dd578d..e91b8ab9 100644 --- a/Cython/Compiler/ModuleNode.py +++ b/Cython/Compiler/ModuleNode.py @@ -1560,7 +1560,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): tempdecl_code = code.insertion_point() code.putln("%s = PyTuple_New(0); %s" % (Naming.empty_tuple, code.error_goto_if_null(Naming.empty_tuple, self.pos))); - code.putln("/*--- Libary function declarations ---*/") + code.putln("/*--- Library function declarations ---*/") env.generate_library_function_declarations(code) self.generate_filename_init_call(code)