Mercurial > vim
annotate src/testdir/test_channel_6.py @ 33418:f79c9a5a1753 v9.0.1967
patch 9.0.1967: xattr errors not translated
Commit: https://github.com/vim/vim/commit/7ece036d72cf639b05d3936183220bec7179bf63
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sun Oct 1 09:07:14 2023 +0200
patch 9.0.1967: xattr errors not translated
Problem: xattr errors not translated
Solution: mark for translation, consistently capitalize
first letter.
closes: #13236
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 01 Oct 2023 09:15:05 +0200 |
parents | e373843e2980 |
children |
rev | line source |
---|---|
20003
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 #!/usr/bin/env python |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 # |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 # Server that will accept connections from a Vim channel. |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 # Used by test_channel.vim. |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 # |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 # This requires Python 2.6 or later. |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 from test_channel import main, ThreadedTCPServer |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 import socket |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 class ThreadedTCP6Server(ThreadedTCPServer): |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 address_family = socket.AF_INET6 |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 if __name__ == "__main__": |
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 main("::", 0, ThreadedTCP6Server) |