summaryrefslogtreecommitdiff
path: root/Cython/Utility/ModuleSetupCode.c
Commit message (Expand)AuthorAgeFilesLines
* Update URLs to https:// in docs and commentsJon Dufresne2019-01-111-1/+1
* Merge pull request #2775 from mbuesch/warning-fixes2Stefan Behnel2019-01-111-5/+21
|\
| * Avoid const-ness compiler warning in __Pyx_PyObject_AsWritableStringMichael Buesch2019-01-071-5/+21
* | fix the comments to have a c89 compliant generated codegastineau2019-01-021-2/+2
|/
* 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
* Non-int conversion to Py_hash_t.Robert Bradshaw2018-12-101-2/+2
* 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
* | Remove support for Py2.6 and various quirks that special-cased it.gh2692_remove_py26_supportStefan Behnel2018-10-301-21/+4
|/
* Workaround for long internals misconfiguration on 64-bit MinGW.Robert Bradshaw2018-10-241-0/+4
* Initial (incomplete) attempt at supporting the Py3.7 exception state stack.Stefan Behnel2018-09-151-0/+7
* 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
* make the fast-call signature test compatible with Stackless PythonAnselm Kruis2018-08-131-1/+6
* Merge pull request #2537 from jakirkham/extern_py_raw_memscoder2018-08-111-0/+6
|\
| * Tweak Raw memory macros' version constraintJohn Kirkham2018-08-091-1/+1
| * Define Python Raw Mem helpers in ModuleSetupCodeJohn Kirkham2018-08-091-0/+6
* | Enable PEP-489 multi-phase module initialisation, now that re-imports are han...Stefan Behnel2018-08-101-3/+1
* | Revert PEP-489 behaviour, but keep error raising code to make it easy to try ...Stefan Behnel2018-08-101-1/+3
* | Enable PEP-489 module initialisation again, but raise an error on re-inits.Stefan Behnel2018-08-101-3/+1
|/
* Replace GCC's attribute optimize("Os") by the better supported and similar (c...Stefan Behnel2018-07-221-3/+2
* Merge branch '0.28.x'Stefan Behnel2018-06-261-3/+11
|\
| * Add safety checks to prevent exception subtype checks with non-types. This ra...Stefan Behnel2018-06-261-3/+11
* | Merge branch '0.28.x'Stefan Behnel2018-06-261-0/+25
|\ \ | |/
| * Correct the runtime handling of exception tuples in except clauses.Stefan Behnel2018-06-261-0/+25
* | Adapt some non-const C-API declarations that were already constified in Py2.5.Stefan Behnel2018-05-261-2/+2
* | Remove redundant helper function "__Pyx_ImportModule()" which was only needed...Stefan Behnel2018-05-261-8/+6
* | Mark several one-time functions (used during module init) with CYTHON_SMALL_C...Stefan Behnel2018-05-251-13/+16
* | Merge branch '0.28.x'Stefan Behnel2018-05-181-1/+2
|\ \ | |/
| * Avoid segfault due to a bug in g++ 4.4.7 when the -Os setting for the module ...Stefan Behnel2018-05-181-1/+2
* | Merge branch '0.28.x'Stefan Behnel2018-05-181-0/+1
|\ \ | |/
| * Prevent UnicodeEncodeError in Py2 when ``%s`` formatting is optimised for uni...Stefan Behnel2018-05-181-0/+1
* | Add obvious branch hint to dict caching macro.Stefan Behnel2018-05-051-1/+1
* | Use dict versioning in Py3.6+ to make the lookup of Python module globals alm...Stefan Behnel2018-05-041-0/+4
* | Use dict versioning in Py3.6+ to reduce the overhead of checking for the "C-l...Stefan Behnel2018-05-031-0/+24
|/
* In Python 3, an unbound method is just the functionJeroen Demeyer2018-02-151-1/+1
* Explicitly disable CYTHON_SMALL_CODE in clang.Stefan Behnel2018-02-141-1/+3
* Allow users to override the CYTHON_SMALL_CODE macro.Stefan Behnel2018-02-141-0/+2
* Optimise the module init function for small code size regardless of the exter...Stefan Behnel2018-02-141-0/+6
* Reduce code overhead a little using a macro to get the sequence length of bui...Stefan Behnel2018-01-131-0/+7
* Extract some generated plain code into a utility code file to make it more vi...Stefan Behnel2018-01-051-0/+14
* Follow another fast-call signature change in CPython 3.7.Stefan Behnel2017-12-151-4/+8
* Guard access to internal Unicode hash value with the correct macro.Stefan Behnel2017-11-051-1/+1
* Improve preprocessor guard for new TSS API.Stefan Behnel2017-11-011-1/+1
* Add PythonCompatibility Codes for TSS (Thread Specific Storage) APIsonots2017-10-311-0/+34