platform/upstream/python-cython.git
2013-12-19 Stefan Behnelfix refnanny error output in Py3
2013-12-19 Stefan Behnelsimplify code
2013-12-19 Robert Bradshawfix memoryview warnings
2013-12-18 Stefan Behnelfix try-finally-return in functions returning void
2013-12-18 Stefan Behnelfix build
2013-12-18 Stefan Behnelmerge
2013-12-18 Stefan Behnelimplement 'yield' inside of 'finally' clause
2013-12-18 Robert BradshawDon't warn on un-assigned error types.
2013-12-18 Robert BradshawError for Python objects as C++ class template parameters.
2013-12-17 Stefan Behnelcreate yield labels purely during code generation inste...
2013-12-16 Stefan Behnelmake intermediate goto-labels more readable by postfixi...
2013-12-16 Stefan Behnelremove unnecessary code from normal exit case of with...
2013-12-16 Stefan Behnelstreamline exit code of with-statement
2013-12-16 Stefan Behnelreduce lifetime of exception tuple in with-statement...
2013-12-16 Stefan Behnelreduce code overhead of with-statement a bit by using...
2013-12-16 Stefan Behnelimplement Python corner case of passing a tuple as...
2013-12-16 Stefan Behnelimprove annotation for else-clause in while-loop
2013-12-16 Stefan Behneldrop some redundant C labels in if-blocks
2013-12-16 Stefan Behneloptimise list.pop() a little more by splitting it off...
2013-12-16 Stefan Behneladd and improve some more may_be_none() methods
2013-12-16 Stefan Behnelfix typo
2013-12-16 Stefan Behnelmake CallNode a little smarter about when the return...
2013-12-16 Stefan Behnellet SliceNode know it returns a slice instance
2013-12-16 Stefan Behnelbe a bit smarter about when slicing or item access...
2013-12-15 Stefan Behnelfix compiler crash
2013-12-14 Stefan Behnelmake sure the optimised try-finally always generates...
2013-12-14 Stefan Behnelfix typo
2013-12-14 Stefan Behneldiscard else clause from try-except statements that...
2013-12-14 Stefan Behnelfix C compiler warning about unused variable
2013-12-14 Stefan Behnelextend test
2013-12-14 Stefan Behnelchangelog
2013-12-14 Stefan Behnelgenerate separate C code branches for each exit case...
2013-12-14 Stefan Behnelminor code cleanup
2013-12-14 Stefan Behnelmark node position in C file when starting to generate...
2013-12-14 Stefan Behnelset constant_result of empty containers created in...
2013-12-14 Stefan Behnelfix constant folding with false partial result
2013-12-14 Stefan Behnelundo the Python-optimisationism of assigning bound...
2013-12-13 Stefan Behnelremove redundant code
2013-12-13 Stefan Behnelsimplify constant folded comparison code a little and...
2013-12-13 Stefan Behnelundo accidental commit
2013-12-13 Stefan Behnelfix tracing again
2013-12-13 Stefan Behnelfix tracing in recent Py3.4
2013-12-12 Stefan Behnellet RemoveUnreachableCode discard any PassStatNodes...
2013-12-12 Stefan Behnelfix C compiler warning about unused utility code
2013-12-12 Robert BradshawUse makedirs rather than mkdir for cache location.
2013-12-12 Robert BradshawUse default location ~/.cycache when cython cache is...
2013-12-11 Stefan Behnelminor code cleanup
2013-12-11 Stefan Behnelclean up IntNode() instantiation
2013-12-11 Stefan Behnelminor portability tweak: mark non-tiny integer literals...
2013-12-11 Stefan Behneltweak order of constant generation a bit
2013-12-11 Stefan Behnelremove some code redundancy
2013-12-11 Stefan Behnelremove some unused code
2013-12-11 Stefan Behnelavoid accidental duplication of cached Python integer...
2013-12-11 Stefan Behnelfix syntax copy&pastos
2013-12-11 Stefan Behnelfix C compiler warnings about unused variables in tests
2013-12-11 Stefan Behneltry fixing test failures in int_literals.pyx by removin...
2013-12-11 Stefan Behnelremove unnecessary complication from test
2013-12-10 Stefan Behneluse normal constant calculation for special case to...
2013-12-10 Stefan Behnelrewrite constant folding for PrimaryCmpNode to properly...
2013-12-09 Stefan Behnelremove outdated comment
2013-12-08 Stefan Behnelfix test after making constant folding remove unused...
2013-12-08 Stefan Behnelfix compiler crash
2013-12-08 Stefan Behneldiscard lots of useless code and overhead from try...
2013-12-08 Stefan Behneladd test for empty try-finally
2013-12-08 Stefan Behnelfix Py2.4 C compilation problem
2013-12-08 Stefan Behnelfix problematic constant folding condition in cascaded...
2013-12-08 Stefan Behnelprevent compile time constant folding of non-portable...
2013-12-08 Stefan Behnelremove unused code
2013-12-08 Stefan Behneldiscard ExprStatNodes with constant expressions
2013-12-08 Stefan Behneladd some safety checks to the shared common types import
2013-12-08 Stefan Behnelavoid risk of stale pointers by looking up Cython types...
2013-12-08 Stefan Behnelsimplify common type sharing code and fix ref-count...
2013-12-07 Stefan Behneldisable docstring check in pylint
2013-12-07 Stefan Behnelfix crash during C++ class type inference
2013-12-07 Stefan Behnelfix bytes.join() in Py<=2.5
2013-12-07 Stefan Behnelfix return type of repr(): CPython guarantees to return str
2013-12-07 Stefan Behnelalso optimise basestring.join() since we now infer...
2013-12-07 Stefan Behneloptimise str/bytes.join() and infer the result type...
2013-12-07 Stefan Behnelrefactor duplicated code
2013-12-07 Stefan Behneldiscard useless (PyObject*) casts from values of builti...
2013-12-07 Stefan Behnelset another string length field in exception message...
2013-12-07 Stefan Behnelset another string length field in exception message...
2013-12-07 Stefan Behnelavoid useless signedness checks in overflow handling...
2013-12-07 Stefan Behnelundo condition change in struct conversion - was requir...
2013-12-07 Robert BradshawFix compiler crash in isinstance optimization.
2013-12-06 Stefan Behnelreformat some code
2013-12-06 Stefan Behnelfix condition to make struct conversion generate struct...
2013-12-06 Stefan Behnelclean up lots of places where exceptions are being...
2013-12-06 Stefan Behnelfix C compiler warning when checking int overflow for...
2013-12-06 Stefan Behnelminor improvements in __Pyx_ArgTypeTest() and prevent...
2013-12-06 Stefan Behnelfix for-in loop variable inference after enabling list...
2013-12-06 Stefan Behnelextend test
2013-12-06 Stefan Behnelinfer type of items in tuple/list constants on indexing...
2013-12-06 Stefan Behnelimprove type inference for string %/+/* operations...
2013-12-05 Stefan Behnelminor fix
2013-12-01 Stefan Behnelconstant fold in-tests against empty containers
2013-12-01 Stefan Behnelminor code cleanups
2013-12-01 Stefan Behnelallow visitor dispatch methods in pylint
2013-12-01 Stefan Behnelsimplify some code
2013-12-01 Stefan Behnelstrip multiplication factor when recursively folding...
next