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, eric.araujo
Date 2010-10-04.16:38:09
SpamBayes Score 0.00015457252
Marked as misclassified No
Message-id <1286210292.32.0.724986750508.issue10021@psf.upfronthosting.co.za>
In-reply-to
Content
PEP 3101 has the following

"""
    Implementation note: The implementation of this proposal is
    not required to enforce the rule about a simple or dotted name
    being a valid Python identifier.  Instead, it will rely on the
    getattr function of the underlying object to throw an exception if
    the identifier is not legal.  The str.format() function will have
    a minimalist parser which only attempts to figure out when it is
    "done" with an identifier (by finding a '.' or a ']', or '}',
    etc.).
"""

Apparently CPython takes advantage of this note in its implementation.  Thus this is not a bug, but I think this implementation note should be added to CPython documentation.
History
Date User Action Args
2010-10-04 16:38:12belopolskysetrecipients: + belopolsky, eric.araujo
2010-10-04 16:38:12belopolskysetmessageid: <1286210292.32.0.724986750508.issue10021@psf.upfronthosting.co.za>
2010-10-04 16:38:10belopolskylinkissue10021 messages
2010-10-04 16:38:10belopolskycreate