mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-19 04:49:36 -07:00
Bump zipp from 3.15.0 to 3.16.2 (#2124)
* Bump zipp from 3.15.0 to 3.16.2 Bumps [zipp](https://github.com/jaraco/zipp) from 3.15.0 to 3.16.2. - [Release notes](https://github.com/jaraco/zipp/releases) - [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst) - [Commits](https://github.com/jaraco/zipp/compare/v3.15.0...v3.16.2) --- updated-dependencies: - dependency-name: zipp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update zipp==3.16.2 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
This commit is contained in:
parent
c0aa4e4996
commit
69d052f758
4 changed files with 55 additions and 22 deletions
|
@ -5,9 +5,9 @@ import itertools
|
||||||
import contextlib
|
import contextlib
|
||||||
import pathlib
|
import pathlib
|
||||||
import re
|
import re
|
||||||
import fnmatch
|
|
||||||
|
|
||||||
from .py310compat import text_encoding
|
from .py310compat import text_encoding
|
||||||
|
from .glob import translate
|
||||||
|
|
||||||
|
|
||||||
__all__ = ['Path']
|
__all__ = ['Path']
|
||||||
|
@ -298,21 +298,24 @@ class Path:
|
||||||
encoding, args, kwargs = _extract_text_encoding(*args, **kwargs)
|
encoding, args, kwargs = _extract_text_encoding(*args, **kwargs)
|
||||||
return io.TextIOWrapper(stream, encoding, *args, **kwargs)
|
return io.TextIOWrapper(stream, encoding, *args, **kwargs)
|
||||||
|
|
||||||
|
def _base(self):
|
||||||
|
return pathlib.PurePosixPath(self.at or self.root.filename)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def name(self):
|
def name(self):
|
||||||
return pathlib.Path(self.at).name or self.filename.name
|
return self._base().name
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def suffix(self):
|
def suffix(self):
|
||||||
return pathlib.Path(self.at).suffix or self.filename.suffix
|
return self._base().suffix
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def suffixes(self):
|
def suffixes(self):
|
||||||
return pathlib.Path(self.at).suffixes or self.filename.suffixes
|
return self._base().suffixes
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def stem(self):
|
def stem(self):
|
||||||
return pathlib.Path(self.at).stem or self.filename.stem
|
return self._base().stem
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def filename(self):
|
def filename(self):
|
||||||
|
@ -349,7 +352,7 @@ class Path:
|
||||||
return filter(self._is_child, subs)
|
return filter(self._is_child, subs)
|
||||||
|
|
||||||
def match(self, path_pattern):
|
def match(self, path_pattern):
|
||||||
return pathlib.Path(self.at).match(path_pattern)
|
return pathlib.PurePosixPath(self.at).match(path_pattern)
|
||||||
|
|
||||||
def is_symlink(self):
|
def is_symlink(self):
|
||||||
"""
|
"""
|
||||||
|
@ -357,22 +360,13 @@ class Path:
|
||||||
"""
|
"""
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def _descendants(self):
|
|
||||||
for child in self.iterdir():
|
|
||||||
yield child
|
|
||||||
if child.is_dir():
|
|
||||||
yield from child._descendants()
|
|
||||||
|
|
||||||
def glob(self, pattern):
|
def glob(self, pattern):
|
||||||
if not pattern:
|
if not pattern:
|
||||||
raise ValueError(f"Unacceptable pattern: {pattern!r}")
|
raise ValueError(f"Unacceptable pattern: {pattern!r}")
|
||||||
|
|
||||||
matches = re.compile(fnmatch.translate(pattern)).fullmatch
|
prefix = re.escape(self.at)
|
||||||
return (
|
matches = re.compile(prefix + translate(pattern)).fullmatch
|
||||||
child
|
return map(self._next, filter(matches, self.root.namelist()))
|
||||||
for child in self._descendants()
|
|
||||||
if matches(str(child.relative_to(self)))
|
|
||||||
)
|
|
||||||
|
|
||||||
def rglob(self, pattern):
|
def rglob(self, pattern):
|
||||||
return self.glob(f'**/{pattern}')
|
return self.glob(f'**/{pattern}')
|
||||||
|
|
40
lib/zipp/glob.py
Normal file
40
lib/zipp/glob.py
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
import re
|
||||||
|
|
||||||
|
|
||||||
|
def translate(pattern):
|
||||||
|
r"""
|
||||||
|
Given a glob pattern, produce a regex that matches it.
|
||||||
|
|
||||||
|
>>> translate('*.txt')
|
||||||
|
'[^/]*\\.txt'
|
||||||
|
>>> translate('a?txt')
|
||||||
|
'a.txt'
|
||||||
|
>>> translate('**/*')
|
||||||
|
'.*/[^/]*'
|
||||||
|
"""
|
||||||
|
return ''.join(map(replace, separate(pattern)))
|
||||||
|
|
||||||
|
|
||||||
|
def separate(pattern):
|
||||||
|
"""
|
||||||
|
Separate out character sets to avoid translating their contents.
|
||||||
|
|
||||||
|
>>> [m.group(0) for m in separate('*.txt')]
|
||||||
|
['*.txt']
|
||||||
|
>>> [m.group(0) for m in separate('a[?]txt')]
|
||||||
|
['a', '[?]', 'txt']
|
||||||
|
"""
|
||||||
|
return re.finditer(r'([^\[]+)|(?P<set>[\[].*?[\]])|([\[][^\]]*$)', pattern)
|
||||||
|
|
||||||
|
|
||||||
|
def replace(match):
|
||||||
|
"""
|
||||||
|
Perform the replacements for a match from :func:`separate`.
|
||||||
|
"""
|
||||||
|
|
||||||
|
return match.group('set') or (
|
||||||
|
re.escape(match.group(0))
|
||||||
|
.replace('\\*\\*', r'.*')
|
||||||
|
.replace('\\*', r'[^/]*')
|
||||||
|
.replace('\\?', r'.')
|
||||||
|
)
|
|
@ -2,9 +2,8 @@ import sys
|
||||||
import io
|
import io
|
||||||
|
|
||||||
|
|
||||||
te_impl = 'lambda encoding, stacklevel=2, /: encoding'
|
def _text_encoding(encoding, stacklevel=2, /): # pragma: no cover
|
||||||
te_impl_37 = te_impl.replace(', /', '')
|
return encoding
|
||||||
_text_encoding = eval(te_impl) if sys.version_info > (3, 8) else eval(te_impl_37)
|
|
||||||
|
|
||||||
|
|
||||||
text_encoding = (
|
text_encoding = (
|
||||||
|
|
|
@ -49,7 +49,7 @@ urllib3<2
|
||||||
webencodings==0.5.1
|
webencodings==0.5.1
|
||||||
websocket-client==1.6.2
|
websocket-client==1.6.2
|
||||||
xmltodict==0.13.0
|
xmltodict==0.13.0
|
||||||
zipp==3.15.0
|
zipp==3.16.2
|
||||||
|
|
||||||
# configobj==5.1.0
|
# configobj==5.1.0
|
||||||
# sgmllib3k==1.0.0
|
# sgmllib3k==1.0.0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue