ANN: Austin -- CPython frame stack sampler 0.7.0

2019-07-30 Thread Gabriele
I am delighted to announce the release 0.7.0 of Austin. If you haven't heard of Austin before, it is a frame stack sampler for CPython. It can be used to obtain statistical profiling data out of a running Python application without a single line of instrumentation. This means that you can start

Re: .python_history file

2019-07-30 Thread teXture
> IMHO, this is a rather niche use case. And I suppose you could > relatively easily implement it yourself with a site hook that adds > magic > comments to ~/.pyhistory as you suggest. If you want this > functionality, > there's no need for it to be part of Python itself. > > FWIW, IPython, as far

Re: Modify setup

2019-07-30 Thread MRAB
On 2019-07-30 18:20, Steven via Python-list wrote: Good morning, I have uninstalled and reinstalled different versions of Python, and continue to get the "modify setup" box when I try to open. Is there something I'm doing wrong? Try to open what? It sounds to me like you're just running the i

Modify setup

2019-07-30 Thread Steven via Python-list
Good morning, I have uninstalled and reinstalled different versions of Python, and continue to get the "modify setup" box when I try to open. Is there something I'm doing wrong? Sent from ProtonMail mobile -- https://mail.python.org/mailman/listinfo/python-list

RE: Xml File Error

2019-07-30 Thread David Raymond
Is that the correct path to the file, without any typos? os.path.abspath and os.path.join don't do any checking on whether their resulting path exists. So if there is a typo or error in your path it doesn't get reported until you actually try and open it by running ElementTree.parse You can che

Xml File Error

2019-07-30 Thread Dipangi Shah
Hi, import os from xml.etree import ElementTree file_name = 'Users.xml' full_file = os.path.abspath(os.path.join('data', file_name)) print(full_file) with above code, path is successfully printed as "C:\Users\Evosys\PycharmProjects\Python Level1\data\Users.xml" but when I add below 2 lines, there

Re: how to generate a standard email form by default OS mail client?

2019-07-30 Thread Thomas Jollans
On 30/07/2019 10.06, dmitre...@gmail.com wrote: > Hello, > > is Python capable of generating a email form (from standard data - address, > topic, string message) with raising it by a default OS email client, e.g. > Thunderbird? User would like to have a possibility to review/modify email > conte

how to generate a standard email form by default OS mail client?

2019-07-30 Thread dmitrey15
Hello, is Python capable of generating a email form (from standard data - address, topic, string message) with raising it by a default OS email client, e.g. Thunderbird? User would like to have a possibility to review/modify email content inside the OS email client window before sending it. Ra