<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Aug 10, 2015 at 9:31 AM, Ben Boeckel <span dir="ltr"><<a href="mailto:ben.boeckel@kitware.com" target="_blank">ben.boeckel@kitware.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Mon, Aug 10, 2015 at 08:55:54 -0600, David Gobbi wrote:<br>
> I wouldn't be testing on Python 3.2 if I didn't think it would be worth<br>
> supporting.  There are still plenty of deployed systems around<br>
> (particularly Ubuntu and Debian) that come with Python 3.2 packages, and<br>
> they're far from End of Life.  And honestly, supporting Python 3.2 doesn't<br>
> take much effort.<br>
<br>
</span>FTR, the only Debian and Ubuntu releases with 3.2 are oldstable (wheezy,<br>
supported until February 2016; LTS until May 2018) and precise (12.04<br>
LTS, supported until April 2017).<br>
<br>
In any case, isn't this fixed with unicode('hello')?</blockquote><div><br></div><div>There is no unicode() in Python 3, so you'd have to make one for compatibility:</div><div><br></div><div>    if sys.hexversion >= 0x03000000:</div><div>        unicode = str</div><div><br></div><div> - David</div></div><br></div></div>