Changing from pyrex/sagex to cython -- snapshot.
authorWilliam Stein <wstein@gmail.com>
Sat, 28 Jul 2007 20:39:28 +0000 (13:39 -0700)
committerWilliam Stein <wstein@gmail.com>
Sat, 28 Jul 2007 20:39:28 +0000 (13:39 -0700)
Cython/Compiler/CmdLine.py
Cython/Compiler/Version.py
Cython/Utils.py

index c47932030a520c0619d4c46a2a93c1d6254f3881..e3c603bce099d575f9a6b6958c5fa5c3f15e21cc 100644 (file)
@@ -1,22 +1,23 @@
 #
-#   Pyrex - Command Line Parsing
+#   Cython - Command Line Parsing
 #
 
 import sys
 import Options
 
 usage = """\
-SageX is a minor variant of Pyrex for compiling code for SAGE.
+Cython (http://cython.org) is for compiling code written in the Cython
+language.  Cython is based on Pyrex by Greg Ewing. 
 
-Usage: sagexc [options] sourcefile...
+Usage: cython [options] sourcefile...
 
 Options:
-  -v, --version                  Display version number of pyrex compiler
+  -v, --version                  Display version number of cython compiler
   -l, --create-listing           Write error messages to a listing file
   -I, --include-dir <directory>  Search for include files in named directory
                                  (multiply include directories are allowed).
   -o, --output-file <filename>   Specify name of generated C file
-  -p, --embed-positions          If specified, the positions in Pyrex files of each
+  -p, --embed-positions          If specified, the positions in Cython files of each
                                  function definition is embedded in its docstring.
   -z, --pre-import <module>      If specified, assume undeclared names in this 
                                  module. Emulates the behavior of putting 
@@ -33,7 +34,7 @@ def bad_usage():
     sys.exit(1)
 
 def parse_command_line(args):
-    from Pyrex.Compiler.Main import \
+    from Cython.Compiler.Main import \
         CompilationOptions, default_options
 
     def pop_arg():
@@ -85,13 +86,13 @@ def parse_command_line(args):
                 options.objects.append(arg)
             else:
                 print >>sys.stderr, \
-                    "pyrexc: %s: Unknown filename suffix" % arg
+                    "cython: %s: Unknown filename suffix" % arg
     if options.objects and len(sources) > 1:
         print >>sys.stderr, \
-            "pyrexc: Only one source file allowed together with .o files"
+            "cython: Only one source file allowed together with .o files"
     if options.use_listing_file and len(sources) > 1:
         print >>sys.stderr, \
-            "pyrexc: Only one source file allowed when using -o"
+            "cython: Only one source file allowed when using -o"
         sys.exit(1)
     if len(sources) == 0:
         bad_usage()
index be15e839073b9159e84a4a04bb8eee672b060f47..54e34e5c4c3e65ad0f39814ae4443507276dec2d 100644 (file)
@@ -1 +1 @@
-version = '0.9.5.1a'
+version = '0.9.6'
index 25f7dda85f3e2ee4553715b613539107f1146ec4..6cccd39d15151a49a968fcd15e8c34e20acb1b6c 100644 (file)
@@ -1,5 +1,5 @@
 #
-#   Pyrex -- Things that don't belong
+#   Cython -- Things that don't belong
 #            anywhere else in particular
 #