From: Michael Foord Date: Fri, 3 Dec 2010 10:59:15 +0000 (+0000) Subject: Fix lib/test/__main__.py to work even outside a Python build. X-Git-Tag: v3.2b1~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=97cbb76ee31b4b91fd908576bbc3354ceab41cfc;p=python Fix lib/test/__main__.py to work even outside a Python build. --- diff --git a/Lib/test/__main__.py b/Lib/test/__main__.py index 251ac7c4cb..180072acdc 100644 --- a/Lib/test/__main__.py +++ b/Lib/test/__main__.py @@ -5,6 +5,8 @@ import sysconfig from test import support from test import regrtest +TEMPDIR = regrtest.TEMPDIR + # findtestdir() gets the dirname out of __file__, so we have to make it # absolute before changing the working directory. # For example __file__ may be relative when running trace or profile.