You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This time, clicking the Run button will display the message "FAILURE!", meaning that the importation failed.
The problem is that with the version 3.12.1, Brython, to import the atlastk module, uses the (correct) query https://faas.q37.info/brython/atlastk.py, but, with the version 3.12.2, it uses https://cdn.jsdelivr.net/brython/atlastk.py…
With the development version, the importation fails too.
The text was updated successfully, but these errors were encountered:
Hello,
I use Brython with a module of mine, called atlastk. With Brython version 3.12.2, the importation of this module fails.
Here is the code I use for the testing:
Here's the link to test this code with version 3.12.1: https://faas.q37.info/brython/?version=3.12.1&code=import%20browser%0A%0Atry%3A%0A%20%20%20%20import%20atlastk%0Aexcept%3A%0A%20%20%20%20browser.alert%28%22FAILURE!%22%29%0Aelse%3A%0A%20%20%20%20browser.alert%28%22Success.%22%29
By clicking the Run button, you will have (it will take about 10 seconds) the message "Success.", meaning that the importation was successful.
Following link is the same but with version 3.12.2: https://faas.q37.info/brython/?version=3.12.2&code=import%20browser%0A%0Atry%3A%0A%20%20%20%20import%20atlastk%0Aexcept%3A%0A%20%20%20%20browser.alert%28%22FAILURE!%22%29%0Aelse%3A%0A%20%20%20%20browser.alert%28%22Success.%22%29
This time, clicking the Run button will display the message "FAILURE!", meaning that the importation failed.
The problem is that with the version 3.12.1, Brython, to import the atlastk module, uses the (correct) query
https://faas.q37.info/brython/atlastk.py
, but, with the version 3.12.2, it useshttps://cdn.jsdelivr.net/brython/atlastk.py
…With the development version, the importation fails too.
The text was updated successfully, but these errors were encountered: