Mercurial > public > mercurial-scm > python-hglib
diff hglib/client.py @ 146:8d7bf729a4db
hglib: use io.BytesIO when available (issue4520)
Since cStringIO.StringIO is not available in Python 3, try to use
io.BytesIO when available.
author | Brett Cannon <brett@python.org> |
---|---|
date | Fri, 13 Mar 2015 11:34:52 -0400 |
parents | f3c430afa598 |
children | 98829bf71f10 |
line wrap: on
line diff
--- a/hglib/client.py Fri Mar 13 11:31:54 2015 -0400 +++ b/hglib/client.py Fri Mar 13 11:34:52 2015 -0400 @@ -1,5 +1,8 @@ import subprocess, os, struct, re, datetime -from cStringIO import StringIO as BytesIO +try: + from io import BytesIO +except ImportError: + from cStringIO import StringIO as BytesIO import hglib, error, util, templates, merge, context from util import b, cmdbuilder