freeze: rename cython_freeze.py to cython_freeze
authorMark Lodato <lodatom@gmail.com>
Sat, 3 Oct 2009 19:55:55 +0000 (15:55 -0400)
committerMark Lodato <lodatom@gmail.com>
Sat, 3 Oct 2009 19:55:55 +0000 (15:55 -0400)
--HG--
rename : bin/cython_freeze.py => bin/cython_freeze

Demos/freeze/Makefile
Demos/freeze/README.rst
bin/cython_freeze [moved from bin/cython_freeze.py with 100% similarity]

index dd511e084fa630f089f419da150fc1bb0423f3ed..aa09c83bcc6e644c0ac4ba37debc3eb1088e80af 100644 (file)
@@ -1,6 +1,6 @@
 CC = gcc
 CYTHON = ./../bin/cython
-CYTHON_FREEZE = ../../bin/cython_freeze.py
+CYTHON_FREEZE = ../../bin/cython_freeze
 
 CFLAGS = -fPIC -g -O2 -Wall -Wextra
 CPPFLAGS = -I /usr/include/python2.6
index 33b530b30e24bbc510c2e91b3093b41698c5cafd..1a6f36a1d8325e343b9e7ca65a2c1a31b57a4eb2 100644 (file)
@@ -1,19 +1,19 @@
 NAME
 ====
 
-cython_freeze.py - create a C file for embedding Cython modules
+cython_freeze - create a C file for embedding Cython modules
 
 
 SYNOPSIS
 ========
 
-cython_freeze.py module [...]
+cython_freeze module [...]
 
 
 DESCRIPTION
 ===========
 
-**cython_freeze.py** generates a C source file to embed a Python interpreter
+**cython_freeze** generates a C source file to embed a Python interpreter
 with one or more Cython modules built in.  This allows one to create a single
 executable from Cython code, without having to have separate shared objects
 for each Cython module.
@@ -47,7 +47,7 @@ The provided Makefile creates an executable, *nCr*, using combinatorics as the
 "main" module.  It basically performs the following (ignoring the compiler
 flags)::
 
-    $ cython_freeze.py combintorics cmath > nCr.c
+    $ cython_freeze combintorics cmath > nCr.c
     $ cython combinatorics.pyx
     $ cython cmath.pyx
     $ gcc nCr.c -o nCr.o
similarity index 100%
rename from bin/cython_freeze.py
rename to bin/cython_freeze