mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Bump cheroot from 10.0.0 to 10.0.1 (#2310)
* Bump cheroot from 10.0.0 to 10.0.1 Bumps [cheroot](https://github.com/cherrypy/cheroot) from 10.0.0 to 10.0.1. - [Release notes](https://github.com/cherrypy/cheroot/releases) - [Changelog](https://github.com/cherrypy/cheroot/blob/main/CHANGES.rst) - [Commits](https://github.com/cherrypy/cheroot/compare/v10.0.0...v10.0.1) --- updated-dependencies: - dependency-name: cheroot dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Update cheroot==10.0.1 --------- 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
bcac5b7897
commit
6414a0ba12
10 changed files with 534 additions and 128 deletions
|
@ -150,7 +150,7 @@ class SSLFileobjectMixin:
|
|||
return self._safe_call(
|
||||
False,
|
||||
super(SSLFileobjectMixin, self).sendall,
|
||||
*args, **kwargs
|
||||
*args, **kwargs,
|
||||
)
|
||||
|
||||
def send(self, *args, **kwargs):
|
||||
|
@ -158,7 +158,7 @@ class SSLFileobjectMixin:
|
|||
return self._safe_call(
|
||||
False,
|
||||
super(SSLFileobjectMixin, self).send,
|
||||
*args, **kwargs
|
||||
*args, **kwargs,
|
||||
)
|
||||
|
||||
|
||||
|
@ -196,6 +196,7 @@ class SSLConnectionProxyMeta:
|
|||
|
||||
def lock_decorator(method):
|
||||
"""Create a proxy method for a new class."""
|
||||
|
||||
def proxy_wrapper(self, *args):
|
||||
self._lock.acquire()
|
||||
try:
|
||||
|
@ -212,6 +213,7 @@ class SSLConnectionProxyMeta:
|
|||
|
||||
def make_property(property_):
|
||||
"""Create a proxy method for a new class."""
|
||||
|
||||
def proxy_prop_wrapper(self):
|
||||
return getattr(self._ssl_conn, property_)
|
||||
proxy_prop_wrapper.__name__ = property_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue