[issue3435] trace.py tries to get coverage data from non Python files

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> test needed versions: +Python 2.6, Python 3.1 -Python 2.5 ___ Python tracker ___ _

[issue3435] trace.py tries to get coverage data from non Python files

2008-10-17 Thread Jerry Seutter
Changes by Jerry Seutter <[EMAIL PROTECTED]>: -- nosy: +jseutter ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing

[issue3435] trace.py tries to get coverage data from non Python files

2008-07-24 Thread Gustavo Narea
Gustavo Narea <[EMAIL PROTECTED]> added the comment: Hi, Amaury. I found this problem using the Bitten continuous integration system (http://bitten.edgewall.org/ticket/304). I'm using the TurboGears framework with Genshi, and therefore mypackage.templates module should contain non-Python files.

[issue3435] trace.py tries to get coverage data from non Python files

2008-07-24 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Your remark is certainly valid, but where does this occur? Some tool that generate python code on the fly? Do you have an example, a use case? -- nosy: +amaury.forgeotdarc ___ Python tracker

[issue3435] trace.py tries to get coverage data from non Python files

2008-07-24 Thread Gustavo Narea
New submission from Gustavo Narea <[EMAIL PROTECTED]>: trace.py tries to get coverage information from non Python files, which raises a SyntaxError because the file doesn't contain valid Python code. I've attached a path that fixes this problem in Python 2.5. -- components: Library (Lib