Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Neuhäuser <ich@danielneuhaeuser.de>2010-08-23 20:18:04 +0400
committerDaniel Neuhäuser <ich@danielneuhaeuser.de>2010-08-23 20:18:04 +0400
commit53192eebb0b6168750b054b2d6ffe12652e82ed6 (patch)
tree9341f43af35c490f55d8765a6f1433e0853fe1c5 /sphinx/util/png.py
parentc0d493cec9803d5920c897e62ef776d985088122 (diff)
Make chunks bytestrings
Diffstat (limited to 'sphinx/util/png.py')
-rw-r--r--sphinx/util/png.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/sphinx/util/png.py b/sphinx/util/png.py
index ca2273c4a..59c327151 100644
--- a/sphinx/util/png.py
+++ b/sphinx/util/png.py
@@ -12,12 +12,14 @@
import struct
import binascii
+from sphinx.util.pycompat import b
+
LEN_IEND = 12
LEN_DEPTH = 22
DEPTH_CHUNK_LEN = struct.pack('!i', 10)
-DEPTH_CHUNK_START = 'tEXtDepth\x00'
-IEND_CHUNK = '\x00\x00\x00\x00IEND\xAE\x42\x60\x82'
+DEPTH_CHUNK_START = b('tEXtDepth\x00')
+IEND_CHUNK = b('\x00\x00\x00\x00IEND\xAE\x42\x60\x82')
def read_png_depth(filename):