-
-
Notifications
You must be signed in to change notification settings - Fork 32.6k
Closed as not planned
Labels
OS-emscripteninvalidpendingThe issue will be closed if no feedback is providedThe issue will be closed if no feedback is providedtriagedThe issue has been accepted as valid by a triager.The issue has been accepted as valid by a triager.type-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
await xtermInput.pressSequentially(`def f():\nprint("hello", "emscripten repl!")\n\n`); |
- In Python, the line after a
def f():
must be indented.
def f():\nprint("hello", "emscripten repl!")\n\n
- Because the print() statement is not indented, it is a guaranteed IndentationError.
- The test is fundamentally broken and can never pass as it's currently written.
FIX:
await repl.enter("def f():\n print(\"hello\", \"emscripten repl!\")\n\n");
Metadata
Metadata
Assignees
Labels
OS-emscripteninvalidpendingThe issue will be closed if no feedback is providedThe issue will be closed if no feedback is providedtriagedThe issue has been accepted as valid by a triager.The issue has been accepted as valid by a triager.type-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error