[Python-checkins] python/dist/src/Lib/email Generator.py,1.11,1.12
bwarsaw@users.sourceforge.net
bwarsaw@users.sourceforge.net
Thu, 11 Jul 2002 11:48:42 -0700
Update of /cvsroot/python/python/dist/src/Lib/email
In directory usw-pr-cvs1:/tmp/cvs-serv9561
Modified Files:
Generator.py
Log Message:
_dispatch(): Comment improvements.
Index: Generator.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/Generator.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Generator.py 9 Jul 2002 02:43:47 -0000 1.11
--- Generator.py 11 Jul 2002 18:48:40 -0000 1.12
***************
*** 121,127 ****
def _dispatch(self, msg):
# Get the Content-Type: for the message, then try to dispatch to
! # self._handle_maintype_subtype(). If there's no handler for the full
! # MIME type, then dispatch to self._handle_maintype(). If that's
! # missing too, then dispatch to self._writeBody().
ctype = msg.get_type()
if ctype is None:
--- 121,127 ----
def _dispatch(self, msg):
# Get the Content-Type: for the message, then try to dispatch to
! # self._handle_<maintype>_<subtype>(). If there's no handler for the
! # full MIME type, then dispatch to self._handle_<maintype>(). If
! # that's missing too, then dispatch to self._writeBody().
ctype = msg.get_type()
if ctype is None: