[18:44:51] <wiredfool_> IIRC, my biggest concern with 243 at the time was to not screw up with the licensing, which was addressed.. Secondary was actually making sure that all the ico stuff worked, but it looks good on that front.
[19:07:46] <Arfrever> aclark: One hunk of patch from issue #258, which failed to apply for you, was removing trailing whitespace.
[23:29:27] <Arfrever> aclark: Is this a "framework" installation?
[23:30:13] <aclark> Arfrever: no, buildout.python: https://github.com/collective/buildout.python
[23:32:14] <Arfrever> aclark: Maybe buildout.python places stdlib in a location unknown by core code of Python interpreter. (Python interpreter without -S option imports site.py, which adds some additional directories to sys.path.)
[23:33:41] <aclark> Arfrever: It shouldn't… let me see
[23:34:56] <Arfrever> aclark: In my system installation of Python on GNU/Linux, __future__.py is in location, which is in sys.path even with -S option.
[23:35:39] <Arfrever> aclark: Your __future__.py is /Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/__future__.py as you previously pasted.
[23:38:03] <aclark> Arfrever: OK here's Ubuntu where I get the same error: https://gist.github.com/aclark4life/5897476
[23:38:20] <Arfrever> Any */buildout.python/* directories are absent in base (i.e. hardcoded in Python interpreter outside of site.py) sys.path in your Python.
[23:39:51] <Arfrever> aclark: Where is __future__.py on Ubuntu? (bin/python -c 'import __future__; print(__future__)')
[23:40:39] <aclark> <module '__future__' from '/usr/lib/python2.7/__future__.pyc'>
[23:42:54] <Arfrever> aclark: Show sys.path with -S and show sys.prefix and sys.exec_prefix.
[23:44:29] <Arfrever> (sys.path on Ubuntu shows mixing of system installation and local installation of Python.)