diff options
Diffstat (limited to 'tests/path.py')
-rw-r--r-- | tests/path.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/path.py b/tests/path.py index d564ac607..fc724487c 100644 --- a/tests/path.py +++ b/tests/path.py @@ -15,6 +15,7 @@ _base = os.path.supports_unicode_filenames and unicode or str from pip.util import rmtree + class Path(_base): """ Models a path in an object oriented way. """ @@ -32,7 +33,7 @@ class Path(_base): """ path_obj / 'bc.d' """ """ path_obj / path_obj2 """ return Path(self, path) - + __truediv__ = __div__ def __rdiv__(self, path): |