Commit 81cd0313 authored by Michael Droettboom's avatar Michael Droettboom Committed by GitHub

Merge pull request #266 from rth/dedent-by-default

Handle multi-line Python strings input in JS
parents 1984cc56 18ec5bbb
......@@ -4,6 +4,7 @@ A library of helper utilities for connecting Python to the browser environment.
import ast
import io
from textwrap import dedent
__version__ = '0.3.0'
......@@ -24,6 +25,9 @@ def eval_code(code, ns):
"""
Runs a string of code, the last part of which may be an expression.
"""
# handle mis-indented input from multi-line strings
code = dedent(code)
mod = ast.parse(code)
if isinstance(mod.body[-1], ast.Expr):
expr = ast.Expression(mod.body[-1].value)
......@@ -44,6 +48,9 @@ def find_imports(code):
Finds the imports in a string of code and returns a list of their package
names.
"""
# handle mis-indented input from multi-line strings
code = dedent(code)
mod = ast.parse(code)
imports = set()
for node in ast.walk(mod):
......
......@@ -102,17 +102,11 @@ class SeleniumWrapper:
self.driver.execute_script("window.logs = []")
def run(self, code):
if isinstance(code, str) and code.startswith('\n'):
# we have a multiline string, fix indentation
code = textwrap.dedent(code)
return self.run_js(
'return pyodide.runPython({!r})'.format(code))
def run_async(self, code):
from selenium.common.exceptions import TimeoutException
if isinstance(code, str) and code.startswith('\n'):
# we have a multiline string, fix indentation
code = textwrap.dedent(code)
self.run_js(
"""
window.done = false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment