[issue1705] trace module does not annotate global statement

2008-01-01 Thread Guido van Rossum
Guido van Rossum added the comment: I don't see a bug here. It is as Amaury explains. -- nosy: +gvanrossum status: open -> closed __ Tracker <[EMAIL PROTECTED]> __

[issue1705] trace module does not annotate global statement

2007-12-30 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: But 'global' is a directive to the compiler, and won't generate any bytecode itself. There is no code at this line. -- nosy: +amaury.forgeotdarc __ Tracker <[EMAIL PROTECTED]>

[issue1705] trace module does not annotate global statement

2007-12-28 Thread Wummel
New submission from Wummel: Hi, the trace module does not properly count the global statement. So coverage tests of functions that use the global statement always file. To reproduce write a simple function using the global statement and store it in "mytest.py" (which is attached). Then run "pyt