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 belopolsky
Recipients belopolsky
Date 2010-10-04.16:24:03
SpamBayes Score 3.2920365e-08
Marked as misclassified No
Message-id <1286209446.65.0.698670214161.issue10021@psf.upfronthosting.co.za>
In-reply-to
Content
According to the Format String Syntax section [1], attribute_name must be an identifier.  However, the parser does not catch a violation of this rule and happily passes non-indentifier strings to getattribute:

>>> class X:
...    def __getattribute__(self, a): return 'foo'
... 
>>> '{.$#@}'.format(X())
'foo'
 
If this is a desirable feature, I think it should be clearly documented because in some cases, for example when formatted objects are proxies to  database entries, passing arbitrary strings to __getattribute__ may be wasteful at best and a security hole at worst.


[1] http://docs.python.org/dev/py3k/library/string.html#format-string-syntax
History
Date User Action Args
2010-10-04 16:24:06belopolskysetrecipients: + belopolsky
2010-10-04 16:24:06belopolskysetmessageid: <1286209446.65.0.698670214161.issue10021@psf.upfronthosting.co.za>
2010-10-04 16:24:04belopolskylinkissue10021 messages
2010-10-04 16:24:03belopolskycreate