summaryrefslogtreecommitdiff
path: root/docs/ref/exceptions.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-05-04 12:29:31 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-05-13 09:07:51 +0200
commit4c5236ef93db714b63eedcc5a162631a6ca1def9 (patch)
treed82b7fc2f36909b2bf05b0aa45a5c30792d812ad /docs/ref/exceptions.txt
parent3b94f12462d262a812930cf25efe8d8eb07c5c83 (diff)
Removed versionadded/changed annotations for 3.0.
Diffstat (limited to 'docs/ref/exceptions.txt')
-rw-r--r--docs/ref/exceptions.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/ref/exceptions.txt b/docs/ref/exceptions.txt
index 6b8d6707e4..ee2c9b7f10 100644
--- a/docs/ref/exceptions.txt
+++ b/docs/ref/exceptions.txt
@@ -167,8 +167,6 @@ list of errors.
.. exception:: RequestAborted
- .. versionadded:: 3.0
-
The :exc:`RequestAborted` exception is raised when a HTTP body being read
in by the handler is cut off midstream and the client connection closes,
or when the client does not send data and hits a timeout where the server
@@ -184,8 +182,6 @@ list of errors.
.. exception:: SynchronousOnlyOperation
- .. versionadded:: 3.0
-
The :exc:`SynchronousOnlyOperation` exception is raised when code that
is only allowed in synchronous Python code is called from an asynchronous
context (a thread with a running asynchronous event loop). These parts of