summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pyramid/path.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pyramid/path.py b/src/pyramid/path.py
index b06ecf91b..d4909d412 100644
--- a/src/pyramid/path.py
+++ b/src/pyramid/path.py
@@ -163,3 +163,9 @@ class FSAssetDescriptor:
def exists(self):
return os.path.exists(self.path)
+
+
+# We're importing these classes for backwards compatibility, because these used
+# to exist in `pyramid.path`.
+# This must be at the bottom of the file to avoid a circular import.
+from .resolver import AssetResolver, DottedNameResolver, Resolver # noqa