- 23 Jul, 2017 1 commit
-
-
Stefan Behnel authored
write warning into generated header file for now to explain that calling the module init function is not enough to initialise the module anymore
-
- 22 Jul, 2017 14 commits
-
-
Stefan Behnel authored
disable "initial_file_path" test in Py3.5+ since it's superseded by the ModuleSpec metadata during module initialisation
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
disable file/path name overwriting during module setup in post-PEP489 runtimes (where the ModuleSpec provides proper metadata)
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
minimal implementation of module init procedure for embedding case, ignoring module attributes for now (which we don't know anyway, e.g. __file__ ?)
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
allow disabling the ABC registration of the Cython Generator and Coroutine types to support compiling the "abc" module in CPython's stdlib itself
-
Robert Bradshaw authored
skip_win32 doesn't properly skip tests
-
- 21 Jul, 2017 7 commits
-
-
Chris Hogan authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Minor safety/speed fix to prevent looking for a "__dict__" in an unpickled object if we don't have anything to fill it with in the first place.
-
Stefan Behnel authored
Escape another local variable in generated pickle helper function to prevent conflicts with the user defined class name. See #1786.
-
scoder authored
Don't conflict with a class named 'result' in auto-pickle
-
Stefan Behnel authored
Revert "Escape local variables in generated pickle helper functions to prevent conflicts with the user defined class name." This reverts commit a158967e.
-
Stefan Behnel authored
Escape local variables in generated pickle helper functions to prevent conflicts with the user defined class name. Closes #1786.
-
- 20 Jul, 2017 5 commits
-
-
Jason Madden authored
Fixes #1786.
-
scoder authored
Issue #1784, Fix string method in Skylark pyx_library
-
Guro Bokum authored
-
scoder authored
jdemeyer -> Jeroen Demeyer
-
Jeroen Demeyer authored
-
- 19 Jul, 2017 2 commits
-
-
Stefan Behnel authored
-
Robert Bradshaw authored
-
- 18 Jul, 2017 8 commits
-
-
Robert Bradshaw authored
-
Robert Bradshaw authored
Add basic support for std::function
-
Robert Bradshaw authored
Don't use CPython PyMethodDescrObject.
-
Robert Bradshaw authored
Repair compile time complex expressions
-
Robert Bradshaw authored
Fix complex comparison
-
Robert Bradshaw authored
Add declarations for PyObject_GenericGetAttr and PyObject_GenericSetAttr
-
Robert Bradshaw authored
This brings the overhead to about 10%, or 20ns per traceback.
-
Robert Bradshaw authored
use faster __Pyx_PyObject_GetAttrStr() implementation and avoid stati…
-
- 17 Jul, 2017 3 commits
-
-
Jeroen Demeyer authored
-
Stefan Behnel authored
-
Stefan Behnel authored
allow enabling/disabling C line display in tracebacks with a new C compile time macro CYTHON_CLINE_IN_TRACEBACK=0/1
-