Nathaniel J. Smith
Nathaniel J. Smith
E.g. when LHS is categorical Or maybe we should just make it possible to specify that LHS should _categorical_, and then patsy returns integer array + labels.
Right now we can do prediction (i.e., design matrix generation) by specifying a set of data values (`{"x": 1, "y": 2}`). But for some purposes, like generating all pairwise categorical...
Two possible improvements in how we work with contrasts: - (minor) Maybe we should have a way to specify a contrast symbolically, like `linear_constraint` but just the linear part, not...
Some things that would be nice: ``` build_design_matrices([builder], {"x": 1, "y": [1, 2, 3]}) ``` should probably broadcast `x` against `y` -- very nice for prediction! (But if it were...
I feel like trio-asyncio's core functionality is been pretty solid for a while, but we're still flailing a bit trying to find the most usable way to expose it to...
Right now, this test passes: ```python async def do_something_broken(): assert False @pytest.mark.asyncio async def test_something_broken(): do_something_broken() ``` The reason is that we forgot the `await` in `test_something_broken`, so the broken...
We run coverage in `parallel=True` mode, because we have some tests that spawn subprocesses, and we want to capture coverage for all of them. To get a complete report for...
@ionelmc was asking in `#pypa` whether anyone actually uses 32-bit linux, so I ran some [queries](https://langui.sh/2016/12/09/data-driven-decisions/), and it looks like currently the answer is: * numpy: 99.5% of manylinux downloads...
Given discussion [here](https://mail.python.org/pipermail/distutils-sig/2016-February/028251.html) and [here](https://mail.python.org/pipermail/distutils-sig/2016-February/028252.html), it sounds like we can/should drop the UCS4-only requirement from PEP 513 after all. If that's right, then I guess there are a few things...
According to the spec, all HTTP/1.1 requests MUST have a `Host:` header. Currently h11 enforces this. @jab pointed me to this issue that go ran into in 2017 trying to...