[Python-3000-checkins] r65666 - python/branches/py3k

brett.cannon python-3000-checkins at python.org
Thu Aug 14 07:01:01 CEST 2008


Author: brett.cannon
Date: Thu Aug 14 07:01:01 2008
New Revision: 65666

Log:
Blocked revisions 65665 via svnmerge

........
  r65665 | brett.cannon | 2008-08-13 22:00:03 -0700 (Wed, 13 Aug 2008) | 11 lines
  
  Silence the DeprecationWarning of rfc822 triggered by its importation in
  mimetools.
  
  This has an unfortunate side-effect of potentially not letting any warning
  about rfc822's deprecation be seen by user-visible code if rfc822 is not
  imported before mimetools. This is because modules are cached in sys.modules
  and thus do not have their deprecation triggered more than once. But this
  silencing would have happened by other code that silences the use of mimetools
  or rfc822 anyway in the stdlib or user code, and thus seems justified to be
  done here.
........


Modified:
   python/branches/py3k/   (props changed)


More information about the Python-3000-checkins mailing list