Results 248 issues of Alex Rothberg

In my `setup.py`, I have: ``` tests_require=[ 'mock', 'httmock', ] ``` which then leads to: ``` Traceback (most recent call last): File "/home/travis/virtualenv/python2.7.9/bin/coveralls", line 11, in sys.exit(wear()) File "/home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages/coveralls/__init__.py", line...

Allow specifying multiple `data_files` on submission.

In addition to runtime, it would be good to know what the the peak amount of GPU RAM used by each of the the implementations of convnets.

See: https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/api_docs/python/nn.md#tfnnatrous_conv2dvalue-filters-rate-padding-namenone-atrous_conv2d

For example: - https://github.com/teddziuba/django-sslserver - https://github.com/hangarunderground/hendrix#serving-static-files

Is there any way to access the response headers (on success)? The docs have this comment: ``` // Error handler: (data, status, headers, config) ```

It would be great to have SQLite support even if that layer is emulated inefficiently. According to this: http://en.wikipedia.org/wiki/Hierarchical_and_recursive_queries_in_SQL#Common_table_expression SQLite should support CTEs. See "Quick note on recursion" in: http://charlesleifer.com/blog/querying-tree-structures-in-sqlite-using-python-and-the-transitive-closure-extension/

This issue can be summarized as having some way of getting a `queryset` of a Node's ancestors without having to perform a query. Using these Models: ``` python class Category2(CTENode):...

Using the Model from the docs: ``` python class Category2(CTENode): name = models.CharField(max_length = 128, null = False) def __unicode__(self): return '%s @ %s' % (self.name, self.depth) ``` and calling:...

The current middleware subclasses `BaseHTTPMiddleware` which per https://github.com/encode/starlette/issues/919 and https://github.com/tiangolo/fastapi/issues/2086 will cause all background tasks to run before the response is sent. Better would be to _not_ subclass `BaseHTTPMiddleware`. Instead...