mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
runtornado.py: Ignore due to incorrect stubs.
This commit is contained in:
committed by
Tim Abbott
parent
6fd8906358
commit
83640ed0cd
@@ -41,7 +41,6 @@ exclude_py2 = []
|
|||||||
|
|
||||||
exclude_py3 = """
|
exclude_py3 = """
|
||||||
zerver/lib/ccache.py
|
zerver/lib/ccache.py
|
||||||
zerver/management/commands/runtornado.py
|
|
||||||
zerver/tests/test_i18n.py
|
zerver/tests/test_i18n.py
|
||||||
zerver/views/messages.py
|
zerver/views/messages.py
|
||||||
zerver/views/webhooks/beanstalk.py
|
zerver/views/webhooks/beanstalk.py
|
||||||
|
|||||||
@@ -60,8 +60,8 @@ class Command(BaseCommand):
|
|||||||
def handle(self, addrport, **options):
|
def handle(self, addrport, **options):
|
||||||
# type: (str, **bool) -> None
|
# type: (str, **bool) -> None
|
||||||
# setup unbuffered I/O
|
# setup unbuffered I/O
|
||||||
sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)
|
sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0) # type: ignore # https://github.com/python/typeshed/pull/337
|
||||||
sys.stderr = os.fdopen(sys.stderr.fileno(), 'w', 0)
|
sys.stderr = os.fdopen(sys.stderr.fileno(), 'w', 0) # type: ignore # https://github.com/python/typeshed/pull/337
|
||||||
interactive_debug_listen()
|
interactive_debug_listen()
|
||||||
|
|
||||||
import django
|
import django
|
||||||
|
|||||||
Reference in New Issue
Block a user