summaryrefslogtreecommitdiff
path: root/paste/debug
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-01-04 02:21:39 +0000
committerianb <devnull@localhost>2006-01-04 02:21:39 +0000
commit76835026b96049e05593aee80cd4a4a916ad9a4a (patch)
tree76eba29a0c5e2133555d06ffaf695cc4408e0872 /paste/debug
parent70ad238eca82e78e87ea4ee6948d946a94d0355d (diff)
downloadpaste-76835026b96049e05593aee80cd4a4a916ad9a4a.tar.gz
Added docstrings to some modules
Diffstat (limited to 'paste/debug')
-rw-r--r--paste/debug/prints.py4
-rw-r--r--paste/debug/profile.py5
-rw-r--r--paste/debug/wdg_validate.py4
3 files changed, 13 insertions, 0 deletions
diff --git a/paste/debug/prints.py b/paste/debug/prints.py
index a0f54c5..15d5963 100644
--- a/paste/debug/prints.py
+++ b/paste/debug/prints.py
@@ -1,5 +1,9 @@
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
+"""
+Middleware that displays everything that is printed inline in
+application pages.
+"""
from cStringIO import StringIO
import re
diff --git a/paste/debug/profile.py b/paste/debug/profile.py
index f2b90ed..b112041 100644
--- a/paste/debug/profile.py
+++ b/paste/debug/profile.py
@@ -1,5 +1,10 @@
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
+"""
+Middleware that profiles the request and displays profiling
+information at the bottom of each page.
+"""
+
import sys
import os
diff --git a/paste/debug/wdg_validate.py b/paste/debug/wdg_validate.py
index 307d407..18b0f35 100644
--- a/paste/debug/wdg_validate.py
+++ b/paste/debug/wdg_validate.py
@@ -1,5 +1,9 @@
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
+"""
+Middleware that tests the validity of all generated HTML using the
+`WDG HTML Validator <http://www.htmlhelp.com/tools/validator/>`_
+"""
from cStringIO import StringIO
try: