summaryrefslogtreecommitdiff
path: root/src/pip/_vendor/pkg_resources/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pip/_vendor/pkg_resources/__init__.py')
-rw-r--r--src/pip/_vendor/pkg_resources/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pip/_vendor/pkg_resources/__init__.py b/src/pip/_vendor/pkg_resources/__init__.py
index a85aca10f..1bf26a942 100644
--- a/src/pip/_vendor/pkg_resources/__init__.py
+++ b/src/pip/_vendor/pkg_resources/__init__.py
@@ -3046,6 +3046,9 @@ class Distribution:
except ValueError:
issue_warning("Unbuilt egg for " + repr(self))
return False
+ except SystemError:
+ # TODO: remove this except clause when python/cpython#103632 is fixed.
+ return False
return True
def clone(self, **kw):