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

Output when attempting to execute from a shell script: I may be missing something obvious here. ``` Transcrypt (TM) Python to JavaScript Small Sane Subset Transpiler Version 3.6.101 Copyright (C)...

After installing transcrypt 3.7.16. I try to test the installation ([as described in the doco](https://www.transcrypt.org/docs/html/installation_use.html#installation)): In the directory `../transcrypt/development/automated_tests/transcrypt/` I run `transcrypt -b -c -da autotest`. This succeeds. Then I...

STATE: under consideration

[random.patch.txt](https://github.com/QQuick/Transcrypt/files/5830276/random.patch.txt) In the original Python random module it is enough to set seed to the same value to reproduce the entire pseudo-random sequence. Transcrypt's random module has a bug in...

IS: bug
STATE: rdy to release

I just tried the latest transcrypt on Python 3.7 Win7 with the simple program from https://github.com/bunkahle/Transcrypt-Examples/blob/master/alerts/alerts2.py but I got an compilation error: transcrypt alerts2.py Transcrypt (TM) Python to JavaScript Small...

PRIO: 1 must

I'm trying to get some buttons (and eventually other things) with React in Transcrypt. Unfortunately, I'm getting nowhere and finding no examples besides [pyreact](https://github.com/doconix/pyreact/search?q=onclick&unscoped_q=onclick) which as you can see uses...

IS: question

In trying to use an ES6 style JavaScript import rather than the Node `require()` function, the `js` pragma fails if the import module name is more than 5 characters long....

Hello Jacques, please add this small example of using another JS bundler as a additional post-processing step to the "Mixed Examples" section in`integration_javascript.rst`. # Example: Using a Javascript bundler in...

SUB: documentation

```python for i in range(10): pass print(i) ``` Will print 9 in python, but 10 in javascript, because the loop is unrolled into ```for (var i=0; i

STATE: under consideration

The current Javascript bundler cannot merge existing source map files. This means that you can no longer use the source map generated by Transcrypt after the module files have been...

SUB: documentation