summaryrefslogtreecommitdiff
path: root/Cython/Utils.py
Commit message (Expand)AuthorAgeFilesLines
* Don't call __Pyx_ImportNumPyArrayTypeIfAvailable() for every fused def functi...da-woods2022-07-311-0/+5
* Implement the --depfile command-line option for the "cython" tool (GH-4916)Eli Schwartz2022-07-291-0/+20
* Always regenerate .c/cpp output files when changing the Cython version. This ...Stefan Behnel2022-02-021-0/+14
* Add Cython.Utils to the list of compiled modules and include a faster @contex...Stefan Behnel2022-01-311-30/+46
* Add `clear_method_caches` to Utils.py (#4338)0dminnimda2021-10-281-1/+26
* runtests: include the C compiler error output in the compile exception to sho...Stefan Behnel2021-07-311-0/+31
* Refuse to overwrite output C/C++ files that probably were not created by Cyth...scoder2021-05-201-0/+27
* Support namespace packages inside regular packages (GH-3905)Fedor Alekseev2020-11-141-3/+1
* Simplify the output stream capturing for the C compiler runs by using a temp ...Stefan Behnel2020-10-211-33/+18
* Support for versioned pxd files (GH-3577)scoder2020-05-071-0/+36
* Handle normalization of unicode identifiers (GH-3096)da-woods2019-09-021-2/+2
* Fix PY_HEX_VERSION -> PY_VERSION_HEX (GH-3071)Jeroen Demeyer2019-08-091-1/+1
* Made changes highlighted by code review,Dr Alex Meakins2019-05-061-5/+4
* Added PEP420 namespace support.Dr Alex Meakins2019-05-041-4/+14
* REF: make Utils dependency-free by moving search_include_directories to MainBrock Mendel2019-02-101-48/+0
* CLN: flake8 fixups in Cython.Utils (#2833)jbrockmendel2019-02-101-22/+46
* Use the same list of potential package init file names everywhere (not just "...gh2665_package_init_pyxStefan Behnel2019-01-111-4/+3
* Fix 'coding' cookie detection in the second source line.Stefan Behnel2018-09-291-1/+1
* Ignore the "c_string_encoding" directive when looking for a "coding" cookie i...Stefan Behnel2018-09-291-3/+3
* Simplify encoding detection and source file opening by starting off reading b...Stefan Behnel2018-08-301-46/+37
* Add a "CYTHON_HEX_VERSION" macro in the style of PY_HEX_VERSION that user cod...Stefan Behnel2018-08-261-0/+24
* Try to reduce test log clutter in MSVC output.Stefan Behnel2018-08-251-1/+3
* fail early if module is called cython (and not submodule)Egor Dranischnikow2018-07-151-1/+1
* 1) unifies handling of "cython cython.pyx" and "cythonize cython.pyx" - both ...Egor Dranischnikow2018-06-291-0/+6
* CYTHON_CACHE_DIR also sets the compiler cacheJulian RĂ¼th2018-05-041-1/+2
* Add tests for CyCache.Robert Bradshaw2018-05-031-0/+5
* More determinism in fused types.Robert Bradshaw2017-03-281-0/+16
* Minor clarifications.Robert Bradshaw2016-02-201-1/+1
* Optimize dependency checkingJeroen Demeyer2015-10-281-0/+29
* handle "-" sign in str_to_number() helperStefan Behnel2015-09-211-5/+10
* revert integer literal suffixing again and instead generate C hex literals if...Stefan Behnel2015-09-061-10/+0
* rewrite literal DEF integer coercion to constants:Stefan Behnel2015-09-051-0/+10
* adapt metaclass usage to Py2/Py3Stefan Behnel2015-07-261-0/+17
* adapt 'unicode' usage to Py2/Py3Stefan Behnel2015-07-261-9/+8
* make 'basestring' usages compatible with Py2/Py3Stefan Behnel2015-07-251-0/+7
* remove usage of deprecated "U" file open mode flag which is enabled anywayStefan Behnel2015-05-301-9/+4
* teach Cython.Coverage about "pkg.mod.pyx" file name patternsStefan Behnel2015-02-211-0/+1
* Handle @cname laziness.Robert Bradshaw2014-07-131-0/+13
* improve presentation of C compiler stderr/stdout output in test runnerStefan Behnel2014-05-031-6/+8
* another Py3 fixStefan Behnel2014-05-031-1/+1
* make print_bytes() helper terminate output with line endingStefan Behnel2014-05-021-0/+2
* add helper for passing collected bytes output through to sys.stdoutStefan Behnel2014-05-021-0/+9
* fix stderr test output printing in Py3Stefan Behnel2014-05-021-2/+8
* move file descriptor redirecting to Cython.Utils package and use it as contex...Stefan Behnel2014-05-021-0/+36
* Directory with __init__.pyc file is a package dirAlok Singhal2014-04-281-0/+1
* revert to using codecs.open() for output files instead of io.open() as the la...Stefan Behnel2014-03-231-1/+4
* make encoding detection code a bit faster if the first two source file lines ...Stefan Behnel2014-03-221-17/+22
* remove some legacy Py2.[45] codeStefan Behnel2014-03-221-87/+13
* remove some legacy Py2.[345] codeStefan Behnel2014-03-221-9/+5
* ignore UTF-8 BOMs at the beginning of source filesStefan Behnel2013-09-301-4/+21