New submission from Chris AtLee <[EMAIL PROTECTED]>: The BaseHTTPServer docs don't mention 'server' as an instance variable in the instance variable section for BaseHTTPRequestHandler. It is mentioned in passing a few paragraphs above in the BaseHTTPServer class description, but it's too easy to miss there.
Index: basehttpserver.rst =================================================================== --- basehttpserver.rst (revision 66056) +++ basehttpserver.rst (working copy) @@ -68,6 +68,11 @@ address. + .. attribute:: server + + Contains the server instance. + + .. attribute:: command Contains the command (request type). For example, ``'GET'``. ---------- assignee: georg.brandl components: Documentation messages: 72144 nosy: catlee, georg.brandl severity: normal status: open title: Update BaseHTTPServer docs type: feature request versions: Python 2.5, Python 2.6, Python 3.0 _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3730> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com