summaryrefslogtreecommitdiff
path: root/Cython/Compiler/Tests/TestCmdLine.py
Commit message (Collapse)AuthorAgeFilesLines
* CmdLine: Fix regression when using the `--working` option (GH-5365)Lisandro Dalcin2023-04-301-1/+11
| | | | | Checking for the existence of source files must account for the user-specified working directory. If the source filename is not absolute, prepend the working directory if specified, then perform the check.
* cython, cythonize commands print a specific error when file does not exist ↵Matus Valo2022-11-081-0/+12
| | | | (#4629)
* Add --module-name argument to cython command (GH-4548)Matthew Brett2022-07-191-12/+53
| | | | | | | | It can be useful to specify the module name for the output file directly, rather than working it out from the enclosing file tree - particularly for out of tree build systems, like Meson. See background in https://github.com/rgommers/scipy/issues/31#issuecomment-1002662816
* Fix many indentation and whitespace issues throughout the code base (GH-3673)scoder2020-06-101-123/+123
| | | … and enforce them with pycodestyle.
* Fix the handling of --annotate-fullc in cythonize.py (GH-3103)realead2019-09-181-20/+5
|
* Replace custom command line parser with argparse (GH-3001)realead2019-08-041-1/+387
|
* Replace "--annotate=fullc" with "--annotate-fullc" to fix a regression from ↵realead2019-06-071-4/+4
| | | | GH-2858 (GH-2986)
* Support showing the complete C code in the annotated html-file (GH-2858)realead2019-05-301-0/+27
|
* test CmdLine.py and rework long option parsingStefan Behnel2015-02-271-0/+118