[Python-checkins] r84795 - python/branches/py3k/Doc/library/logging.rst

vinay.sajip python-checkins at python.org
Tue Sep 14 08:59:24 CEST 2010


Author: vinay.sajip
Date: Tue Sep 14 08:59:24 2010
New Revision: 84795

Log:
Tidied example script.

Modified:
   python/branches/py3k/Doc/library/logging.rst

Modified: python/branches/py3k/Doc/library/logging.rst
==============================================================================
--- python/branches/py3k/Doc/library/logging.rst	(original)
+++ python/branches/py3k/Doc/library/logging.rst	Tue Sep 14 08:59:24 2010
@@ -2660,6 +2660,8 @@
             data = json.dumps(record.__dict__)
             self.queue.send(data)
 
+        def close(self):
+            self.queue.close()
 
 .. _formatter-objects:
 


More information about the Python-checkins mailing list