rapydscript-ng icon indicating copy to clipboard operation
rapydscript-ng copied to clipboard

A transpiler for a Python like language to JavaScript

Results 10 rapydscript-ng issues
Sort by recently updated
recently updated
newest added

I found that I had to insert the following code at the start of rapydscript.js, code I inherited from some time ago: var ρσ_iterator_symbol = (typeof Symbol === "function" &&...

rapydscript-ng appears to have no support for ellipsis (`...`). It seems like simply treating this as `pass` would be sufficient for most case, as its other use as a complex...

As type annotations and `typing` is getting added to lots of Python code as they convert to Python 3 only code, and this project doesnt intend to support that per...

a = (5)3 print(a) transpiles to var a; a = 5; 3; print(a); // displays 5

If using the `-u` option, the output is broken. I didn't check it all but there's a few places where a semicolon is missing between statements. **To reproduce ** :...

The (familiar) setup: `app/__init__.pyj`: ``` from control.item import TestA, TestB class TestApp(): def __init__(self): self.tA = TestA(id="A") self.tB = TestB(id="B") self.tA.out() self.tB.out() x = TestApp() ``` `control/item.pyj`: ``` class TestA():...

Hey Kovid, it's been years since I've been developing with RapydScript and it really helps me in many things. Thanks for your work. Just one quick question, what's the best...

If I make a RapydScript library, what is the best way to publish it? I know of npm, but it seems like it's mostly for JavaScript packages. Maybe PyPI? But...

The following gives no error but should say "positional argument follows keyword argument": ``` def f(a=5, b=10): print(a,b) f(b=3, 34, a=6) ```

I don't know whether you still fix bugs, but here is a minor bug that was reported to me. The following program never displays -2 : from random import randint...