cpython/Lib/email
Barry Warsaw beb5945c65 has_key(): Implement in terms of get().
get_type(): Use a compiled regular expression, which can be shared.

_get_params_preserve(): A helper method which extracts the header's
    parameter list preserving value quoting.  I'm not sure that this
    needs to be a public method.  It's necessary because we want
    get_param() and friends to return the unquoted parameter value,
    however we want the quote-preserved form for set_boundary().

get_params(), get_param(), set_boundary(): Implement in terms of
    _get_params_preserve().

walk(): Yield ourself first, then recurse over our subparts (if any).
2001-09-26 05:41:51 +00:00
..
__init__.py
Encoders.py
Errors.py
Generator.py In class Generator: 2001-09-26 05:32:41 +00:00
Iterators.py Updated docstrings. Also, 2001-09-26 05:35:47 +00:00
Message.py has_key(): Implement in terms of get(). 2001-09-26 05:41:51 +00:00
MIMEBase.py __init__(): Arguments major renamed to maintype and minor renamed to 2001-09-26 05:36:36 +00:00
MIMEImage.py Image.py and class Image => MIMEImage.py and MIMEImage 2001-09-26 05:34:30 +00:00
MIMEMessage.py Image.py and class Image => MIMEImage.py and MIMEImage 2001-09-26 05:34:30 +00:00
MIMEText.py Image.py and class Image => MIMEImage.py and MIMEImage 2001-09-26 05:34:30 +00:00
Parser.py
Utils.py