domragusa

Results 2 issues of domragusa

ZipFile.writestr doesn't work when a pathlike filename is used, the other methods do. Example: ``` >>> a = ZipFile(Path('test.zip'), 'w') # this works >>> a.write(Path('./foo.jpeg'), arcname=PurePath('/some/thing.jpeg')) # this works >>>...

awaiting core review

By default pathlib.PurePath.relative_to doesn't deal with paths that are not a direct prefix of the other raising an exception in that instance, this patch adds the parameter strict that can...

awaiting review
expert-pathlib