summaryrefslogtreecommitdiff
path: root/paste/evalexception
diff options
context:
space:
mode:
Diffstat (limited to 'paste/evalexception')
-rw-r--r--paste/evalexception/__init__.py2
-rw-r--r--paste/evalexception/evalcontext.py2
-rw-r--r--paste/evalexception/middleware.py2
3 files changed, 6 insertions, 0 deletions
diff --git a/paste/evalexception/__init__.py b/paste/evalexception/__init__.py
index 5f6dd4f..298d72b 100644
--- a/paste/evalexception/__init__.py
+++ b/paste/evalexception/__init__.py
@@ -1,3 +1,5 @@
+# (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
"""
An exception handler for interactive debugging
"""
diff --git a/paste/evalexception/evalcontext.py b/paste/evalexception/evalcontext.py
index 5ce311d..dca2a97 100644
--- a/paste/evalexception/evalcontext.py
+++ b/paste/evalexception/evalcontext.py
@@ -1,3 +1,5 @@
+# (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
from cStringIO import StringIO
import traceback
import threading
diff --git a/paste/evalexception/middleware.py b/paste/evalexception/middleware.py
index 3647552..41c5751 100644
--- a/paste/evalexception/middleware.py
+++ b/paste/evalexception/middleware.py
@@ -1,3 +1,5 @@
+# (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
"""
Exception-catching middleware that allows interactive debugging.