summaryrefslogtreecommitdiff
path: root/Cython/Utility/ModuleSetupCode.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Move CYTHON_NO_PYINIT_EXPORT utility code into external file to avoid lengthy...Stefan Behnel2017-10-281-0/+23
* Merge branch '0.27.x'Stefan Behnel2017-10-201-3/+12
|\
| * PyPy3: Register module cleanup with atexit (PyModuleDef.m_free is not used)dalcinl/fix-module-cleanupLisandro Dalcin2017-10-181-2/+2
| * Fix definition CYTHON_FALLTHROUGH in module setup utility codeLisandro Dalcin2017-10-151-1/+10
* | Split Python compatibility adaptation code out of ModulePreamble section and ...Stefan Behnel2017-10-201-161/+164
* | Merge branch '0.27.x'Stefan Behnel2017-10-141-1/+1
|\ \ | |/
| * Tighten preprocessor check that avoids the "fallthrough" C compiler warnings.Stefan Behnel2017-10-141-1/+1
* | Merge branch '0.27.x'Stefan Behnel2017-10-141-3/+1
|\ \ | |/
| * Simplify preprocessor code that avoids the "fallthrough" C compiler warnings,...Stefan Behnel2017-10-141-3/+1
* | Merge branch '0.27.x'Stefan Behnel2017-10-141-2/+4
|\ \ | |/
| * Fix compiler warnings in clang and C++ about unknown "fallthrough" attribute.Stefan Behnel2017-10-141-2/+4
* | Speed up some dict lookups in Py3.5+ by calling the faster "_PyDict_GetItem_K...Stefan Behnel2017-10-081-0/+6
|/
* Fix typo.Stefan Behnel2017-09-281-1/+1
* Enforce single module initialisation despite PEP 489 allowing to re-execute a...Stefan Behnel2017-09-281-0/+4
* Disable PEP-489 support by default (*sigh*). It actually requires more than ...Stefan Behnel2017-09-271-1/+3