Forum Archive

[SOLVED] Strange behavior : my pythonista_startup.py script is called twice...

Brun0oO

Hi,

Is it normal : if I put a simple pythonista_startup.py in the site-packages folder with a simple (and single) print(« hello ») inside, I see « hello » twice in the console...
I would like to understand the reason because i’m using the dgelessus’s enabled_faulthandler script and it’s also called twice ....

Regards

JonB

There are two interpreters - the 2.7 and 3.6. if you place the script in site-packages, it will get run with both. If you only use py3, place it in site-packages-3 instead.

Brun0oO

@JonB : Simple...Thank you!