#
-# Pyrex wrapper for the cheesefinder API
+# Cython wrapper for the cheesefinder API
#
cdef extern from "cheesefinder.h":
-# Makefile for Microsoft compiler statically linking\rPYVERSION = 2.2\rPYHOME = \Python$(PYVERSION:.=)\rPYINCLUDE = -I$(PYHOME)\include\rPYLIB = /LIBPATH:$(PYHOME)\libs python22.lib\r\rCFLAGS = $(PYINCLUDE) /Ox /W3 /GX -nologo\r.SUFFIXES: .exe .dll .obj .c .cpp .pyx\r\r.pyx.c:\r $(PYHOME)\Python.exe ../../pyrexc.py $<\r\rall: main.exe\r\rclean:\r -del /Q/F *.obj embedded.h embedded.c main.exe\r\rmain.exe: main.obj embedded.obj\r link /nologo $** $(PYLIB) /OUT:main.exe\r\rembedded.h: embedded.c\rmain.obj: embedded.h\r
\ No newline at end of file
+# Makefile for Microsoft compiler statically linking\rPYVERSION = 2.2\rPYHOME = \Python$(PYVERSION:.=)\rPYINCLUDE = -I$(PYHOME)\include\rPYLIB = /LIBPATH:$(PYHOME)\libs python22.lib\r\rCFLAGS = $(PYINCLUDE) /Ox /W3 /GX -nologo\r.SUFFIXES: .exe .dll .obj .c .cpp .pyx\r\r.pyx.c:\r $(PYHOME)\Python.exe ../../cython.py $<\r\rall: main.exe\r\rclean:\r -del /Q/F *.obj embedded.h embedded.c main.exe\r\rmain.exe: main.obj embedded.obj\r link /nologo $** $(PYLIB) /OUT:main.exe\r\rembedded.h: embedded.c\rmain.obj: embedded.h\r
\ No newline at end of file
-This example demonstrates how Pyrex-generated code\rcan be called directly from a main program written in C.\r\rIn this example, the module's initialisation function\r(called "initembedded", since the module is called\r"embedded") is called explicitly. This is necessary\rbecause the module is not being imported using the\rnormal Python import mechanism.\r\rThe Windows makefiles were contributed by\rDuncan Booth <Duncan.Booth@SuttonCourtenay.org.uk>.\r
\ No newline at end of file
+This example demonstrates how Cython-generated code
+can be called directly from a main program written in C.
+
+The Windows makefiles were contributed by
+Duncan Booth <Duncan.Booth@SuttonCourtenay.org.uk>.