We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd46e2a commit 73eae5eCopy full SHA for 73eae5e
1 file changed
bpython/curtsiesfrontend/coderunner.py
@@ -142,12 +142,12 @@ def run_code(self, for_code=None):
142
raise SystemExitFromCodeGreenlet()
143
144
def sigint_handler(self, *args):
145
- """SIGINT handler to use while code is running or request being fufilled"""
+ """SIGINT handler to use while code is running or request being fulfilled"""
146
if greenlet.getcurrent() is self.code_greenlet:
147
logger.debug('sigint while running user code!')
148
raise KeyboardInterrupt()
149
else:
150
- logger.debug('sigint while fufilling code request sigint handler running!')
+ logger.debug('sigint while fulfilling code request sigint handler running!')
151
self.sigint_happened_in_main_greenlet = True
152
153
def _blocking_run_code(self):
0 commit comments