summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-08-30 12:21:21 -0400
committerChris McDonough <chrism@plope.com>2013-08-30 12:21:21 -0400
commit6926fac06b60af2cfc43d768c17df8a2cd1e1b2e (patch)
tree0c9a1ccfcc1dc18667a1d436fd21a1650520b2ea
parentc5ed5491e8a6d736bedba45b2cb944799f36a5e4 (diff)
downloadpyramid-6926fac06b60af2cfc43d768c17df8a2cd1e1b2e.tar.gz
pyramid-6926fac06b60af2cfc43d768c17df8a2cd1e1b2e.tar.bz2
pyramid-6926fac06b60af2cfc43d768c17df8a2cd1e1b2e.zip
fix docstrings
-rw-r--r--pyramid/httpexceptions.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/pyramid/httpexceptions.py b/pyramid/httpexceptions.py
index fca4157b5..d05e419a0 100644
--- a/pyramid/httpexceptions.py
+++ b/pyramid/httpexceptions.py
@@ -328,7 +328,7 @@ class HTTPOk(HTTPSuccessful):
class HTTPCreated(HTTPSuccessful):
"""
- subclass of :class:`~HTTPOk`
+ subclass of :class:`~HTTPSuccessful`
This indicates that request has been fulfilled and resulted in a new
resource being created.
@@ -340,7 +340,7 @@ class HTTPCreated(HTTPSuccessful):
class HTTPAccepted(HTTPSuccessful):
"""
- subclass of :class:`~HTTPOk`
+ subclass of :class:`~HTTPSuccessful`
This indicates that the request has been accepted for processing, but the
processing has not been completed.
@@ -353,7 +353,7 @@ class HTTPAccepted(HTTPSuccessful):
class HTTPNonAuthoritativeInformation(HTTPSuccessful):
"""
- subclass of :class:`~HTTPOk`
+ subclass of :class:`~HTTPSuccessful`
This indicates that the returned metainformation in the entity-header is
not the definitive set as available from the origin server, but is
@@ -366,7 +366,7 @@ class HTTPNonAuthoritativeInformation(HTTPSuccessful):
class HTTPNoContent(HTTPSuccessful):
"""
- subclass of :class:`~HTTPOk`
+ subclass of :class:`~HTTPSuccessful`
This indicates that the server has fulfilled the request but does
not need to return an entity-body, and might want to return updated
@@ -380,7 +380,7 @@ class HTTPNoContent(HTTPSuccessful):
class HTTPResetContent(HTTPSuccessful):
"""
- subclass of :class:`~HTTPOk`
+ subclass of :class:`~HTTPSuccessful`
This indicates that the server has fulfilled the request and
the user agent SHOULD reset the document view which caused the
@@ -394,7 +394,7 @@ class HTTPResetContent(HTTPSuccessful):
class HTTPPartialContent(HTTPSuccessful):
"""
- subclass of :class:`~HTTPOk`
+ subclass of :class:`~HTTPSuccessful`
This indicates that the server has fulfilled the partial GET
request for the resource.