Tres Seaver

Results 40 comments of Tres Seaver

@wernight https://pypi.python.org/pypi/zc.buildout/2.2.1 is what I'm using.

According to @reinout, the PyPA folks fixed #283 with a [new setuptools release](https://bitbucket.org/pypa/setuptools/issues/476/setuptools-191-breaks-zcbuildout).

The `stable` build of the Zope RTD docs [just now failed due to this bug](https://readthedocs.org/projects/zope/builds/5049069/).

FWIW, the difference lies in the Python stdlib. Under Python 3.3.: ``` -> argspec = inspect.getargspec(fn) (Pdb) TypeError: is not a Python function ``` while under Python 3.4: ``` ->...

@mmerickel > It's something we could consider just to make the "common case" for people a bit simpler when integrating with pipenv where entry points are not considered something an...

Re: the first two diagrams: I don't know about the value of having two such similar diagrams -- let's just adopt the ["with exceptions" one](https://github.com/stevepiercy/pyramid_request_diagram/blob/master/pyramid_request_processing_with_exceptions.svg) and use it wherever. The...

-1 to option 2: annotations have to stay tightly in-sync with code: in fact, we should find a way to "test" them so that we don't see them drift. I...

Seems reasonable to me to experiment. Maybe distributing it separate package would keep the focus tight. We might need to add a hook (an environment variable, maybe?) to let people...

@ShwetanshuSingh The traceback indicates that `info` is a string, rather than the expected `dict`. Digging down, `_metadata.get_service_account_info` calls `_metadata.get`, which only [returns a string](https://github.com/googleapis/google-auth-library-python/blob/3c3fbf40b07e090f2be7fac5b304dbf438b5cd6c/google/auth/compute_engine/_metadata.py#L180) if the metadata server returns a...

We've used submodules to handle common theming for Pyramid / Pylons projects, and found them incredibly painful: ripping them out has been on the TODO list for a good while....