view src/testdir/test_channel_6.py @ 27265:8a097fc07aa4 v8.2.4161

patch 8.2.4161: Vim9: warning for missing white space after imported variable Commit: https://github.com/vim/vim/commit/21f0d6cbca9c93e2319d45a33ba26b10a85ff4dc Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 20 17:35:49 2022 +0000 patch 8.2.4161: Vim9: warning for missing white space after imported variable Problem: Vim9: warning for missing white space after imported variable. Solution: Do not skip white space. (closes https://github.com/vim/vim/issues/9567)
author Bram Moolenaar <Bram@vim.org>
date Thu, 20 Jan 2022 18:45:04 +0100
parents e373843e2980
children
line wrap: on
line source

#!/usr/bin/env python
#
# Server that will accept connections from a Vim channel.
# Used by test_channel.vim.
#
# This requires Python 2.6 or later.

from test_channel import main, ThreadedTCPServer
import socket

class ThreadedTCP6Server(ThreadedTCPServer):
    address_family = socket.AF_INET6

if __name__ == "__main__":
    main("::", 0, ThreadedTCP6Server)