Created attachment 276245 [details] Full build log When upgrading net-zope/zope-interface from v3.5.3 to v3.6.2, net-zope/zope-fixers-1.0 is now pulled in. It's not keyworded for ~x86-linux yet, but it fails its tests nonetheless: SyntaxError: Non-ASCII character '\xc2' in file /home/fredden/.gentoo/var/tmp/portage/net-zope/zope-fixers-1.0/work/zope.fixers-1.0/zope/fixers/tests.py on line 303, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details This patch fixes it for me: --- tests.py.orig 2011-06-08 17:11:40.000000000 +1200 +++ tests.py 2011-06-08 17:12:09.000000000 +1200 @@ -1,3 +1,4 @@ +# coding=utf-8 import unittest from lib2to3.refactor import RefactoringTool Should this perhaps be sent upstream?
Tests with Python 2 are now skipped.