This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: smtpd.py docstring says wrong default class
Type: Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: barry Nosy List: barry, chrisgreen
Priority: normal Keywords:

Created on 2004-08-16 15:57 by chrisgreen, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg22085 - (view) Author: Chris Green (chrisgreen) Date: 2004-08-16 15:57
Python 2.3.3  

smtpd.py

   Says it uses SMTPProxy by default where it's
actually "PureProxy"

  -c classname
        Use `classname' as the concrete SMTP proxy
class.  Uses `SMTPProxy' by
        default.

[...]
class Options:
    setuid = 1
    classname = 'PureProxy'

msg22086 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2004-10-09 21:44
Logged In: YES 
user_id=12800

Fixed in Python 2.3 and 2.4.
History
Date User Action Args
2022-04-11 14:56:06adminsetgithub: 40768
2004-08-16 15:57:01chrisgreencreate