Timeline
08/18/2008:
- 21:43 Ticket #45 (Inefficient comparison code generation) closed by
- invalid: Rich comparisons may return things other than True or False. We would have …
08/16/2008:
- 16:35 Ticket #51 (sizeof() only works for types, not variables) closed by
- fixed: See http://hg.cython.org/cython-devel/rev/9d489341f992
- 16:35 Ticket #41 (Bug accessing internals of Python long) closed by
- fixed: See http://hg.cython.org/cython-devel/rev/9d489341f992
- 15:29 Ticket #52 (internal compiler error if first argument of cpdef method has type "int") closed by
- fixed: OK, I've fixed this.
- 15:11 Ticket #44 (bad declarations do not produce warning) closed by
- fixed: This has been fixed.
- 14:44 Ticket #47 (annotation broken in dagss branch?) closed by
- fixed: It looks good.
- 07:17 Ticket #52 (internal compiler error if first argument of cpdef method has type "int") created by
- The following (invalid) code: […] gives this error message: […] …
- 04:28 Ticket #23 (cdef public attributes don't work for extension types) closed by
- fixed: Transforms now run on .pxd files as well.
- 04:18 Ticket #23 (cdef public attributes don't work for extension types) reopened by
- There appears to be some regression here with public attributes declared …
- 04:10 Ticket #46 (slicing string literals is broken) closed by
- fixed
- 04:09 Ticket #50 (Generate shorter string literals) closed by
- fixed
- 03:42 Ticket #49 (Missing opening parenthesis in code generation) closed by
- fixed
- 02:14 Ticket #51 (sizeof() only works for types, not variables) created by
- Perhaps we should do like Pyrex, with a SizeofTypeNode? and SizeofVarNode?
08/15/2008:
- 07:57 Ticket #50 (Generate shorter string literals) created by
- This small patch split docstrings around ¥n when put into C code, because …
- 07:15 Ticket #49 (Missing opening parenthesis in code generation) created by
- Hi, There is a missing parenthesis in module level code generation. Here …
- 01:58 Ticket #12 (__stdcall define wrong for Windows platform) closed by
- fixed: Sorry it has taken so long, I don't have Windows to test this on, and no …
08/13/2008:
- 22:14 Ticket #48 (Better error for casts) created by
- […]
- 02:19 Ticket #47 (annotation broken in dagss branch?) created by
08/12/2008:
- 06:53 Ticket #46 (slicing string literals is broken) created by
- I added a test case "run/literalslicing.pyx" to show that slicing string …
08/10/2008:
- 13:44 Ticket #45 (Inefficient comparison code generation) created by
- Consider the following code: […] Which generates: […] Is there a …
- 13:22 Ticket #44 (bad declarations do not produce warning) created by
- The following code does not produce any errors, which it should because of …
- 08:32 Ticket #43 (Mysterious error with conflicting types) created by
- If you declare, for example, _operands to be a list, and cdef …
08/06/2008:
- 01:37 Ticket #42 (C++ compile error when exception part declared on function) created by
- The following results in gcc 4.01 reporting "error: invalid conversion …
08/05/2008:
- 07:57 Ticket #41 (Bug accessing internals of Python long) created by
- I am trying to access the internal structure of a Python long. The code …
08/03/2008:
08/02/2008:
- 23:48 Ticket #11 ([patch] Transform utilities) closed by
- duplicate: Similar code has now been merged into the core and works great.
- 23:45 Ticket #29 ('make all' to build Scanners.so) closed by
- fixed: Thanks. See http://hg.cython.org/cython-devel/rev/9235d5b9e530
- 23:38 Ticket #31 (function pointers not accepted as function arguments) closed by
- fixed: Fixed in http://hg.cython.org/cython-devel/rev/7a1defb8455d
- 23:38 Ticket #35 (The following code causes mysterious exceptions) closed by
- fixed: See http://hg.cython.org/cython-devel/rev/7a1defb8455d
- 23:21 Ticket #40 (Annotate mode disables inline source comments) created by
- When I turned on the annotate mode for sage, the inline comments that show …
- 22:48 Ticket #26 (Cython doesn't catch double declaration with args) closed by
- fixed: Fixed with http://hg.cython.org/cython-devel/rev/6a8548429322
- 22:47 Ticket #30 (Cython .bat-script for windows) closed by
- fixed: http://hg.cython.org/cython-devel/rev/e6bad90a921e
- 22:39 Ticket #36 (Bad code generation) closed by
- fixed: See http://hg.cython.org/cython-devel/rev/def99eb4f83c
- 22:01 Ticket #25 (bug in char* declaration) closed by
- duplicate: This is ticket #18
- 21:59 Ticket #32 (unsigned integer suffix not parsed) closed by
- fixed: Fixed in http://hg.cython.org/cython-devel/rev/4695bbb3a785
- 21:59 Ticket #33 (Cython long and long long integer suffixes) closed by
- fixed: Fixed in http://hg.cython.org/cython-devel/rev/4695bbb3a785
- 21:57 Ticket #23 (cdef public attributes don't work for extension types) closed by
- fixed: Fixed in http://hg.cython.org/cython-devel/rev/193fe7e34b57 …
- 18:57 Ticket #34 (cython generates horrible bint comparison code) closed by
- fixed: This has been resolved by …
- 05:53 Ticket #39 (Bad list constructor code) created by
- Consider: […] This is wildly inefficient compared to a single …
- 05:35 Ticket #37 (Casting is slow because of TypeCheck Call) closed by
- invalid: Nevermind, this is me (misreading) the source code. Sorry
- 05:17 Ticket #38 (Non-optimal code generation for equality test) created by
- Consider: […] Note it is converting the result of a C boolean compare …
- 05:12 Ticket #37 (Casting is slow because of TypeCheck Call) created by
- For instance, consider: […] There needs to be a way to cast without …
- 05:08 Ticket #36 (Bad code generation) created by
- […] This should use a temporary instead of calling the thing being …
- 01:08 Ticket #35 (The following code causes mysterious exceptions) created by
- Consider: […] This gives the following traceback […] This should …
08/01/2008:
- 23:00 Ticket #34 (cython generates horrible bint comparison code) created by
- Consider: […] This generates a raw rich compare […] This generates …
07/29/2008:
- 13:07 Ticket #33 (Cython long and long long integer suffixes) created by
- In Cython, 100L has different meaning than in C. Also, 100LL …
- 13:05 Ticket #32 (unsigned integer suffix not parsed) created by
- In C one can type integers such as 123U to designate integer constants as …
- 00:23 Ticket #31 (function pointers not accepted as function arguments) created by
- The following should work. […]
07/24/2008:
- 09:51 Ticket #30 (Cython .bat-script for windows) created by
- Starting Cython from Windows PowerShell? with […] yields a new console …
07/23/2008:
- 02:13 Ticket #29 ('make all' to build Scanners.so) created by
- 00:57 Ticket #28 (Potential problems for extern cdefs in argument parsing) created by
- […] See thread at …
07/19/2008:
- 08:43 Ticket #27 (inspection of compilation namespace for IF/ELIF/ELSE/DEF) created by
- I tried to post this to cython-dev twice and got one awaiting moderator …
Note: See TracTimeline
for information about the timeline view.
