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 aroberge
Recipients aroberge, docs@python
Date 2015-12-05.20:13:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1449346403.16.0.483198527619.issue25810@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation for eval() indicates that it takes keyword arguments:

eval(expression, globals=None, locals=None)

However, that is incorrect, as indicated by the builtin help:

>>> help(eval)
Help on built-in function eval in module builtins:

eval(...)
    eval(source[, globals[, locals]]) -> value
History
Date User Action Args
2015-12-05 20:13:23arobergesetrecipients: + aroberge, docs@python
2015-12-05 20:13:23arobergesetmessageid: <1449346403.16.0.483198527619.issue25810@psf.upfronthosting.co.za>
2015-12-05 20:13:23arobergelinkissue25810 messages
2015-12-05 20:13:23arobergecreate