summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Minor changes to try/finally code generation [should silence Coverity Scan]dalcinl/fix-try-finallyLisandro Dalcin2017-10-291-3/+3
* Prefix global helper function name to reduce the risk of naming collisions du...Stefan Behnel2017-10-292-2/+2
* Tighten Py3.7 guard for new "exc_state" struct usage.Stefan Behnel2017-10-281-6/+6
* FIX: account for change in how exception information is storedThomas A Caswell2017-10-281-0/+42
* Mark unused vars with `(void)x;` [should silence Coverity Scan]Lisandro Dalcin2017-10-281-1/+2
* Do not try to install Pythran in Py2.6 since it's not compatible.Stefan Behnel2017-10-241-1/+1
* Minor speedup in compiled Pythran module.Stefan Behnel2017-10-241-1/+3
* Enable Pythran test on travis.Stefan Behnel2017-10-241-1/+1
* Repair indexing syntax in generated Pythran code: must use "(...)" for multip...Stefan Behnel2017-10-242-37/+47
* Prepare release of 0.27.2.0.27.2Stefan Behnel2017-10-222-2/+2
* Fix test output of Pythran test and give a better name to a test function.Stefan Behnel2017-10-221-4/+5
* travis: we should hear it if Py3.6-dev ever starts failing. (And we should ev...Stefan Behnel2017-10-221-1/+0
* Hard switch off IPython test if import fails. Could not find a better way to ...Stefan Behnel2017-10-221-1/+7
* Minor code simplification in test runner.Stefan Behnel2017-10-221-6/+5
* Avoid old-style classes in test runner under Py2.Stefan Behnel2017-10-221-7/+7
* Merge pull request #1938 from cython/dalcinl/fix-module-cleanupLisandro Dalcin2017-10-191-2/+2
|\
| * PyPy3: Register module cleanup with atexit (PyModuleDef.m_free is not used)dalcinl/fix-module-cleanupLisandro Dalcin2017-10-181-2/+2
|/
* Merge pull request #1937 from cython/travis-ciLisandro Dalcin2017-10-185-24/+88
|\
| * Travis-CI: Exclude tests failing on macOS with C++travis-ciLisandro Dalcin2017-10-152-0/+16
| * Travis-CI: Add macOS to build matrix using MinicondaLisandro Dalcin2017-10-151-21/+60
| * Fix definition CYTHON_FALLTHROUGH in module setup utility codeLisandro Dalcin2017-10-151-1/+10
| * Fix embedded test to work with Anaconda PythonLisandro Dalcin2017-10-151-1/+2
| * Fix bad use of GCC version regex in runtest.pyLisandro Dalcin2017-10-151-1/+0
|/
* Use complete IPython dependency path in test runner to work around current te...Stefan Behnel2017-10-141-1/+1
* Tighten preprocessor check that avoids the "fallthrough" C compiler warnings.Stefan Behnel2017-10-141-1/+1
* Simplify preprocessor code that avoids the "fallthrough" C compiler warnings,...Stefan Behnel2017-10-141-3/+1
* Fix compiler warnings in clang and C++ about unknown "fallthrough" attribute.Stefan Behnel2017-10-142-2/+7
* Update changelog.Stefan Behnel2017-10-141-0/+3
* Update classifiersHugo2017-10-141-0/+8
* RF: remove unneeded definesMichaelWS2017-10-131-6/+0
* BF: closes 1484 for unordered mapMichael Schatzow2017-10-133-14/+73
* Include changelog in Sphinx documentationMichael V. DePalatis2017-10-132-0/+2
* Update changelog.Stefan Behnel2017-10-131-0/+3
* Fix the first argument special method signatures of "__eq__", "__lt__" and th...Stefan Behnel2017-10-133-42/+161
* Link to the special method documentation in CPython from the Cython docs.Stefan Behnel2017-10-132-5/+25
* Update changelog.Stefan Behnel2017-10-101-0/+3
* Remove overambitious constant folding of comprehensions when they occur in a ...Stefan Behnel2017-10-102-0/+52
* Fix "declaration after code" C compile error.Stefan Behnel2017-10-071-1/+4
* Remove accidental use of "await" as a name as it becomes a keyword in Py3.7.Stefan Behnel2017-10-072-14/+14
* Update changelog and version in 0.27.x branch.Stefan Behnel2017-10-032-1/+19
* Turn compiler assertion into an error since it's triggered by user code.Stefan Behnel2017-10-032-3/+13
* Fix combined testing of warnings and errors in test runner.Stefan Behnel2017-10-031-2/+2
* Make test more portable. Python's array() type does not support the buffer in...Stefan Behnel2017-10-031-4/+3
* Fix compiler crash when analysing a complex name as a type using sizeof(X) tr...Stefan Behnel2017-10-032-4/+26
* Prevent config lookup of "C line in traceback" option from clearing the live ...Stefan Behnel2017-10-031-16/+22
* Repair compilation error for nested module level comprehensions.Stefan Behnel2017-10-033-8/+56
* Exclude external integration tests in appveyor again to get a passing build.Stefan Behnel2017-10-011-1/+0
* Avoid starting IPython in test module if we don't execute the tests.Stefan Behnel2017-10-011-7/+19
* Catch concrete exception in test to prevent hiding actual errors.Stefan Behnel2017-10-011-1/+1
* Properly disable IPython tests on import failures.Stefan Behnel2017-10-011-1/+1