From: Ned Deily Date: Wed, 28 Mar 2018 05:57:13 +0000 (-0400) Subject: bpo-32872: Avoid regrtest compatibility issue with namespace packages. (GH-6276) X-Git-Tag: v3.8.0a1~2024 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e52ac045972a4f75d7f52e4ee0d6de128259134d;p=thirdparty%2FPython%2Fcpython.git bpo-32872: Avoid regrtest compatibility issue with namespace packages. (GH-6276) --- diff --git a/Lib/test/libregrtest/setup.py b/Lib/test/libregrtest/setup.py index bf899a9e4d4a..910aca1b1a6c 100644 --- a/Lib/test/libregrtest/setup.py +++ b/Lib/test/libregrtest/setup.py @@ -57,7 +57,7 @@ def setup_tests(ns): if hasattr(module, '__path__'): for index, path in enumerate(module.__path__): module.__path__[index] = os.path.abspath(path) - if hasattr(module, '__file__'): + if getattr(module, '__file__', None): module.__file__ = os.path.abspath(module.__file__) # MacOSX (a.k.a. Darwin) has a default stack size that is too small diff --git a/Misc/NEWS.d/next/Tests/2018-03-28-01-35-02.bpo-32872.J5NDUj.rst b/Misc/NEWS.d/next/Tests/2018-03-28-01-35-02.bpo-32872.J5NDUj.rst new file mode 100644 index 000000000000..06d656bbfd64 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2018-03-28-01-35-02.bpo-32872.J5NDUj.rst @@ -0,0 +1 @@ +Avoid regrtest compatibility issue with namespace packages.