Transcrypt icon indicating copy to clipboard operation
Transcrypt copied to clipboard

Python 3.9 to JavaScript compiler - Lean, fast, open! -

Results 162 Transcrypt issues
Sort by recently updated
recently updated
newest added

Without surprise, ```python @mydecorator def myfunction(): ... ``` is transpiled to ```js var myfunction = mydecorator(myfunction(){ .... ``` As a result `myfunction.name` is `"mydecorator"`. This is a problem for me...

IS: enhancement
PRIO: 3 nice

I would like to import the stubs use py.test (with which I am running the tests). Unfortunately that is not working for me. ``` (transcrypt_venv) $ python -c "import transcrypt"...

IS: bug?
IS: workaround

When I access a non-existing key in a dictionary, I get > Uncaught TypeError: rangePerColor[i] is undefined I would have expected a Python exception like > KeyError: 7 Furthermore, this...

I want to use Python instead of JS. But I'd like to know if Transcrypt has IDE support. Like all the standard IDE features you'd have for Python. Like Autocomplete,...

Hello! I would like to thank you for this wonderful project that has worked on transcription from python to javascript, I have been actively using it for some time. Regarding...

All of the release information I am tracking is the previous London release and it is not clear if the leading checkout of main is this new version mentioned on...

this project is awesome! but i have some problem when use it. # Env - python 3.9.5 & 3.8.10 - transcrypt 3.9.0 # code python ```python class a: b: str...

![image](https://user-images.githubusercontent.com/60282562/130223478-70e194a6-bd74-4de4-be58-0405189f296a.png) Translating into ![image](https://user-images.githubusercontent.com/60282562/130223516-db3af528-5d52-4c45-8242-f9601fa93546.png) I am using Python3.4.3

Since the version of Transcrypt is coupled with the version of Python, can Transcrypt do a version check when run to make sure that the Python version being used matches...

I want to use transcrypt in my python code instead of using cmd.how can i do it