mwchase

Results 28 comments of mwchase

> In my case I'd like to parametrize the return type of different kind of states, but I can't figure out what's the correct way of doing so: I don't...

`PIP_CONSTRAINT=constraints.txt pip install dependent` turns out to be an acceptable workaround for my purposes. Probably better than the other workarounds I've used since I filed this. EDIT: Also, FWIW, if...

I should have kept up with the behavior of the new resolver. It appears that https://github.com/pypa/pip/issues/8210 in a sense, breaks both the problem and the solution. I'll investigate more comprehensive...

I was hesitant to ask for changes because every way I've come up with to address this is either implementation-specific, or a breaking change. What's happening to trigger this bug...

Okay, I just checked this a bit more, and it happens when the annotations on `__init__` use string keys, which happens implicitly when using `from __future__ import annotations`. I've got...

Last night, I put together a set of tests demonstrating the issue: https://github.com/bobthemighty/punq/compare/master...mwchase:name-collision I think I was a little abstract in my explanations; this should be more concrete. I think...

Now that I've had a chance to look and think things over, I think I was over-estimating the magnitude of the changes I want, from a design perspective. Basically, what...

Update from the future: that patch up there doesn't apply cleanly, and shouldn't be necessary, but something still seems off with my setup. I'm going to check for configuration issues...

Okay, the configuration works fine. What I'm not sure about is the intended behavior. I'm just going to put my thoughts in here because I'm really confused, and maybe it...

I'm curious about that, so I'm going to take the code from the source and try touching it up myself. ```c int sort (int x[ ], int n) { int...