Overview
| Comment: | Fix moninor command for python3 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
9be36c3e65a572156a02c8304160752e |
| User & Date: | vitus on 2020-01-16 18:18:55.213 |
| Other Links: | manifest | tags |
Context
|
2022-02-08
| ||
| 17:27 | Fix quoting of arguments of start command. Support per user configuration in .config/vws/vws.conf as well as .vwsrc Fix some pylint warnings check-in: 7d648e5be3 user: vitus tags: trunk | |
|
2020-01-16
| ||
| 18:18 | Fix moninor command for python3 check-in: 9be36c3e65 user: vitus tags: trunk | |
|
2020-01-14
| ||
| 12:00 | Some documentation improvements check-in: bea4cf20e9 user: vitus tags: trunk | |
Changes
Modified vws
from [7cc9536f49]
to [0a5a51e7d3].
| ︙ | ︙ | |||
309 310 311 312 313 314 315 316 317 318 |
cmd = sys.stdin.readline()
# Check for eof
if cmd == "":
break
answer = send_command(options.sock, cmd.rstrip())
idx = answer.index('\n')
print(answer[idx+1:], end="")
sys.stdout.flush()
elif options.sock in readfd:
print("UNSOLICITED MESSAGE %" +
| > | > > > > | > | 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
cmd = sys.stdin.readline()
# Check for eof
if cmd == "":
break
answer = send_command(options.sock, cmd.rstrip())
idx = answer.index('\n')
print(answer[idx+1:], end="")
eol = answer.endswith("\n")
sys.stdout.flush()
elif options.sock in readfd:
print("UNSOLICITED MESSAGE %" +
options.sock.recv(1000).decode("utf-8").rstrip())
eol = True
except KeyboardInterrupt:
if not eol:
print("")
eol = True
print("Keyboard interrupt")
if not eol:
print("")
def cmd_reset(options):
""" vws reset """
print(send_command(options.sock, 'system_reset'))
def cmd_save(options):
""" vws save """
|
| ︙ | ︙ |