summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add "generator_stop" to default future imports for language_level=3.gh2580_enable_generator_stopStefan Behnel2019-01-071-3/+3
| | | | See #2580.
* Add readme comment to point potential contributors to the 3.0 milestone tickets.Stefan Behnel2019-01-071-0/+4
|
* Add a link to the "limitation" docs page that selects the known differences ↵Stefan Behnel2019-01-071-3/+6
| | | | in Python semantics from the Github issue tracker.
* Merge branch '0.29.x'Stefan Behnel2019-01-050-0/+0
|\
| * Fix crash in lvalue_refs test.Elliott Sales de Andrade2019-01-051-1/+1
| | | | | | | | | | Accessing the first element of a `std::vector` that is empty results in a crash.
* | Merge pull request #2783 from QuLogic/fix-lvalue_refsStefan Behnel2019-01-051-1/+1
|\ \ | | | | | | Fix crash in lvalue_refs test.
| * | Fix crash in lvalue_refs test.Elliott Sales de Andrade2019-01-041-1/+1
|/ / | | | | | | | | Accessing the first element of a `std::vector` that is empty results in a crash.
* | De-optimise the unicode methods ".upper()", ".lower()" and ".title()" on ↵Stefan Behnel2019-01-034-15/+32
| | | | | | | | single character values since they must still be able to return multiple characters.
* | Fix typo in changelog.Stefan Behnel2019-01-021-1/+1
| |
* | Merge branch '0.29.x'Stefan Behnel2019-01-022-3/+21
|\ \ | |/
| * Update changelog.Stefan Behnel2019-01-021-0/+16
| |
| * Reformat code, add comment.Stefan Behnel2019-01-021-3/+5
| |
* | Merge branch '0.29.x'Stefan Behnel2019-01-020-0/+0
|\ \ | |/
| * Fix source of non-deterministic cython output for try/finally statements.Martijn van Steenbergen2019-01-021-3/+3
| | | | | | | | | | | | The __PYX_XDEC_MEMVIEW statements generated for try/finally statements varied per build if there were multiple types of variables to be cleaned up.
* | Merge pull request #2779 from MedeaMelana/masterStefan Behnel2019-01-021-3/+3
|\ \ | | | | | | Fix source of non-deterministic cython output for try/finally statements
| * | Fix source of non-deterministic cython output for try/finally statements.Martijn van Steenbergen2019-01-021-3/+3
|/ / | | | | | | | | | | The __PYX_XDEC_MEMVIEW statements generated for try/finally statements varied per build if there were multiple types of variables to be cleaned up.
* | Merge branch '0.29.x'Stefan Behnel2019-01-020-0/+0
|\ \ | |/
| * DOC: Fixed name of .so file in userguide's numpy_tutorial.Paul van Mulbregt2019-01-021-2/+2
| | | | | | | | "convolve_cy.so" -> "compute_cy.so" to match imports used in this tutorial.
| * fix the comments to have a c89 compliant generated codegastineau2019-01-021-2/+2
| |
| * TypeConversion: Fix pointer qualifier compiler warningMichael Buesch2019-01-021-2/+2
| | | | | | | | | | This fixes the following compiler warning: warning: cast discards ‘const’ qualifier from pointer target type [-Wcast-qual]
* | Merge pull request #2778 from gastineau/masterStefan Behnel2019-01-021-2/+2
|\ \ | | | | | | fix the comments to have a c89 compliant generated code
| * | fix the comments to have a c89 compliant generated codegastineau2019-01-021-2/+2
|/ /
* | Merge pull request #2774 from mbuesch/warning-fixesStefan Behnel2019-01-011-2/+2
|\ \ | | | | | | TypeConversion: Fix pointer qualifier compiler warning [-Wcast-qual]
| * | TypeConversion: Fix pointer qualifier compiler warningMichael Buesch2018-12-311-2/+2
| | | | | | | | | | | | | | | This fixes the following compiler warning: warning: cast discards ‘const’ qualifier from pointer target type [-Wcast-qual]
* | | Merge pull request #2773 from jdemeyer/qualnameStefan Behnel2019-01-015-12/+17
|\ \ \ | |/ / |/| | Only generate __qualname__ in Python versions supporting it
| * | Only generate __qualname__ in Python versions supporting itJeroen Demeyer2019-01-015-12/+17
|/ /
* | Work around some PyPy test issues.Stefan Behnel2018-12-271-6/+4
| |
* | Work around some PyPy test issues.Stefan Behnel2018-12-271-9/+8
| |
* | Fix a C compiler warning about an unused variable when compiling in PyPy.Stefan Behnel2018-12-271-1/+1
| |
* | Avoid a C compiler warning in PyPy3.Stefan Behnel2018-12-271-0/+3
| |
* | Work around a C compiler warning (in PyPy's cpyext).Stefan Behnel2018-12-271-1/+1
| |
* | Exclude jupyter from PyPy tests since it has too many dependencies that may ↵Stefan Behnel2018-12-272-1/+1
| | | | | | | | not install at all.
* | Merge pull request #2769 from cython/faster_getattrStefan Behnel2018-12-275-43/+74
|\ \ | | | | | | Speed up attribute lookups that do not care about the AttributeError
| * | Add a new utility function "__Pyx_PyObject_GetAttrStrNoError()" that does ↵Stefan Behnel2018-12-275-43/+74
|/ / | | | | | | not raise AttributeError if the lookup fails, and use "_PyObject_GenericGetAttrWithDict()" for it in Py3.7+ to avoid instantiating the exception completely.
* | Merge pull request #2761 from pvanmulbregt/numpy_tutorial_fix_convolve_nameRobert Bradshaw2018-12-201-2/+2
|\ \ | | | | | | DOC: Fixed name of .so file in userguide's numpy_tutorial.
| * | DOC: Fixed name of .so file in userguide's numpy_tutorial.Paul van Mulbregt2018-12-161-2/+2
|/ / | | | | | | "convolve_cy.so" -> "compute_cy.so" to match imports used in this tutorial.
* | Update changelog.Stefan Behnel2018-12-141-0/+3
| |
* | Update changelog.Stefan Behnel2018-12-141-0/+3
| |
* | Use explicit boolean values instead of not so obvious integers.Stefan Behnel2018-12-141-6/+6
| |
* | Merge pull request #2748 from QuLogic/abs-nogilStefan Behnel2018-12-143-8/+143
|\ \ | | | | | | Mark optimized abs as being nogil-safe.
| * | Mark optimized abs as being nogil-safe.Elliott Sales de Andrade2018-12-083-8/+143
| | |
* | | Merge branch '0.29.x'Stefan Behnel2018-12-141-1/+1
|\ \ \ | | |/ | |/|
| * | Prepare release of 0.29.2.0.29.2Stefan Behnel2018-12-142-2/+2
| | |
* | | Merge branch '0.29.x'Stefan Behnel2018-12-141-1/+1
|\ \ \ | |/ /
| * | Use correct error label when creating merged unicode string literals.Stefan Behnel2018-12-141-1/+1
| | |
* | | Merge branch '0.29.x'Stefan Behnel2018-12-143-5/+65
|\ \ \ | |/ /
| * | Prevent dynamically multiplied tuple constants from being deduplicated. Only ↵Stefan Behnel2018-12-143-5/+65
| | | | | | | | | | | | the constant part is considered for them.
* | | Merge branch '0.29.x'Stefan Behnel2018-12-121-0/+19
|\ \ \ | |/ /
| * | Update changelog.Stefan Behnel2018-12-121-0/+19
| | |
* | | Merge branch '0.29.x'Stefan Behnel2018-12-122-16/+28
|\ \ \ | |/ /