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.

Author catlee
Recipients catlee, georg.brandl
Date 2008-08-29.15:53:58
SpamBayes Score 8.5500136e-07
Marked as misclassified No
Message-id <1220025240.46.0.36189752437.issue3730@psf.upfronthosting.co.za>
In-reply-to
Content
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'``.
History
Date User Action Args
2008-08-29 15:54:00catleesetrecipients: + catlee, georg.brandl
2008-08-29 15:54:00catleesetmessageid: <1220025240.46.0.36189752437.issue3730@psf.upfronthosting.co.za>
2008-08-29 15:53:59catleelinkissue3730 messages
2008-08-29 15:53:58catleecreate