# HG changeset patch # User paulb # Date 1098041464 0 # Node ID 95238b92498feaf47ba639495734ae570ab0be36 # Parent 9258f0bcd5cb421ae4de279dd513da515e10cb77 [project @ 2004-10-17 19:31:04 by paulb] Added an EndOfResponse exception which terminates request handling without error. Updated the release number for subsequent releases. diff -r 9258f0bcd5cb -r 95238b92498f WebStack/Generic.py --- a/WebStack/Generic.py Sun Oct 17 19:30:10 2004 +0000 +++ b/WebStack/Generic.py Sun Oct 17 19:31:04 2004 +0000 @@ -18,6 +18,12 @@ import urllib from WebStack.Helpers.Request import Cookie +class EndOfResponse(Exception): + + "An exception which signals the end of a response." + + pass + class HeaderValue: "A container for header information." diff -r 9258f0bcd5cb -r 95238b92498f WebStack/__init__.py --- a/WebStack/__init__.py Sun Oct 17 19:30:10 2004 +0000 +++ b/WebStack/__init__.py Sun Oct 17 19:31:04 2004 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python -__version__ = "0.7" +__version__ = "0.8" # vim: tabstop=4 expandtab shiftwidth=4