Ric da Silva
Ric da Silva
Use the existing `import` function, but with a different "from" keyword.
There are unlikely to be many issues. Test with Tox.
Pipe coverage into Codacy, and enable the Codacy mypy checker. If possible and simple, add mypy to the local `make test` recipe too.
It'd be great to be able to visualise the result of parsing -- the [AST][1]. This could be triggered with a new CLI command, e.g. `teal ast file.tl`. One approach:...
Some Node classes (at least one - `N_If`) have wrong type annotations - `list` instead of `Node`. Go through them all and check.
**Is your feature request related to a problem? Please describe.** Often, I want to pass a Python function around (e.g. to `map`), but always call it asynchronously. Currently, the only...
Currently, errors in Python/Teal cause everything to halt and fail - you have to restart the program. Teal needs a condition signalling/exception handling mechanism. This has two parts - the...
In many cases, the following bytecode is generated by the naïve compiler: ``` .... | 10 | BIND x | 11 | POP | 12 | PUSHB x ... ```...
**Problem** Various parts of Teal session data can grow unbounded, but the item size in DynamoDB is limited to 400kB. e.g. Session events/logs eventually hit the limit, crashing the session....