Skip to content

Commit

Permalink
update methods
Browse files Browse the repository at this point in the history
  • Loading branch information
pjbull committed Oct 8, 2023
1 parent a78438b commit bf79c41
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ Most methods and properties from `pathlib.Path` are supported except for the one
| `is_absolute` ||||
| `is_dir` ||||
| `is_file` ||||
| `is_junction` ||||
| `is_relative_to` ||||
| `iterdir` ||||
| `joinpath` ||||
Expand All @@ -160,7 +161,9 @@ Most methods and properties from `pathlib.Path` are supported except for the one
| `suffixes` ||||
| `touch` ||||
| `unlink` ||||
| `walk` ||||
| `with_name` ||||
| `with_segments` ||||
| `with_stem` ||||
| `with_suffix` ||||
| `write_bytes` ||||
Expand All @@ -170,6 +173,7 @@ Most methods and properties from `pathlib.Path` are supported except for the one
| `cwd` ||||
| `expanduser` ||||
| `group` ||||
| `hardlink_to` ||||
| `home` ||||
| `is_block_device` ||||
| `is_char_device` ||||
Expand All @@ -179,7 +183,6 @@ Most methods and properties from `pathlib.Path` are supported except for the one
| `is_socket` ||||
| `is_symlink` ||||
| `lchmod` ||||
| `link_to` ||||
| `lstat` ||||
| `owner` ||||
| `readlink` ||||
Expand Down
2 changes: 2 additions & 0 deletions cloudpathlib/cloudpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,8 @@ def __ge__(self, other: Any) -> bool:
# owner - no cloud equivalent
# root - drive already has the bucket and anchor/prefix has the scheme, so nothing to store here
# symlink_to - no cloud equivalent
# link_to - no cloud equivalent
# hardlink_to - no cloud equivalent

# ====================== REQUIRED, NOT GENERIC ======================
# Methods that must be implemented, but have no generic application
Expand Down

0 comments on commit bf79c41

Please sign in to comment.