view src/testdir/test_channel_6.py @ 20168:be661435893a v8.2.0639

patch 8.2.0639: MS-Windows: messages test still fails Commit: https://github.com/vim/vim/commit/49b2fb36ca94be14b98caf86420863d9bbe81a24 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 25 17:13:56 2020 +0200 patch 8.2.0639: MS-Windows: messages test still fails Problem: MS-Windows: messages test still fails. Solution: Filter out the maintainer message.
author Bram Moolenaar <Bram@vim.org>
date Sat, 25 Apr 2020 17:15:03 +0200
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)