Django

Code

Changeset 7183

Show
Ignore:
Timestamp:
02/29/08 11:00:35 (9 months ago)
Author:
mtredinnick
Message:

Updated a docstring on a couple of email functions to stop the complaints.
It's deprecated for internal use, but the functions still exist.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/mail.py

    r6989 r7183  
    319319    If auth_password is None, the EMAIL_HOST_PASSWORD setting is used. 
    320320 
    321     NOTE: This method is deprecated. It exists for backwards compatibility. 
    322     New code should use the EmailMessage class directly. 
     321    Note: The API for this method is frozen. New code wanting to extend the 
     322    functionality should use the EmailMessage class directly. 
    323323    """ 
    324324    connection = SMTPConnection(username=auth_user, password=auth_password, 
     
    336336    If auth_password is None, the EMAIL_HOST_PASSWORD setting is used. 
    337337 
    338     NOTE: This method is deprecated. It exists for backwards compatibility. 
    339     New code should use the EmailMessage class directly. 
     338    Note: The API for this method is frozen. New code wanting to extend the 
     339    functionality should use the EmailMessage class directly. 
    340340    """ 
    341341    connection = SMTPConnection(username=auth_user, password=auth_password,