Documentation cleanup.
authorRobert Bradshaw <robertwb@math.washington.edu>
Tue, 1 Mar 2011 08:03:40 +0000 (00:03 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Tue, 1 Mar 2011 08:03:40 +0000 (00:03 -0800)
Demos/callback/cheese.pyx
Demos/embed/Makefile.msc.static
Demos/embed/README

index db0fc08207d1563f8fdecbaeede6efe8089880b4..69e7d20dddcc655ae286895c36619c9f670ad1d4 100644 (file)
@@ -1,5 +1,5 @@
 #
-#   Pyrex wrapper for the cheesefinder API
+#   Cython wrapper for the cheesefinder API
 #
 
 cdef extern from "cheesefinder.h":
index 14e1080c67b0c32394934790861a2c50d77811bd..2d385840514ada77e94e3a0b9f9a0ba1890a5bc3 100644 (file)
@@ -1 +1 @@
-# 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
index 55283ac3bf96b92f094468c0af5c3fd49d4fb2bc..9a16c8ed52ad85537d7476eef0bae9da7b9ffd8c 100644 (file)
@@ -1 +1,5 @@
-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>.