mirror of https://github.com/pyodide/pyodide.git
Merge pull request #266 from rth/dedent-by-default
Handle multi-line Python strings input in JS
This commit is contained in:
commit
81cd031360
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue