Re: [systemd-devel] [PATCH] analyze: work around bug in Python 3 Cairo bindings

2012-07-10 Thread Lennart Poettering
On Tue, 10.07.12 04:16, Shawn Landen (shawnland...@gmail.com) wrote: > From: Shawn Landden > > The python3 version of the Cairo bindings doesn't know how to write > to sys.stdout/sys.stderr, which changed from from accepting str in > python 2, to accepting a byte stream in python 3. > > Work ar

Re: [systemd-devel] [PATCH] analyze: work around bug in Python 3 Cairo bindings

2012-07-10 Thread shawn
I've looked into this issue a bit more don't commit inaccurate commit messages >From 5fb21257ad39ba81c1db6e402b9bbf91d5bbb640 Mon Sep 17 00:00:00 2001 From: Shawn Landden Date: Tue, 10 Jul 2012 03:57:18 + Subject: [PATCH] analyze: work around bug in Python 3 Cairo bindings Python 3 Cairo bi

[systemd-devel] [PATCH] analyze: work around bug in Python 3 Cairo bindings

2012-07-09 Thread Shawn Landen
From: Shawn Landden The python3 version of the Cairo bindings doesn't know how to write to sys.stdout/sys.stderr, which changed from from accepting str in python 2, to accepting a byte stream in python 3. Work around this by using /dev/stdout. http://bugs.freedesktop.org/show_bug.cgi?id=50989 -