Skip to content

Commit 73eae5e

Browse files
committed
Typos
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent cd46e2a commit 73eae5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bpython/curtsiesfrontend/coderunner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,12 @@ def run_code(self, for_code=None):
142142
raise SystemExitFromCodeGreenlet()
143143

144144
def sigint_handler(self, *args):
145-
"""SIGINT handler to use while code is running or request being fufilled"""
145+
"""SIGINT handler to use while code is running or request being fulfilled"""
146146
if greenlet.getcurrent() is self.code_greenlet:
147147
logger.debug('sigint while running user code!')
148148
raise KeyboardInterrupt()
149149
else:
150-
logger.debug('sigint while fufilling code request sigint handler running!')
150+
logger.debug('sigint while fulfilling code request sigint handler running!')
151151
self.sigint_happened_in_main_greenlet = True
152152

153153
def _blocking_run_code(self):

0 commit comments

Comments
 (0)