[issue7026] test_urllib: unsetting missing 'env' variable

2010-04-11 Thread Senthil Kumaran
Senthil Kumaran added the comment: I am unable to reproduce this issue in the trunk/py3k. Buildbots have not complained either. I am closing this bug. srid: If you have steps to reproduce, feel free to reopen it. -- status: open -> closed ___ Python

[issue7026] test_urllib: unsetting missing 'env' variable

2010-04-05 Thread Senthil Kumaran
Senthil Kumaran added the comment: Sridhar, I am unable to reproduce this bug in the 3.x (py3k and release31-maint) on 64 bit linux. I glance at the code to see any underpinnings for this RuntimeError and could not find any at the place the exception occurred. Is it anyway related to other b

[issue7026] test_urllib: unsetting missing 'env' variable

2010-03-22 Thread Sridhar Ratnakumar
Sridhar Ratnakumar added the comment: Re-opening. test_urllib in 3.1.2 fail similarly (on Linux 64-bit): test_urllib Warning: os.environ was modified by test_urllib test test_urllib failed -- Traceback (most recent call last): File "/home/apy/rrun/tmp/autotest/apy/lib/python3.1/test/test_urll

[issue7026] test_urllib: unsetting missing 'env' variable

2010-01-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: Yes, I indeed, I quickly moved to patch it up in the trunk and did a svn submit -m "..." I had your big patch for tests in the trunk. I have reverted it for now and shall fix this one only. -- ___ Python tracker

[issue7026] test_urllib: unsetting missing 'env' variable

2010-01-08 Thread Florent Xicluna
Florent Xicluna added the comment: Thanks. It should be propagated to 2.7. -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-

[issue7026] test_urllib: unsetting missing 'env' variable

2010-01-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in revision 77367 -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue7026] test_urllib: unsetting missing 'env' variable

2010-01-08 Thread Florent Xicluna
Florent Xicluna added the comment: Index: Lib/test/test_urllib.py === --- Lib/test/test_urllib.py (revision 77361) +++ Lib/test/test_urllib.py (working copy) @@ -101,7 +101,7 @@ # Records changes to env vars

[issue7026] test_urllib: unsetting missing 'env' variable

2010-01-08 Thread Florent Xicluna
Changes by Florent Xicluna : -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/o

[issue7026] test_urllib: unsetting missing 'env' variable

2010-01-08 Thread Florent Xicluna
Florent Xicluna added the comment: Index: Lib/test/test_urllib.py === --- Lib/test/test_urllib.py (revision 77361) +++ Lib/test/test_urllib.py (working copy) @@ -101,7 +101,7 @@ # Records changes to env vars

[issue7026] test_urllib: unsetting missing 'env' variable

2010-01-08 Thread Florent Xicluna
Florent Xicluna added the comment: The method does not work as expected. See msg97419: -- Author: Sridhar Ratnakumar (srid) Date: 2010-01-08 18:26 I get this error while running Python 2.6.4 tests (on 64-bit Linux box)

[issue7026] test_urllib: unsetting missing 'env' variable

2009-10-04 Thread Senthil Kumaran
Senthil Kumaran added the comment: Committed revision 75254 for release26-maint. -- status: open -> closed ___ Python tracker ___ ___

[issue7026] test_urllib: unsetting missing 'env' variable

2009-10-01 Thread Senthil Kumaran
Senthil Kumaran added the comment: This needs to be changed in python2.6 branch as well. I was hesitant as barry was making the build. After the branch opens, I shall make the changes in that and close the issue. -- nosy: +barry ___ Python tracker <

[issue7026] test_urllib: unsetting missing 'env' variable

2009-10-01 Thread Georg Brandl
Georg Brandl added the comment: Can this issue be closed then? -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mail

[issue7026] test_urllib: unsetting missing 'env' variable

2009-09-30 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed that in revision 75166. Even in release26-maint got to chnage it from env.unset(k) to self.env.unset(k). -- assignee: -> orsenthil nosy: +orsenthil resolution: -> fixed ___ Python tracker

[issue7026] test_urllib: unsetting missing 'env' variable

2009-09-30 Thread Sridhar Ratnakumar
Sridhar Ratnakumar added the comment: The above mentioned traceback occurs in 2.6.3rc1 -- ___ Python tracker ___ ___ Python-bugs-list

[issue7026] test_urllib: unsetting missing 'env' variable

2009-09-30 Thread Sridhar Ratnakumar
New submission from Sridhar Ratnakumar : test test_urllib failed -- Traceback (most recent call last): File "/home/apy/rrun/tmp/autotest/apy/lib/python2.6/test/ test_urllib.py", line 106, in setUp env.unset(k) NameError: global name 'env' is not defined Looking in trunk's copy I see this: