Skip to content

Commit afa02f2

Browse files
committed
remove debug breakpoint from codecs
1 parent bc361e1 commit afa02f2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

graalpython/lib-python/3/codecs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,6 @@ def _buffer_decode(self, input, errors, final):
318318
def decode(self, input, final=False):
319319
# decode input (taking the buffer into account)
320320
data = self.buffer + input
321-
__breakpoint__()
322321
(result, consumed) = self._buffer_decode(data, self.errors, final)
323322
# keep undecoded input until the next call
324323
self.buffer = data[consumed:]

0 commit comments

Comments
 (0)