We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__pycache__/valid_before_this_commit
1 parent ee67824 commit 94749beCopy full SHA for 94749be
client/configuration/search_path.py
@@ -33,7 +33,7 @@
33
_site_filter = re.compile(r".*-([0-99]\.)*dist-info")
34
35
# pyre-fixme[5]: Globally accessible variable `_PYCACHE` has type `re.Pattern[str]` but no type is specified.
36
-_PYCACHE = re.compile("__pycache__")
+_PYCACHE = re.compile("__pycache__(/)*.*")
37
38
39
def _expand_relative_root(path: str, relative_root: str) -> str:
@@ -86,7 +86,7 @@ def package_path(self) -> str:
86
return self.package_name
87
88
this_pkg_filter = re.compile(
89
- r"{}-([0-99]\.)*dist-info".format(self.package_name)
+ r"{}-([0-99]\.)*dist-info(/)*.*".format(self.package_name)
90
)
91
92
if self.site_root not in dist_info_in_root:
0 commit comments