Greg Ewing wrote:
Maciej Fijalkowski wrote:
What do you think about this code:
class A:
locals()[42] = 98
Seems people rely on it working. Do we consider it part of python
language?
Modifying the dict returned by locals() is documented
as NOT being guaranteed to work, isn't it?
Yep - it just happens to work for class and module level namespaces in
CPython.
Implementations are also permitted to restrict namespace dictionaries to
only accept string keys (I believe Jython does this for performance
reasons - CPython just optimised the hell out of normal dictionaries
that happen to only contain string keys instead).
So I don't see any reason for Maciej to mess with PyPy to support code
which deliberately makes use of formally undefined behaviour.
Cheers,
Nick.
--
Nick Coghlan | [EMAIL PROTECTED] | Brisbane, Australia
---------------------------------------------------------------
http://www.boredomandlaziness.org
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe:
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com