Timeline
12/21/2008:
- 12:20 Ticket #173 (per-interpreter module state in Py3 (PEP 3121)) created by
- Py3 has a new infrastructure for making module state local to an …
- 11:53 Ticket #150 (object not a builtin) closed by
- fixed: I worked around this by simply letting Cython ignore the base class in …
12/19/2008:
- 19:01 Ticket #172 (Compiler crash for non-builtin ValueError plus numpy cimport) created by
- The following code causes a cython crash (using cython-devel as of …
- 17:48 Ticket #125 (Add support for Spam/__init__.pyx) closed by
- fixed: Works for me. http://hg.cython.org/cython-devel/rev/3569aa5167f1 Isn't …
- 13:01 Ticket #163 (Crash in FlattenBuiltinTypeCreation._find_handler()) closed by
- fixed: Fixed. http://hg.cython.org/cython-devel/rev/965dc9fc3da7
- 12:31 Ticket #164 (pyximport reportedly does not work on Python 2.6) closed by
- invalid: It's actually the ihooks module in Python 2.6 that's broken here, not …
12/18/2008:
- 14:34 Ticket #171 (Refcount nanny) created by
- I'm in the process of building a refcount nanny for Cython. This will aid …
- 09:58 Ticket #170 (better error when user-declared type conflicts with builtin type) created by
- The offending code […] Proposed behavior […]
12/16/2008:
- 12:52 Ticket #169 (Fix error in buffer typestring checking) closed by
- fixed
- 12:52 Ticket #169 (Fix error in buffer typestring checking) created by
- http://hg.cython.org/cython/rev/4a96e1aff2d4 See thread at …
- 12:49 Ticket #168 (fix bugs in Visitor cache) closed by
- fixed
- 12:49 Ticket #168 (fix bugs in Visitor cache) created by
- Also speeds up compile time. http://hg.cython.org/cython/rev/13d4c8b44618 …
- 12:46 Ticket #167 (Better error message for lack of pointer buffers support) closed by
- fixed
- 12:46 Ticket #167 (Better error message for lack of pointer buffers support) created by
- http://hg.cython.org/cython/rev/cdf889c30e7a
- 12:43 Ticket #162 (memory leak in error handling) closed by
- fixed
- 10:48 Ticket #166 (cdef'd list raises wrong exception on append when list is None) created by
- Hello, In cython-devel version 1497, I think a check for None is not …
- 09:12 Ticket #165 (cython crashes on cpdef without "self") created by
- Hello, As of version 1497, the following bad code causes cython to fail …
- 01:30 Ticket #164 (pyximport reportedly does not work on Python 2.6) created by
- I got a note saying that pyximport does not work in Python 2.6; I haven't …
12/15/2008:
- 09:15 Ticket #163 (Crash in FlattenBuiltinTypeCreation._find_handler()) created by
- FlattenBuiltintypeCreation._find_handler() assumes that …
12/14/2008:
- 01:21 Ticket #162 (memory leak in error handling) created by
- Cached exceptions are not properly decreed when function returns from …
12/13/2008:
- 10:58 Ticket #161 (sort method on lists should be able to take optional arguments) closed by
- fixed: http://hg.cython.org/cython-devel/rev/4bbc6166052f
- 10:56 Ticket #161 (sort method on lists should be able to take optional arguments) created by
12/12/2008:
- 15:41 Ticket #160 (support for subinterpreters and module cleanup in Py3) created by
- Py3 implements PEP 3121 that changes the way modules can handle global …
- 00:25 Ticket #159 (implement set literals, set comprehensions and dict comprehensions) closed by
- fixed: Implemented in rev b638811d14d0: …
- 00:17 Ticket #159 (implement set literals, set comprehensions and dict comprehensions) created by
- Py3 has them and so should Cython.
12/09/2008:
- 22:53 Ticket #158 (out-of-order assignment with strings causes segfault) created by
- Hello, In cython 1474:7f1b96cad687, the following code results in a …
- 18:09 Ticket #157 (multiple definitions of method fails in c code, not cython) created by
- In version 1474:7f1b96cad687, defining multiple versions of the same …
- 15:08 Ticket #156 (cpdef method w/ no self crashes cython) created by
- Hello, In version 1474:7f1b96cad687, the following code crashes the …
- 14:43 Ticket #155 (AssertionError w/ CloneNode when mixing python objects, buffers, and +=) created by
- Hello, In cython version 1474:7f1b96cad687, the following code segments …
- 14:30 Ticket #154 (cleanup attempted for unused (so undeclared) buffer) created by
- Hello, In version 1474:7f1b96cad687, the following code produces c code …
12/08/2008:
- 23:25 Ticket #153 (safe, ref-counted support for dynamic memory allocation) created by
- See this thread: …
- 23:15 Ticket #152 (subtyping PyVarObject (e.g. bytes/tuple)) created by
- The problem with a PyVarObject (such as bytes or tuple) is that its …
- 11:46 Ticket #102 (from blah import (a, b, c)) closed by
- fixed: Implemented in http://hg.cython.org/cython-devel/rev/3ba99a87b30d as of …
12/07/2008:
- 13:48 Ticket #151 ('with' statement doesn't compile on C++) created by
- This crashes due to incorrect temp deallocation: […] The generated code …
- 12:19 Ticket #146 (FlattenInListTransform is disabled) closed by
- fixed: Fixed here: http://hg.cython.org/cython-devel/rev/49a8357fc01e
12/03/2008:
- 14:48 Ticket #148 (for-loop crashes due to double allocation of temps) closed by
- fixed: works for me now
12/01/2008:
- 23:39 Ticket #150 (object not a builtin) created by
- For example, this should work […]
11/30/2008:
- 16:02 Ticket #149 (Call subexpr.free_temps from everywhere needed) closed by
- fixed: OK this looks ok now http://hg.cython.org/cython-devel/rev/6dbd25167239 …
- 05:27 Ticket #68 (Finish moving constant generation to Code.py) closed by
- duplicate: Duplicate of #144. (Closing the oldest one because the second on is better …
- 04:48 Ticket #149 (Call subexpr.free_temps from everywhere needed) created by
- First, get a patch I'm sitting on ready to fix recent issue posted on …
- 04:24 Ticket #148 (for-loop crashes due to double allocation of temps) created by
- It seems that in certain cases (at least in lxml, haven't got a trivial …
- 03:49 Ticket #147 (BoolBinopNode doesn't reuse temps) created by
- Blocked by #77. Before, BoolBinopNode? was pretty smart about only using …
- 03:32 Ticket #146 (FlattenInListTransform is disabled) created by
- PersistentNode doesn't play nice with the new temps. It is only used …
- 02:43 Ticket #145 (Problem with literals and boolean operators) created by
- Currently, […] prints True, which doesn't agree with Python. …
11/29/2008:
- 21:25 Ticket #123 (Regression due to PyDict_Next optimization) closed by
- fixed: Yes, that's the right thing to do.
- 14:37 Ticket #124 (Misplaced decref due to PyDict_Next optimization) closed by
- fixed: From what I can see, these two fixes it: …
- 11:42 Ticket #144 (Fix BlockNode/move literals/constants to code generation) created by
- In summer 2008, I moved the things that BlockNode was made for doing …
11/28/2008:
- 04:49 Ticket #120 (Make TupleNode use new temp allocation) closed by
- fixed: Changed in 71d8a06957eb: …
- 01:16 Ticket #143 (Need to change syntax for pxd function typing) created by
- The new inline pxd functions conflicts in syntax with the recently …
11/27/2008:
- 22:42 Ticket #142 (module dictionaries not deallocated at Python finalization) created by
- 22:26 Ticket #141 (cpdef special methods) created by
- One should be able to make __call__, __init__, etc. go through …
- 10:24 Ticket #140 (Feature: Inline function definition in pxd file) closed by
- fixed: http://hg.cython.org/cython-devel/rev/151d8366f329
- 10:19 Ticket #140 (Feature: Inline function definition in pxd file) created by
11/25/2008:
- 17:13 Ticket #139 (empty switch block when if statement contains pass) closed by
- fixed
- 17:13 Ticket #139 (empty switch block when if statement contains pass) created by
- http://hg.cython.org/cython/rev/04e83ffd8ea2
- 17:12 Ticket #138 (infinite loop in buffer code) closed by
- fixed: http://hg.cython.org/cython/rev/43d4e2b19134
- 17:12 Ticket #138 (infinite loop in buffer code) created by
- See http://trac.sagemath.org/sage_trac/ticket/4206
- 17:08 Ticket #137 (fix compiler crash on forward declarations) closed by
- fixed: http://hg.cython.org/cython/rev/c8d4fc990029
- 17:08 Ticket #137 (fix compiler crash on forward declarations) created by
- 17:08 Ticket #136 (invalid c code with recursive typedef struct) closed by
- fixed: http://hg.cython.org/cython/rev/92baafe0edf3
- 11:29 Ticket #133 (Illegal casting caused by new PyDict_Next iteration with typed variables) closed by
- fixed: Fixed. http://hg.cython.org/cython-devel/rev/e490ccfecad0 …
- 03:41 Ticket #136 (invalid c code with recursive typedef struct) created by
- […]
- 00:45 Ticket #135 (bad code segment crashes cython) created by
- Hello, The following (bad) code segment crashes cython: […] The …
- 00:36 Ticket #134 (cpdef method w/ unused buffer causes compilation error) created by
- Hello, The following code segment won't compile: […] When I try to …
- 00:27 Ticket #133 (Illegal casting caused by new PyDict_Next iteration with typed variables) created by
- It seems that I've hit a bug in the new dictionary iteration stuff (which …
11/24/2008:
- 03:51 Ticket #129 (from module import (a,b,c)) closed by
- fixed: Done. http://hg.cython.org/cython-devel/rev/3ba99a87b30d
- 03:26 Ticket #132 (Deletion of local variables in functions is not supported) created by
- […] raises a compiler error. Supporting this might depend on better …
- 03:16 Ticket #131 (getattr3() should be merged with getattr()) created by
- Especially for pure Python compilation, getattr() should support three …
- 03:09 Ticket #130 (Missing support for Python special methods for rich comparison) created by
- In pure Python mode, the __richcmp__() special method is not …
11/23/2008:
- 13:38 Ticket #129 (from module import (a,b,c)) created by
- Python supports parentheses around imported names, which allows them to …
- 13:31 Ticket #128 (Reduce name collisions in Pure Python mode) created by
- The parser currently handles names like "char" or "int" the same in .pyx …
- 13:24 Ticket #127 (power operator (**) should be allowed in Python code) created by
- Even in pure Python modules, Cython disallows the ** operator.
11/21/2008:
- 16:16 Ticket #126 (includes form cimported modules should come before this module's includes) closed by
- fixed
- 16:16 Ticket #126 (includes form cimported modules should come before this module's includes) created by
- This is the case *except* when they both include the same file.
Note: See TracTimeline
for information about the timeline view.
