diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-08-25 12:54:32 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-08-25 13:03:33 +0300 |
commit | 4a64a813e1d34e732f35d8a65147974f76395a6f (patch) | |
tree | a8da0dede5213f85e45b95047cfbdcf5427cf0b7 /contrib/python/Twisted/py3/twisted/mail/imap4.py | |
parent | e9bbee265681b79a9ef9795bdc84cf6996f9cfec (diff) | |
download | ydb-4a64a813e1d34e732f35d8a65147974f76395a6f.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/python/Twisted/py3/twisted/mail/imap4.py')
-rw-r--r-- | contrib/python/Twisted/py3/twisted/mail/imap4.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/contrib/python/Twisted/py3/twisted/mail/imap4.py b/contrib/python/Twisted/py3/twisted/mail/imap4.py index 032624e3db..9a9f140795 100644 --- a/contrib/python/Twisted/py3/twisted/mail/imap4.py +++ b/contrib/python/Twisted/py3/twisted/mail/imap4.py @@ -80,7 +80,6 @@ from twisted.mail.interfaces import ( from twisted.protocols import basic, policies from twisted.python import log, text from twisted.python.compat import ( - _get_async_param, _matchingString, iterbytes, nativeString, @@ -1076,8 +1075,7 @@ class IMAP4Server(basic.LineReceiver, policies.TimeoutMixin): def sendNegativeResponse(self, tag=None, message=b""): self._respond(b"NO", tag, message) - def sendUntaggedResponse(self, message, isAsync=None, **kwargs): - isAsync = _get_async_param(isAsync, **kwargs) + def sendUntaggedResponse(self, message, isAsync=None): if not isAsync or (self.blocked is None): self._respond(message, None, None) else: |