summaryrefslogtreecommitdiff
path: root/Cython/Compiler/Main.py
Commit message (Expand)AuthorAgeFilesLines
* [0.29] implement the --depfile command-line option for the "cython" tool (GH-...releaseEli Schwartz2022-08-051-0/+5
* [0.29] Add --module-name argument to cython command (GH-4906)h-vetinari2022-07-271-2/+7
* Correctly remove future_directives with # cython: language_level=2Jeroen Demeyer2019-06-291-6/+5
* prefer sys.path before Cython/Include when searching for pxd files (GH-2993)Stefan Behnel2019-06-281-6/+59
* Remove the new 'str_is_str' directive again and replace it by a new "language...cy3strStefan Behnel2018-09-291-10/+11
* Add a new directive 'str_is_str=True' that keeps unprefixed string literals a...Stefan Behnel2018-09-241-0/+9
* Warn when no "language_level" is specified to prepare the transition to langu...Stefan Behnel2018-09-161-5/+10
* Remove unused constructor argument.Stefan Behnel2018-09-011-1/+1
* 1) unifies handling of "cython cython.pyx" and "cythonize cython.pyx" - both ...Egor Dranischnikow2018-06-291-0/+2
* More clarification.Robert Bradshaw2018-05-041-9/+8
* Ignore build_dir in Cython cachingJulian Rüth2018-05-041-0/+5
* Relevant options/directives must go into the cache fingerprintJulian Rüth2018-05-041-23/+78
* CYTHON_CACHE_DIR also sets the compiler cacheJulian Rüth2018-05-041-1/+1
* Misc typosluz.paz2018-03-121-1/+1
* Fix typo in docstring.Stefan Behnel2017-12-151-2/+2
* Minor code reformatting.Stefan Behnel2017-12-151-9/+18
* Trivial typo fixesUnknown2017-10-171-2/+2
* Also update version check in Main.py.dropPy32Stefan Behnel2017-08-261-2/+2
* Rename unknown_directives.Robert Bradshaw2017-07-101-4/+4
* Give an error for invalid options or directivesJeroen Demeyer2017-07-041-4/+9
* Add a Pythran backend for Numpy operationAdrien Guinet2017-06-171-0/+5
* Add support for create_extension() hookJeroen Demeyer2017-03-091-0/+1
* Fix automatic annotation determination.Robert Bradshaw2016-11-151-2/+1
* Cleanup cache option.Robert Bradshaw2016-09-281-5/+2
* Do not warn for "cache" optionJeroen Demeyer2016-09-281-0/+1
* Fix timestamps option to work when generating a C++ output file and whenIan Henriksen2016-04-301-15/+21
* Allow output file to be a dir. E.g. 'cython -o . /path/somefile.pyx'Björn Dahlgren2015-10-091-6/+11
* make 'basestring' usages compatible with Py2/Py3Stefan Behnel2015-07-251-0/+5
* 2to3: Apply the 'except' fixerPetr Viktorin2015-07-251-2/+2
* Do not search sys.path for .pxd file if no explicit "cimport" is givenJeroen Demeyer2015-07-031-6/+12
* clean up decoding error reporting by counting lines instead of reading single...Stefan Behnel2015-05-301-22/+19
* remove usage of deprecated "U" file open mode flag which is enabled anywayStefan Behnel2015-05-301-8/+2
* intern identifier names in parser to save memoryStefan Behnel2015-04-241-1/+24
* Rename module to __main__ in embed mode.Robert Bradshaw2015-04-241-2/+2
* prevent fallback to absolute cimport when relative cimport is not found; gene...Stefan Behnel2015-04-051-11/+26
* enable true division for language_level=3Stefan Behnel2015-03-201-2/+2
* integrate coverage report into annotated HTML source pageStefan Behnel2015-02-261-0/+1
* Add a mechanism to store metadata in the generated output file.Robert Bradshaw2015-02-041-1/+4
* Merge branch 'formal grammar'Robert Bradshaw2015-01-171-0/+11
|\
| * Merge branch 'master' into grammarRobert Bradshaw2014-10-131-11/+16
| |\
| * | Parse files with standard Python grammar.Robert Bradshaw2014-08-211-1/+5
| * | Add option to use formal grammar.Robert Bradshaw2014-08-211-0/+7
* | | reformat some codeStefan Behnel2014-11-051-5/+3
| |/ |/|
* | turn cythonize() error on unknown compilation options into a warningStefan Behnel2014-10-121-3/+6
* | fix broken name reference (probably after an incomplete refactoring)Stefan Behnel2014-10-091-3/+2
* | fix open file leakStefan Behnel2014-09-251-4/+5
* | provide "Cython.Compiler.Main.Version" to keep supporting old PyTables versio...Stefan Behnel2014-09-111-1/+3
|/
* Print missing pxd files as path.Robert Bradshaw2014-08-111-1/+1
* explicitly reject unknown compiler options to make cythonize() less unfriendl...Stefan Behnel2014-06-251-1/+13
* use explicit relative imports everywhere and enable absolute imports by defaultStefan Behnel2014-06-171-15/+21