summaryrefslogtreecommitdiff
path: root/Cython/Compiler
Commit message (Expand)AuthorAgeFilesLines
* Remove support for Py2.6 and various quirks that special-cased it.gh2692_remove_py26_supportStefan Behnel2018-10-304-14/+4
* Merge pull request #2683 from KPilnacek/2133_exponentiation_of_intStefan Behnel2018-10-271-0/+6
|\
| * Fix: Exponentiation of integer constantsKryštof Pilnáček2018-10-271-0/+6
* | Merge pull request #2682 from bweigel/2634_embedsignatureStefan Behnel2018-10-271-1/+2
|\ \
| * | reformat codestylebweigel2018-10-271-1/+1
| * | Merge pull request #1 from matt-chan/patch-1Benjamin Weigel2018-10-271-1/+2
| |\ \ | | |/ | |/|
| | * Fix Memviewslice docstringsMatthew Chan2018-10-021-1/+2
* | | Merge branch '0.29.x' into releaseStefan Behnel2018-10-271-0/+5
|\ \ \ | |/ / |/| |
| * | Workaround for long internals misconfiguration on 64-bit MinGW.Robert Bradshaw2018-10-241-0/+5
* | | Correct the handling of line tracing errors on try-statements. Previously, th...Stefan Behnel2018-10-191-4/+6
|/ /
* | Merge pull request #2645 from jdemeyer/bytes_non_asciiStefan Behnel2018-10-141-1/+1
|\ \
| * | Only error out for non-ASCII literals on actual bytes literalsJeroen Demeyer2018-10-051-1/+1
| |/
* | Merge pull request #2637 from bjodah/cmdline-opt-3strStefan Behnel2018-10-131-0/+4
|\ \ | |/ |/|
| * Add --3str command line option to 'cython' programBjörn Dahlgren2018-09-291-0/+4
* | Fix type import enum.Robert Bradshaw2018-10-021-0/+1
* | Use enum rather than int for size_check.Robert Bradshaw2018-10-021-9/+5
* | Rename check_size extend option to ignore.Robert Bradshaw2018-10-024-5/+5
|/
* Rename the options of the "check_size" feature to make them more obvious: "wa...Stefan Behnel2018-09-295-21/+13
* Merge pull request #2635 from cython/cy3strStefan Behnel2018-09-293-17/+12
|\
| * Remove the new 'str_is_str' directive again and replace it by a new "language...cy3strStefan Behnel2018-09-293-17/+12
* | Minor cleanups of 'check_size' implementation (#2627).Stefan Behnel2018-09-296-17/+18
* | Merge pull request #2627 from mattip/check_size2Stefan Behnel2018-09-295-10/+46
|\ \ | |/ |/|
| * MAINT: fixes from reviewmattip2018-09-252-2/+10
| * MAINT: fixes from reviewmattip2018-09-255-13/+17
| * MAINT: cannot use local enum in __Pyx functionsmattip2018-09-251-5/+5
| * ENH: add check_size option to ctypedef class for external classesmattip2018-09-255-10/+34
* | Add a new directive 'str_is_str=True' that keeps unprefixed string literals a...Stefan Behnel2018-09-244-6/+27
|/
* Deduplicate constant tuples and slices to generate them only once and share t...Stefan Behnel2018-09-232-5/+39
* Simplify some code.Stefan Behnel2018-09-231-2/+2
* Make switch-statement work nicely with line tracing.Stefan Behnel2018-09-231-2/+14
* Wrap some long lines.Robert Bradshaw2018-09-221-4/+13
* Merge pull request #2615 from robertwb/cpp-py-exceptionRobert Bradshaw2018-09-223-8/+28
|\
| * Update ExprNodes.pyRobert Bradshaw2018-09-201-5/+7
| * Update Nodes.pyRobert Bradshaw2018-09-201-1/+0
| * Allow catching both C++ and Python exceptions.Robert Bradshaw2018-09-203-8/+27
* | Exclude 'const' globals from star-importing since they can't get assigned any...Stefan Behnel2018-09-221-1/+1
* | Prevent assigned global variables from being marked and treated as closure va...Stefan Behnel2018-09-221-1/+1
* | Clean up directives to distinguish between those that belong to a function or...Stefan Behnel2018-09-223-43/+41
|/
* Check some child nodes against the correct nogil context when they are actual...Stefan Behnel2018-09-194-18/+39
* Discard invisible type annotations from cdef functions after applying them, a...Stefan Behnel2018-09-191-0/+4
* Merge branch 'except_plus_null_pyobject' of https://github.com/bloomberg/cythonRobert Bradshaw2018-09-171-1/+1
|\
| * Perform <object>NULL check for "except +" callsMatt Wozniski2018-09-171-11/+13
* | Catch Python exceptions for object-returning except+ functions.Robert Bradshaw2018-09-171-4/+22
* | Warn when no "language_level" is specified to prepare the transition to langu...Stefan Behnel2018-09-165-9/+27
* | Fix compilation failures with Pythran 0.8.7 by generating different code for ...Stefan Behnel2018-09-161-5/+10
|/
* Work around a crash for now.Stefan Behnel2018-09-151-1/+3
* Initial (incomplete) attempt at supporting the Py3.7 exception state stack.Stefan Behnel2018-09-151-0/+3
* Make sure builtins add their utility code also when they are only being used ...Stefan Behnel2018-09-151-0/+2
* Support "@cython.nogil" decorator in pure mode.Stefan Behnel2018-09-143-5/+13
* Support 1-dim memory view types in type annotations (requires support in Slic...Stefan Behnel2018-09-081-0/+19