summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #2625 from cython/str_is_str_gh25650.29rc1scoder2018-09-246-6/+133
|\
| * Add a new directive 'str_is_str=True' that keeps unprefixed string literals a...Stefan Behnel2018-09-246-6/+133
|/
* Merge pull request #2622 from mattip/check_sizescoder2018-09-231-0/+155
|\
| * WIP: TEST: add test for 'binary incompatibility' warning, errormattip2018-09-231-0/+155
* | Update changelog.Stefan Behnel2018-09-231-0/+3
* | 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
* | Stop ignoring Stackless-3 failures in travis since it seems to work reliably ...Stefan Behnel2018-09-231-1/+1
* | Make switch-statement work nicely with line tracing.Stefan Behnel2018-09-233-2/+16
* | Update test_grammar.py test from CPython 3.7+.Stefan Behnel2018-09-231-19/+311
* | Use a different constant (PI instead of NAN) in the "import *" test since NAN...Stefan Behnel2018-09-231-6/+5
* | Update changelog.Stefan Behnel2018-09-231-2/+6
* | Merge pull request #2623 from nicktimko/patch-1Robert Bradshaw2018-09-221-4/+6
|\ \
| * | Call out the different name used for the wrapperNick Timkovich2018-09-221-4/+6
| |/
* | Wrap some long lines.Robert Bradshaw2018-09-221-4/+13
* | Merge pull request #2615 from robertwb/cpp-py-exceptionRobert Bradshaw2018-09-226-8/+57
|\ \ | |/ |/|
| * 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-206-8/+56
* | Disable the numpy tests also for the new "numpy_old" tag.Stefan Behnel2018-09-221-1/+2
* | Enable the NumPy 1.7 API macro in all NumPy integration tests that do not rel...Stefan Behnel2018-09-226-84/+92
* | Update changelog.Stefan Behnel2018-09-221-1/+1
* | Add test for #2621.Stefan Behnel2018-09-221-0/+12
* | Declare constants in "libc.math" with "const" modifier to detect/avoid assign...Stefan Behnel2018-09-222-20/+22
* | Exclude 'const' globals from star-importing since they can't get assigned any...Stefan Behnel2018-09-222-1/+5
* | Prevent assigned global variables from being marked and treated as closure va...Stefan Behnel2018-09-222-1/+21
* | Merge pull request #2620 from cython/directives_scope_gh459scoder2018-09-226-43/+82
|\ \
| * | Clean up directives to distinguish between those that belong to a function or...Stefan Behnel2018-09-226-43/+82
|/ /
* | Add a pure Python OpenMP test to make sure everything works from pure Python ...Stefan Behnel2018-09-211-0/+60
* | Add missing keyword arguments to fake prange() function in Shadow.py.Stefan Behnel2018-09-211-1/+1
* | Fix wrong variable usage in __Pyx_PyIndex_AsSsize_t().Stefan Behnel2018-09-211-1/+1
|/
* Check some child nodes against the correct nogil context when they are actual...Stefan Behnel2018-09-195-18/+57
* Discard invisible type annotations from cdef functions after applying them, a...Stefan Behnel2018-09-191-0/+4
* Include header file types in editor config.Stefan Behnel2018-09-171-1/+1
* Add .editorconfig file to help with editing in a more consistent style.Stefan Behnel2018-09-171-0/+23
* Update changelog.Robert Bradshaw2018-09-171-0/+4
* Merge branch 'except_plus_null_pyobject' of https://github.com/bloomberg/cythonRobert Bradshaw2018-09-173-22/+21
|\
| * Perform <object>NULL check for "except +" callsMatt Wozniski2018-09-171-11/+13
| * Test an "except +" function returning <object>NULLMatt Wozniski2018-09-172-0/+24
* | Catch Python exceptions for object-returning except+ functions.Robert Bradshaw2018-09-173-4/+47
* | Fix typo in changelog.Stefan Behnel2018-09-161-1/+1
* | Clarify changelog.Stefan Behnel2018-09-161-1/+2
* | Update changelog.Stefan Behnel2018-09-161-0/+5
* | Prepare release of 0.29 beta 1.0.29b1Stefan Behnel2018-09-161-1/+1
* | Update changelog.Stefan Behnel2018-09-161-0/+3
* | Merge pull request #2608 from scoder/warn_missing_language_levelscoder2018-09-1610-16/+51
|\ \
| * | Update changelog.Stefan Behnel2018-09-161-0/+8
| * | Support a direct "language_level" argument in "cython.inline()", and fix a te...Stefan Behnel2018-09-163-4/+12
| * | Warn when no "language_level" is specified to prepare the transition to langu...Stefan Behnel2018-09-167-12/+31
|/ /
* | Fix compilation failures with Pythran 0.8.7 by generating different code for ...Stefan Behnel2018-09-161-5/+10