This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author fcostantini
Recipients fcostantini
Date 2016-08-05.17:39:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470418776.19.0.267562911935.issue27695@psf.upfronthosting.co.za>
In-reply-to
Content
Hi, we currently are fuzzing Python programs to find valid code that fails to compile. We found this program never finishes its compilation.

$ echo "raise ValueError ; 2 ** 12345678912345" > inf.py
$ python -m py_compile inf.py

We realize the computation is a large one and takes a very long time, in this case the compiler consumes more and more memory over time. Perhaps the compiler shouldn't try to calculate this indefinitely and just return an error.

Regards
History
Date User Action Args
2016-08-05 17:39:36fcostantinisetrecipients: + fcostantini
2016-08-05 17:39:36fcostantinisetmessageid: <1470418776.19.0.267562911935.issue27695@psf.upfronthosting.co.za>
2016-08-05 17:39:36fcostantinilinkissue27695 messages
2016-08-05 17:39:35fcostantinicreate