Garrett
Garrett
Would it be possible to normalize this some way, like providing an option to `decorator` that forces `self` into args instead of binding? Or is it sufficient to do something...
Here's an example of my use case: ```python def with_data_item(data_key): @decorator def wrapper(wrapped, instance, args, kwargs): def adapter(*_args, **_kwargs): # is this adapter needed? I am removing an arg from...
@faho Good call. Should that be in the documentation?
Ok, so I was testing this in a jest environment. It was having issues there, but running it directly seems to be working... That is odd...
Yes, confirmed that in jest tests, the code does not seem able to load files, but outside jest tests, the code works fine. So I assume there's some global state...
I added the details and an example project, hope that helps. There doesn't seem to be anything useful on the stack. I ran a debugger, and was looking at the...
Strangely, `.at` is undefined on `wrapper` and the result of `find('a')` 🤔. Is that normal? Versions: - `[email protected]` - `[email protected]`
Ok, thanks @ljharb! It is a bummer that this doesn't work with other chai tools like `chai-things` because of not being a real array, but I'm not sure that would...
Yeah, makes sense. Looking into it more, and trying to implement something on my own, I'm kinda thinking there needs to be some sort of configurable serializer builder object that...
This is a breaking change, and it was introduced in a patch level version... Seems like a bad idea, and it seems like it is possible to support the old...