summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-10-21 00:22:53 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-10-21 00:22:53 (GMT)
commitd5050b3e17a5818c77b853fd0f69d1f0c9e7cc55 (patch)
tree3ba048774c01bd07963b9e8b57da89bf966f6190
parent6f7b0da6bcbcb5a873d8315e49db4096895fc2eb (diff)
parentb24d3cf769e242c14facc99a27798f2e44bde5c6 (diff)
downloadcpython-d5050b3e17a5818c77b853fd0f69d1f0c9e7cc55.zip
cpython-d5050b3e17a5818c77b853fd0f69d1f0c9e7cc55.tar.gz
cpython-d5050b3e17a5818c77b853fd0f69d1f0c9e7cc55.tar.bz2
Merge indentation fixes with 3.3.
-rw-r--r--Doc/library/exceptions.rst39
1 files changed, 20 insertions, 19 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst
index ac02215..053ba56 100644
--- a/Doc/library/exceptions.rst
+++ b/Doc/library/exceptions.rst
@@ -449,34 +449,35 @@ depending on the system error code.
.. exception:: ConnectionError
- A base class for connection-related issues. Subclasses are
- :exc:`BrokenPipeError`, :exc:`ConnectionAbortedError`,
+ A base class for connection-related issues.
+
+ Subclasses are :exc:`BrokenPipeError`, :exc:`ConnectionAbortedError`,
:exc:`ConnectionRefusedError` and :exc:`ConnectionResetError`.
- .. exception:: BrokenPipeError
+.. exception:: BrokenPipeError
- A subclass of :exc:`ConnectionError`, raised when trying to write on a
- pipe while the other end has been closed, or trying to write on a socket
- which has been shutdown for writing.
- Corresponds to :c:data:`errno` ``EPIPE`` and ``ESHUTDOWN``.
+ A subclass of :exc:`ConnectionError`, raised when trying to write on a
+ pipe while the other end has been closed, or trying to write on a socket
+ which has been shutdown for writing.
+ Corresponds to :c:data:`errno` ``EPIPE`` and ``ESHUTDOWN``.
- .. exception:: ConnectionAbortedError
+.. exception:: ConnectionAbortedError
- A subclass of :exc:`ConnectionError`, raised when a connection attempt
- is aborted by the peer.
- Corresponds to :c:data:`errno` ``ECONNABORTED``.
+ A subclass of :exc:`ConnectionError`, raised when a connection attempt
+ is aborted by the peer.
+ Corresponds to :c:data:`errno` ``ECONNABORTED``.
- .. exception:: ConnectionRefusedError
+.. exception:: ConnectionRefusedError
- A subclass of :exc:`ConnectionError`, raised when a connection attempt
- is refused by the peer.
- Corresponds to :c:data:`errno` ``ECONNREFUSED``.
+ A subclass of :exc:`ConnectionError`, raised when a connection attempt
+ is refused by the peer.
+ Corresponds to :c:data:`errno` ``ECONNREFUSED``.
- .. exception:: ConnectionResetError
+.. exception:: ConnectionResetError
- A subclass of :exc:`ConnectionError`, raised when a connection is
- reset by the peer.
- Corresponds to :c:data:`errno` ``ECONNRESET``.
+ A subclass of :exc:`ConnectionError`, raised when a connection is
+ reset by the peer.
+ Corresponds to :c:data:`errno` ``ECONNRESET``.
.. exception:: FileExistsError