antipathy
Advanced tools
| Metadata-Version: 2.1 | ||
| Name: antipathy | ||
| Version: 0.85.3 | ||
| Version: 0.85.4 | ||
| Summary: oo view of file paths and names, subclassed from bytes/str/unicode | ||
@@ -25,2 +25,3 @@ Home-page: https://github.com/ethanfurman/antipathy | ||
| Classifier: Programming Language :: Python :: 3.11 | ||
| Classifier: Programming Language :: Python :: 3.12 | ||
@@ -27,0 +28,0 @@ Antipathy -- for those tired of ``os.path`` |
@@ -1,2 +0,2 @@ | ||
| version = 0, 85, 3 | ||
| version = 0, 85, 4 | ||
@@ -3,0 +3,0 @@ from .path import * |
+19
-0
@@ -0,1 +1,20 @@ | ||
| 0.85.4 | ||
| ====== | ||
| strip leading slash after path subtraction, unless subtracting an | ||
| empty string | ||
| 0.85.3 | ||
| ====== | ||
| do not start relative paths at root | ||
| 0.85.2 | ||
| ====== | ||
| update copytree() for later python versions | ||
| 0.85.0 | ||
@@ -2,0 +21,0 @@ ====== |
@@ -699,3 +699,6 @@ """ | ||
| raise ValueError("cannot subtract %r from %r" % (other, self)) | ||
| return Path(s[len(o):]) | ||
| res = Path(s[len(o):]) | ||
| if o: | ||
| res = res.lstrip(self._SLASH) | ||
| return res | ||
@@ -702,0 +705,0 @@ def access(self, file_name, mode=None): |
+2
-1
| Metadata-Version: 2.1 | ||
| Name: antipathy | ||
| Version: 0.85.3 | ||
| Version: 0.85.4 | ||
| Summary: oo view of file paths and names, subclassed from bytes/str/unicode | ||
@@ -25,2 +25,3 @@ Home-page: https://github.com/ethanfurman/antipathy | ||
| Classifier: Programming Language :: Python :: 3.11 | ||
| Classifier: Programming Language :: Python :: 3.12 | ||
@@ -27,0 +28,0 @@ Antipathy -- for those tired of ``os.path`` |
+2
-1
@@ -53,3 +53,3 @@ import setuptools | ||
| name='antipathy', | ||
| version='0.85.3', | ||
| version='0.85.4', | ||
| license='BSD License', | ||
@@ -79,2 +79,3 @@ description='oo view of file paths and names, subclassed from bytes/str/unicode', | ||
| 'Programming Language :: Python :: 3.11', | ||
| 'Programming Language :: Python :: 3.12', | ||
| ], | ||
@@ -81,0 +82,0 @@ ) |
Sorry, the diff of this file is too big to display
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
149387
0.65%3039
0.33%