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 georg.brandl
Recipients Behdad.Esfahbod, docs@python, georg.brandl
Date 2014-09-30.17:29:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412098194.27.0.896828717597.issue22525@psf.upfronthosting.co.za>
In-reply-to
Content
I agree that the wording can be improved.  The term "expression" is used here loosely, but should be clarified.

"a+b" with numbers a, b must be handled in order to evaluate complex literals as in "1+1j".

Allowing operator expressions with literals is possible, but much more complex than the current implementation.  A simple implementation is not safe: you can induce basically unbounded CPU and memory usage with no effort (try "9**9**9" or "[None] * 9**9").

As for the usefulness, this function is useful to "read back" literal values and containers as stringified by repr().  This can for example be used for serialization in a format that is similar to but more powerful than JSON.
History
Date User Action Args
2014-09-30 17:29:54georg.brandlsetrecipients: + georg.brandl, docs@python, Behdad.Esfahbod
2014-09-30 17:29:54georg.brandlsetmessageid: <1412098194.27.0.896828717597.issue22525@psf.upfronthosting.co.za>
2014-09-30 17:29:54georg.brandllinkissue22525 messages
2014-09-30 17:29:54georg.brandlcreate