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 flox
Recipients barry, flox, georg.brandl, orsenthil, srid
Date 2010-01-08.17:53:08
SpamBayes Score 0.0015565378
Marked as misclassified No
Message-id <1262973189.26.0.0608009185023.issue7026@psf.upfronthosting.co.za>
In-reply-to
Content
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
         self.env = test_support.EnvironmentVarGuard()
         # Delete all proxy related env vars
-        for k, v in os.environ.iteritems():
+        for k, v in os.environ.keys():
             if 'proxy' in k.lower():
                 self.env.unset(k)
History
Date User Action Args
2010-01-08 17:53:37floxunlinkissue7026 messages
2010-01-08 17:53:09floxsetrecipients: + flox, barry, georg.brandl, orsenthil, srid
2010-01-08 17:53:09floxsetmessageid: <1262973189.26.0.0608009185023.issue7026@psf.upfronthosting.co.za>
2010-01-08 17:53:08floxlinkissue7026 messages
2010-01-08 17:53:08floxcreate