view src/testdir/test_channel_6.py @ 22454:849c6f766b19 v8.2.1775

patch 8.2.1775: MS-Windows: adding a long quickfix list is slow Commit: https://github.com/vim/vim/commit/8ec92c977976d9e9225183e36a80e6b0cdbf1f51 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 29 22:47:03 2020 +0200 patch 8.2.1775: MS-Windows: adding a long quickfix list is slow Problem: MS-Windows: adding a long quickfix list is slow. Solution: Shorten the buffer name only for the first entry. (Yegappan Lakshmanan, closes #7039, closes #7033)
author Bram Moolenaar <Bram@vim.org>
date Tue, 29 Sep 2020 23:00:04 +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)