summaryrefslogtreecommitdiff
path: root/fs/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'fs/__init__.py')
-rw-r--r--fs/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/__init__.py b/fs/__init__.py
index 3872617..cbcd176 100644
--- a/fs/__init__.py
+++ b/fs/__init__.py
@@ -17,10 +17,12 @@ implementations of this interface such as:
__version__ = "0.1.1dev"
__author__ = "Will McGugan (will@willmcgugan.com)"
-# 'base' imports * from 'path' and 'errors', so they'll
-# be available here as well
+# 'base' imports * from 'path' and 'errors', so their contents
+# will be available here as well.
from base import *
+# provide these by default so people cna be 'fs.path.basename' etc.
import errors
import path
+