This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients ezio.melotti, simonsteiner
Date 2011-09-08.10:12:30
SpamBayes Score 9.0213115e-07
Marked as misclassified No
Message-id <1315476750.88.0.582746353195.issue12928@psf.upfronthosting.co.za>
In-reply-to
Content
This doesn't seem related to unittest:

>>> class MyTest:
...     def test_a(self):
...         b = 1
...         exec(compile("a = b + 1", '', 'single'))
...         assert a == 2
... 
>>> t = MyTest()
>>> t.test_a()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 5, in test_a
NameError: global name 'a' is not defined

With unittest I get the same error.
History
Date User Action Args
2011-09-08 10:12:30ezio.melottisetrecipients: + ezio.melotti, simonsteiner
2011-09-08 10:12:30ezio.melottisetmessageid: <1315476750.88.0.582746353195.issue12928@psf.upfronthosting.co.za>
2011-09-08 10:12:30ezio.melottilinkissue12928 messages
2011-09-08 10:12:30ezio.melotticreate