summaryrefslogtreecommitdiff
path: root/sphinx/util
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-01-17 14:24:24 +0100
committerGeorg Brandl <georg@python.org>2010-01-17 14:24:24 +0100
commit4b05bc1cd847c13650e276e1d23c987e0ed3a4a8 (patch)
tree22e416bb7b40f3354371d818b7440144216f2401 /sphinx/util
parentd7acefae40bbe3de5c8414ef56d8dc47dd5a5567 (diff)
parenteca39d1fb1e102caff120ac7c9c0d38e263c3939 (diff)
downloadsphinx-4b05bc1cd847c13650e276e1d23c987e0ed3a4a8.tar.gz
merge with trunk
Diffstat (limited to 'sphinx/util')
-rw-r--r--sphinx/util/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py
index bd263545..e6c0a661 100644
--- a/sphinx/util/__init__.py
+++ b/sphinx/util/__init__.py
@@ -34,6 +34,7 @@ from sphinx.errors import PycodeError
# Errnos that we need.
EEXIST = getattr(errno, 'EEXIST', 0)
ENOENT = getattr(errno, 'ENOENT', 0)
+EPIPE = getattr(errno, 'EPIPE', 0)
# Generally useful regular expressions.
ws_re = re.compile(r'\s+')