view src/testdir/test_channel_6.py @ 27928:ca7a207d83cd v8.2.4489

patch 8.2.4489: failing test for comparing v:null with number Commit: https://github.com/vim/vim/commit/c6e9d7063d275139d3c207435d293271c8b556ab Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 2 13:13:30 2022 +0000 patch 8.2.4489: failing test for comparing v:null with number Problem: Failing test for comparing v:null with number. Solution: Allow comparing v:null with number in legacy script. (Ken Takata, closes #9873) Also do this for float.
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Mar 2022 14:15: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)