pathlib-next 0.1.7__tar.gz → 0.1.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/PKG-INFO +1 -1
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/pyproject.toml +1 -1
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/path.py +0 -1
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/.gitignore +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/LICENSE +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/README.md +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/example.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/__init__.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/fspath.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/mempath.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/uri/__init__.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/uri/query.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/uri/schemes/__init__.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/uri/schemes/file.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/uri/schemes/http.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/uri/schemes/sftp.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/uri/source.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/utils/__init__.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/utils/glob.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/utils/stat.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/src/pathlib_next/utils/sync.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/tests/test_local.py +0 -0
- {pathlib_next-0.1.7 → pathlib_next-0.1.8}/tests/test_uri.py +0 -0
|
@@ -208,7 +208,6 @@ class Pathname(FsPathLike, _ty.Generic[_P]):
|
|
|
208
208
|
path_pattern = _glob.compile_pattern(path_pattern, case_sensitive)
|
|
209
209
|
return path_pattern.match(path) is not None
|
|
210
210
|
|
|
211
|
-
@_utils.notimplemented
|
|
212
211
|
def as_posix(self) -> str:
|
|
213
212
|
return "/".join(self.segments)
|
|
214
213
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|