Message7979

Author seletz
Recipients fwierzbicki, seletz
Date 2013-03-25.07:56:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364198192.11.0.477300210223.issue2028@psf.upfronthosting.co.za>
In-reply-to
Content
I just looked at the "string.py" module in Lib -- there's a comment
about this (line 533ff)::

    ########################################################################
    # the Formatter class
    # see PEP 3101 for details and purpose of this class
    
    # The hard parts are reused from the C implementation.  They're exposed as "_"
    # prefixed methods of str and unicode.
    
    # The overall parser is implemented in str._formatter_parser.
    # The field name parser is implemented in str._formatter_field_name_split

And I looked at the output of dir("foo")  and dir(u"foo").  The former does indeed
have a _formatter_parser() and _formatter_field_name_split() method.

Where are the tests located in a checked-out Jython tree?
History
Date User Action Args
2013-03-25 07:56:32seletzsetmessageid: <1364198192.11.0.477300210223.issue2028@psf.upfronthosting.co.za>
2013-03-25 07:56:32seletzsetrecipients: + seletz, fwierzbicki
2013-03-25 07:56:31seletzlinkissue2028 messages
2013-03-25 07:56:31seletzcreate