view src/testdir/test_channel_6.py @ 22574:431367075f29 v8.2.1835

patch 8.2.1835: ":help ??" finds the "!!" tag Commit: https://github.com/vim/vim/commit/6eb36ade9883f54c84c739c6a3504ddfa3343063 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 11 19:08:33 2020 +0200 patch 8.2.1835: ":help ??" finds the "!!" tag Problem: ":help ??" finds the "!!" tag. Solution: Do not translate "?" into ".". (Naruhiko Nishino, closes https://github.com/vim/vim/issues/7114, closes #7115)
author Bram Moolenaar <Bram@vim.org>
date Sun, 11 Oct 2020 19: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)