[Lxml-checkins] r52385 - lxml/trunk

scoder at codespeak.net scoder at codespeak.net
Tue Mar 11 18:45:18 CET 2008


Author: scoder
Date: Tue Mar 11 18:45:17 2008
New Revision: 52385

Modified:
   lxml/trunk/   (props changed)
   lxml/trunk/setupinfo.py
Log:
 r3758 at delle:  sbehnel | 2008-03-11 18:44:25 +0100
 later Cython version output during build


Modified: lxml/trunk/setupinfo.py
==============================================================================
--- lxml/trunk/setupinfo.py	(original)
+++ lxml/trunk/setupinfo.py	Tue Mar 11 18:45:17 2008
@@ -4,7 +4,6 @@
 try:
     from Cython.Distutils import build_ext as build_pyx
     import Cython.Compiler.Version
-    print("Building with Cython %s." % Cython.Compiler.Version.version)
     CYTHON_INSTALLED = True
 except ImportError:
     CYTHON_INSTALLED = False
@@ -18,6 +17,7 @@
 def ext_modules(static_include_dirs, static_library_dirs, static_cflags): 
     if CYTHON_INSTALLED:
         source_extension = ".pyx"
+        print("Building with Cython %s." % Cython.Compiler.Version.version)
     else:
         print ("NOTE: Trying to build without Cython, pre-generated "
                "'src/lxml/etree.c' needs to be available.")


More information about the lxml-checkins mailing list