Mercurial > vim
view src/testdir/test_channel_6.py @ 25624:0ef8ef1af478 v8.2.3348
patch 8.2.3348: line2byte() returns wrong value after adding textprop
Commit: https://github.com/vim/vim/commit/14c7530c4fca786d3594508e28943f10125827c3
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Aug 15 14:28:40 2021 +0200
patch 8.2.3348: line2byte() returns wrong value after adding textprop
Problem: line2byte() returns wrong value after adding textprop. (Yuto
Kimura)
Solution: Reduce the length by the size of the text property. (closes #8759)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 15 Aug 2021 14:30: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)