mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-17 15:12:07 -06:00
Fix some typos
Fix some typos in 'python' directory. Signed-off-by: Dongdong Zhang <zhangdongdong@eswincomputing.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20221130015358.6998-2-zhangdongdong@eswincomputing.com [Fixed additional typo spotted by Max Filippov. --js] Reviewed-by: John Snow <jsnow@redhat.com> Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
parent
13356edb87
commit
af76484e54
4 changed files with 6 additions and 6 deletions
|
@ -68,7 +68,7 @@ class ConsoleSocket(socket.socket):
|
||||||
"""Kick off a thread to drain the socket."""
|
"""Kick off a thread to drain the socket."""
|
||||||
# Configure socket to not block and timeout.
|
# Configure socket to not block and timeout.
|
||||||
# This allows our drain thread to not block
|
# This allows our drain thread to not block
|
||||||
# on recieve and exit smoothly.
|
# on receive and exit smoothly.
|
||||||
socket.socket.setblocking(self, False)
|
socket.socket.setblocking(self, False)
|
||||||
socket.socket.settimeout(self, 1)
|
socket.socket.settimeout(self, 1)
|
||||||
drain_thread = threading.Thread(target=self._drain_fn)
|
drain_thread = threading.Thread(target=self._drain_fn)
|
||||||
|
|
|
@ -42,7 +42,7 @@ class QEMUQtestProtocol:
|
||||||
:raise socket.error: on socket connection errors
|
:raise socket.error: on socket connection errors
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
No conection is estabalished by __init__(), this is done
|
No connection is established by __init__(), this is done
|
||||||
by the connect() or accept() methods.
|
by the connect() or accept() methods.
|
||||||
"""
|
"""
|
||||||
def __init__(self, address: SocketAddrT,
|
def __init__(self, address: SocketAddrT,
|
||||||
|
|
|
@ -812,7 +812,7 @@ class AsyncProtocol(Generic[T]):
|
||||||
|
|
||||||
@bottom_half
|
@bottom_half
|
||||||
async def _bh_close_stream(self, error_pathway: bool = False) -> None:
|
async def _bh_close_stream(self, error_pathway: bool = False) -> None:
|
||||||
# NB: Closing the writer also implcitly closes the reader.
|
# NB: Closing the writer also implicitly closes the reader.
|
||||||
if not self._writer:
|
if not self._writer:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
@ -71,7 +71,7 @@ def format_json(msg: str) -> str:
|
||||||
due to an decoding error then a simple string manipulation is done to
|
due to an decoding error then a simple string manipulation is done to
|
||||||
achieve a single line JSON string.
|
achieve a single line JSON string.
|
||||||
|
|
||||||
Converting into single line is more asthetically pleasing when looking
|
Converting into single line is more aesthetically pleasing when looking
|
||||||
along with error messages.
|
along with error messages.
|
||||||
|
|
||||||
Eg:
|
Eg:
|
||||||
|
@ -91,7 +91,7 @@ def format_json(msg: str) -> str:
|
||||||
|
|
||||||
[1, true, 3]: QMP message is not a JSON object.
|
[1, true, 3]: QMP message is not a JSON object.
|
||||||
|
|
||||||
The single line mode is more asthetically pleasing.
|
The single line mode is more aesthetically pleasing.
|
||||||
|
|
||||||
:param msg:
|
:param msg:
|
||||||
The message to formatted into single line.
|
The message to formatted into single line.
|
||||||
|
@ -498,7 +498,7 @@ class EditorWidget(urwid.Filler):
|
||||||
class HistoryBox(urwid.ListBox):
|
class HistoryBox(urwid.ListBox):
|
||||||
"""
|
"""
|
||||||
This widget is modelled using the ListBox widget, contains the list of
|
This widget is modelled using the ListBox widget, contains the list of
|
||||||
all messages both QMP messages and log messsages to be shown in the TUI.
|
all messages both QMP messages and log messages to be shown in the TUI.
|
||||||
|
|
||||||
The messages are urwid.Text widgets. On every append of a message, the
|
The messages are urwid.Text widgets. On every append of a message, the
|
||||||
focus is shifted to the last appended message.
|
focus is shifted to the last appended message.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue