platform/upstream/python-cython.git
2013-08-30 Stefan BehnelPyPy doesn't define Py_OptimizeFlag => always set it...
2013-08-30 Stefan BehnelPy2.5 test fix
2013-08-29 Stefan Behneladd test for __debug__ and asserts with Python's -O...
2013-08-29 Stefan Behneldisable 'assert' when Python runtime runs with -O/-OO
2013-08-29 Stefan Behneloptimize __debug__ flag
2013-08-28 Stefan Behnelcompile Tempita to speed up startup time and template...
2013-08-28 Stefan Behnelremove unnecessary imports
2013-08-28 Stefan Behnelchangelog
2013-08-27 Robert BradshawMerge branch 'common-types' into pristine
2013-08-25 Stefan Behneladd -3 option to cythonize script to make it easier...
2013-08-25 Stefan Behneladd --quiet and --force options to cythonize script
2013-08-24 Stefan Behnelfix distutils build
2013-08-24 Stefan Behnelupdate and clean up cystdlib.py script
2013-08-23 Stefan Behneladd --lenient option also to normal command line
2013-08-21 Stefan Behnelremove redundant qualifier from method name
2013-08-21 Stefan Behnelsimplify and extend in/not-in and is/is-not optimisatio...
2013-08-21 Stefan Behnelsimplify generated code by converting 'not X in Y'...
2013-08-20 Stefan Behnelfix directive parsing in cythonize script
2013-08-15 Robert BradshawCorrect globals for shared function types.
2013-08-13 Robert BradshawUse PyImport_GetModuleDict() for common utility types.
2013-08-13 Stefan Behnelminor doc fixes
2013-08-13 Robert BradshawCommon utility types test.
2013-08-13 Robert BradshawPy3 fixes for shared types.
2013-08-13 Robert BradshawMerge branch 'master' into common-types
2013-08-13 Robert BradshawUse shared module for more Cython types.
2013-08-13 Robert BradshawCleanup type sharing.
2013-08-13 Robert BradshawClarify cdef vs. def function arguments.
2013-08-11 Stefan Behnelmake test terminate in Py2.6 by disabling parallel...
2013-08-11 Stefan Behneldisable cythonize_script* tests in Py2.4: missing suppo...
2013-08-11 Stefan Behnelextract normal cythonize script test from package compi...
2013-08-11 Stefan Behnelproperly support '**' pattern in file selection
2013-08-11 Stefan Behnelfix base path finding for in-place compilation
2013-08-11 Stefan Behnellooking up package path at import time requires Py3.3+
2013-08-11 Stefan BehnelPy2.4 fix, no need to join the process pool in the...
2013-08-11 Robert BradshawShare common type object for Cython functions.
2013-08-11 Stefan Behnelminor safety fix
2013-08-11 Stefan Behnelminor cleanup
2013-08-11 Stefan Behnelmerge
2013-08-11 Stefan Behnelmove cythonize script to Cython.Build.Cythonize to...
2013-08-11 Stefan Behnelavoid useless overhead if we don't find anything to do
2013-08-11 Robert BradshawExplicitly disallow caching + common_utility_include_dir.
2013-08-11 Robert BradshawFix common_include_dir test for TravisCI.
2013-08-10 Stefan Behnelprovide serialised fallback if parallel processing...
2013-08-10 Stefan Behneladd simple test for cythonize script
2013-08-10 Stefan Behnelreorder options in bin/cythonize
2013-08-10 Stefan Behneladd bin/cythonize script
2013-08-10 Stefan Behnelallow srctree header commands to be wrapped in triple...
2013-08-10 Stefan Behnelfix for Py<=2.5
2013-08-10 Stefan Behnelextend test
2013-08-10 Stefan Behnelhandle failure to create a process pool in cythonize...
2013-08-10 Stefan Behnelfix "exclude_failures" mode in cythonize() by also...
2013-08-10 Stefan Behnelchangelog
2013-08-10 Stefan Behnelextend test
2013-08-10 Stefan Behnelavoid generating empty PyMethodDef array for types...
2013-08-10 Stefan Behnelencode code to bytes before hashing it
2013-08-10 Stefan Behnelprint a proper exception traceback when parallel cython...
2013-08-09 Robert BradshawTests for common include dir.
2013-08-09 Stefan Behneltest improved deallocation in Py3.4
2013-08-09 Stefan Behneladd some tests for __dealloc__()
2013-08-09 Stefan Behnelfix code generated for __dealloc__() and __releasebuffe...
2013-08-09 Stefan Behnelbe a tiny bit smarter about when to GC_Track for the...
2013-08-09 Stefan Behnelextend test
2013-08-09 Stefan Behnelclean up tp_dealloc() code and integrate call to tp_fin...
2013-08-09 Stefan Behnelchangelog
2013-08-09 Stefan Behnelprovide no_gc_clear decorator in pure mode
2013-08-09 Stefan Behnelchangelog
2013-08-09 Stefan Behnelmake generators use tp_finalize instead of tp_del for...
2013-08-09 Stefan Behnelmove method from Scope to CClassScope that only applies...
2013-08-09 Stefan Behnelreformat and clean up some old code
2013-08-09 Stefan BehnelPy3 fix
2013-08-09 Stefan Behnelfix docstring reuse from distutils Extension base class
2013-08-08 Stefan Behnelextend no_gc_clear test to check closures for their...
2013-08-08 Stefan Behnelmake the NULL-instead-of-None change in tp_clear()...
2013-08-08 Stefan Behnelremove outdated comment
2013-08-08 scoderMerge pull request #233 from vitek/_type_inference_new
2013-08-08 scoderMerge pull request #248 from Bluehorn/master
2013-08-06 Stefan Behneldisable PyPy build on travis - takes way too long
2013-08-06 Torsten LandschoffRemoved directive_type for gc_no_clear as it can be...
2013-08-06 Torsten LandschoffCleanup unneeded cpdefs and public declarations.
2013-08-06 Stefan Behnelfix CPython version check for tp_finalize()
2013-08-06 Stefan Behnelrevert actual tp_finalize() usages, needs more thought
2013-08-06 Stefan Behnelminor C code simplification
2013-08-04 Stefan Behneluse proper C-API function for generator finalisation
2013-08-04 Stefan Behnelenable Py_TPFLAGS_HAVE_FINALIZE flag for extension...
2013-08-04 Stefan Behnelfix CPython version checking for tp_finalize()
2013-08-04 Stefan Behnelminor code cleanup
2013-08-04 Stefan Behnelmove object finalisation code from tp_dealloc() into...
2013-08-03 Stefan Behneluse tp_finalize instead of tp_del for Cython generators
2013-08-03 Stefan Behneladapt more type structs to Py3.4
2013-08-03 Stefan Behneladd tp_finalize slot for Py3.4+
2013-08-03 Robert BradshawAdd memory allocation from wiki.
2013-08-03 Robert BradshawAdded limitations from wiki.
2013-08-01 Torsten LandschoffFixed no_gc_clear test for Python 3.
2013-08-01 Torsten LandschoffRenamed unit test to match decorator name.
2013-08-01 Torsten LandschoffAdd decorator @gc_no_clear to disable tp_clear slot.
2013-08-01 Torsten LandschoffChange tp_clear generation to clear to NULL.
2013-07-27 Stefan Behneldisable report output in build log
2013-07-27 Stefan Behnelloosen source line constraints in pylintrc
2013-07-27 Stefan Behnelreformat code
2013-07-27 Stefan Behneladd prliminary pylint configuration
next