[Zope3-checkins] CVS: Zope3/src/zope/publisher/interfaces - http.py:1.5
Steve Alexander
steve@cat-box.net
Wed, 19 Feb 2003 10:24:50 -0500
Update of /cvs-repository/Zope3/src/zope/publisher/interfaces
In directory cvs.zope.org:/tmp/cvs-serv25488/src/zope/publisher/interfaces
Modified Files:
http.py
Log Message:
whitespace cleanup
=== Zope3/src/zope/publisher/interfaces/http.py 1.4 => 1.5 ===
--- Zope3/src/zope/publisher/interfaces/http.py:1.4 Tue Feb 11 11:00:09 2003
+++ Zope3/src/zope/publisher/interfaces/http.py Wed Feb 19 10:24:49 2003
@@ -232,7 +232,6 @@
"""Returns the current HTTP status code as an integer.
"""
-
def setStatus(status, reason=None):
"""Sets the HTTP status code of the response
@@ -244,7 +243,6 @@
correct integer value.
"""
-
def setHeader(name, value, literal=0):
"""Sets an HTTP return header "name" with value "value"
@@ -254,16 +252,13 @@
output.
"""
-
def addHeader(name, value):
"""Add an HTTP Header
Sets a new HTTP return header with the given value, while retaining
any previously set headers with the same name.
-
"""
-
def getHeader(name, default=None):
"""Gets a header value
@@ -272,12 +267,10 @@
yet.
"""
-
def getHeaders():
"""Returns a mapping of correctly-cased header names to values.
"""
-
def appendToCookie(name, value):
"""Append text to a cookie value
@@ -285,7 +278,6 @@
value is appended to the old one separated by a colon.
"""
-
def expireCookie(name, **kw):
"""Causes an HTTP cookie to be removed from the browser
@@ -298,7 +290,6 @@
argument.
"""
-
def setCookie(name, value, **kw):
"""Sets an HTTP cookie on the browser
@@ -314,7 +305,6 @@
Sets an HTTP return header "name" with value "value",
appending it following a comma if there was a previous value
set for the header.
-
"""
def setCharset(charset=None):