summaryrefslogtreecommitdiff
path: root/Cython/Utility
Commit message (Expand)AuthorAgeFilesLines
* Try the Mapping protocol before the Sequence protocol on getitem/setitem/deli...gh1807_getitem_mapping_firstStefan Behnel2019-01-071-16/+31
* 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 warningMichael Buesch2018-12-311-2/+2
* | Only generate __qualname__ in Python versions supporting itJeroen Demeyer2019-01-011-0/+4
|/
* 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
* Add a new utility function "__Pyx_PyObject_GetAttrStrNoError()" that does not...Stefan Behnel2018-12-275-43/+74
* Non-int conversion to Py_hash_t.Robert Bradshaw2018-12-102-2/+22
* Merge branch 'release'Stefan Behnel2018-11-241-1/+1
|\
| * Add type cast to resolve C4804 (unsafe bool usage) warning in MSVC.Stefan Behnel2018-11-241-1/+1
* | Merge branch 'release'Stefan Behnel2018-11-241-6/+8
|\ \ | |/
| * Do not set "__path__" attribute on non-package modules.Stefan Behnel2018-11-241-6/+8
| * Fill shape when PyBUF_ND is in the flagsjakirkham2018-11-241-1/+1
* | Merge branch 'release'Stefan Behnel2018-11-231-1/+1
|\ \ | |/
| * Avoid implicit signed-to-unsigned conversion when calculating frame field off...Stefan Behnel2018-11-231-1/+1
| * Include `PyBUF_ND` in `extern`John Kirkham2018-11-231-0/+1
* | Merge pull request #2716 from jakirkham/memoryview_PyBUF_ND_shapeStefan Behnel2018-11-231-1/+2
|\ \
| * | Include `PyBUF_ND` in `extern`John Kirkham2018-11-201-0/+1
| * | Fill shape when PyBUF_ND is in the flagsjakirkham2018-11-161-1/+1
* | | Merge branch '0.29.x'Stefan Behnel2018-11-011-1/+1
|\ \ \ | | |/ | |/|
| * | Merge branch 'fix-2644' of https://github.com/aparamon/cython into aparamon-f...Stefan Behnel2018-11-011-1/+1
| |\ \
| | * | Unset PyBUF_WRITABLE when creating MemoryView for assignment sourceАндрей Парамонов2018-10-171-1/+1
* | | | Merge pull request #2676 from telamonian/fix_npy_bool_cast_falseStefan Behnel2018-10-311-3/+4
|\ \ \ \
| * | | | fixes #2675telamonian2018-10-221-3/+4
| | |/ / | |/| |
* | | | Merge branch '0.29.x'Stefan Behnel2018-10-301-17/+29
|\ \ \ \ | | |/ / | |/| |
| * | | stop generating code that compiler skipsCheuk Ting Ho2018-10-301-17/+29
* | | | Remove support for Py2.6 and various quirks that special-cased it.gh2692_remove_py26_supportStefan Behnel2018-10-307-99/+8
|/ / /
* | | Merge branch '0.29.x' into releaseStefan Behnel2018-10-271-0/+4
|\ \ \ | |/ / |/| |
| * | Workaround for long internals misconfiguration on 64-bit MinGW.Robert Bradshaw2018-10-241-0/+4
* | | Avoid some C compiler warnings about constant conditions.Stefan Behnel2018-10-152-3/+3
|/ /
* | Optimise internal bounds checks like "0 <= i <= limit" using a single unsigne...smarter_bounds_checksStefan Behnel2018-10-145-28/+43
* | Allocate sufficient space for null termination.Robert Bradshaw2018-10-031-1/+1
* | Fix type import enum.Robert Bradshaw2018-10-021-7/+4
* | Use enum rather than int for size_check.Robert Bradshaw2018-10-021-5/+12
* | Rename the options of the "check_size" feature to make them more obvious: "wa...Stefan Behnel2018-09-291-5/+5
* | MAINT: cannot use local enum in __Pyx functionsmattip2018-09-251-11/+11
* | ENH: add check_size option to ctypedef class for external classesmattip2018-09-251-10/+27
* | Fix wrong variable usage in __Pyx_PyIndex_AsSsize_t().Stefan Behnel2018-09-211-1/+1
* | Add forgotten utility code dependency.Stefan Behnel2018-09-151-0/+1
* | Always break the frame back-pointer chain when exiting from a generator, so t...Stefan Behnel2018-09-151-7/+9
* | Keep a note of what needs to be done.Stefan Behnel2018-09-151-1/+8
* | Initial (incomplete) attempt at supporting the Py3.7 exception state stack.Stefan Behnel2018-09-153-74/+155
* | Try to call "__rmod__()" during string %-formatting when the right side is a ...Stefan Behnel2018-09-081-2/+3
* | Clarify import error message: subinterpreters are supported, just not more th...Stefan Behnel2018-08-251-1/+2
* | Raise a more appropriate ImportError rather than a generic RuntimeError when ...Stefan Behnel2018-08-251-1/+1
* | Implement safe-guard to prevent loading Cython modules into multiple subinter...Stefan Behnel2018-08-251-0/+27
* | Fix C macro usage.Stefan Behnel2018-08-201-2/+2
* | Avoid an "unused function" warning of the C compiler.Stefan Behnel2018-08-201-0/+4