Themanwithoutaplan
Themanwithoutaplan
I hit something similar to what Reinout describes: pinning setuptools in virtualenv seems to cause a loop. What seems to work for me is to check the version of setuptools...
I'll give it a go. Not a Ruby programmer but should be able to get the functionality.
I can confirm the error when running `self.assertEqual(x, y)`. Two workarounds: use `self.assertTrue(x == y)` or use a different test runner such as py.test.
I'd add something like this to the `retail.__init__.py` or a macros file. ``` from pyramid.renderers import get_renderer from pyramid.interfaces import IBeforeRender from pyramid.events import subscriber @subscriber(IBeforeRender) def globals_factory(event): master =...
FWIW, and not that anyone asked, but I switched to using a JSON file for managing such variables that need to be acessed both from outside and within the package....