[Lldb-commits] [PATCH] D70883: [vscode.py] Make read_packet only return None when EOF
Fangrui Song via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 3 13:02:35 PST 2019
MaskRay added inline comments.
================
Comment at: lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py:58
+ while True:
+ line = f.readline().decode("utf-8")
+ if len(line) == 0:
----------------
Prefer single quotes.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70883/new/
https://reviews.llvm.org/D70883
More information about the lldb-commits
mailing list