Skip to content

Commit d981f75

Browse files
committed
spelling: interpreter
1 parent c2ddc7f commit d981f75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1136,7 +1136,7 @@ def send_to_stdout(self, output):
11361136
def send_to_stderr(self, error):
11371137
"""Send unicode strings or FmtStr to Repl stderr
11381138
1139-
Must be able to handle FmtStrs because interepter pass in
1139+
Must be able to handle FmtStrs because interpreter pass in
11401140
tracebacks already formatted."""
11411141
lines = error.split('\n')
11421142
if lines[-1]:

bpython/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def __init__(self, locals=None, encoding=None):
8383
on a caught syntax error. The purpose for this in bpython is so that
8484
the repl can be instantiated after the interpreter (which it
8585
necessarily must be with the current factoring) and then an exception
86-
callback can be added to the Interpeter instance afterwards - more
86+
callback can be added to the Interpreter instance afterwards - more
8787
specifically, this is so that autoindentation does not occur after a
8888
traceback."""
8989

0 commit comments

Comments
 (0)