From d4b59d5caeb534c544c8fd22d0bb7dc796f84de0 Mon Sep 17 00:00:00 2001 From: Cj-bc Date: Sat, 9 Jan 2021 15:18:04 +0900 Subject: [PATCH] Fix comment typo --- ipykernel/kernelbase.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ipykernel/kernelbase.py b/ipykernel/kernelbase.py index 9c272c5e9..aba3223a9 100644 --- a/ipykernel/kernelbase.py +++ b/ipykernel/kernelbase.py @@ -808,7 +808,7 @@ def _send_abort_reply(self, stream, msg, idents): ) def _no_raw_input(self): - """Raise StdinNotImplentedError if active frontend doesn't support + """Raise StdinNotImplementedError if active frontend doesn't support stdin.""" raise StdinNotImplementedError("raw_input was called, but this " "frontend does not support stdin.") @@ -818,7 +818,7 @@ def getpass(self, prompt='', stream=None): Raises ------ - StdinNotImplentedError if active frontend doesn't support stdin. + StdinNotImplementedError if active frontend doesn't support stdin. """ if not self._allow_stdin: raise StdinNotImplementedError( @@ -839,7 +839,7 @@ def raw_input(self, prompt=''): Raises ------ - StdinNotImplentedError if active frontend doesn't support stdin. + StdinNotImplementedError if active frontend doesn't support stdin. """ if not self._allow_stdin: raise StdinNotImplementedError(