summaryrefslogtreecommitdiff
path: root/paste/evalexception
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-06-13 16:13:14 +0000
committerianb <devnull@localhost>2006-06-13 16:13:14 +0000
commit4042e8d79f968fabd2d66ba20d87481cf9cd11c0 (patch)
treea6055d7b118c5fe1dd24e19c0f788765d16dc666 /paste/evalexception
parent7da15f909d183b34c483448d48af9c4efcedd20e (diff)
downloadpaste-4042e8d79f968fabd2d66ba20d87481cf9cd11c0.tar.gz
Added copyright header to a bunch of files
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.