Re: [Cython] relative_path_in_code_position_comments

2011-11-15 Thread Robert Bradshaw
On Wed, Sep 21, 2011 at 2:48 AM, Brett Calcott wrote: > Hi all, > The path in cython's error output is insensitive to the cwd where cython in > invoked. It seems to be based on this variable in Cython/Compiler/Main.py: >   relative_path_in_code_position_comments = True, > If I understand it right,

Re: [Cython] relative_path_in_code_position_comments

2011-11-15 Thread Stefan Behnel
Brett Calcott, 21.09.2011 11:48: The path in cython's error output is insensitive to the cwd where cython in invoked. It seems to be based on this variable in Cython/Compiler/Main.py: relative_path_in_code_position_comments = True, If I understand it right, the path output is relative to mod

[Cython] [RFE] cygdb not in entrypoints

2011-11-15 Thread Devin Bayer
Hi. Could you add cypdb to the entrypoints so that I can run it after an egg installation? Also, it would be great if you mentioned how to submit bugs in the README. It took me a while to find this list as the official bug submission channel. Thanks, Devin __

Re: [Cython] [RFE] cygdb not in entrypoints

2011-11-15 Thread mark florisson
On 15 November 2011 15:19, Devin Bayer wrote: > Hi. Could you add cypdb to the entrypoints so that I can run it after an egg > installation? Yeah that's a good idea, that has never been tested (it's cygdb by the way, as it is an extension of gdb). > Also, it would be great if you mentioned how

Re: [Cython] Generators not closed on dealloc (Cython 0.15.1+, current git master)

2011-11-15 Thread Vitja Makarov
2011/11/14 Vitja Makarov : > 2011/11/13 Matt Hagy : >> Hi, >> >> Cython generators aren’t closed on dealloc and this can lead to cleanup code >> not being ran (see example below). I couldn’t find any reference to this >> issue on the trac or the wiki and therefore wanted to report it. If this is