Elias Dorneles

Results 30 comments of Elias Dorneles

Relevant code: https://github.com/kevin1024/vcrpy/blob/master/vcr/filters.py#L86

Well, I haven't tried yet the code on master, but judging from the code, the issue I described is still there. This makes it hard to test API calls to...

I talked about this with @moisesguimaraes, he did some tests locally to see what browsers do and checked some RFC, it seems that it makes sense to strip spaces from...

+1 on `--set-json`, it will support automatically more complex settings (lists inside dicts, etc).

Hello, I'm not a maintainer, but as it seems so trivial to implement the behavior you want in the client code, and it would push probably too much responsibility to...

This is a neat idea, interesting implementation hack! :) So, I'm not a maintainer of retrying, but it would be nice have tests for this. Good test coverage is pretty...

> The first is the selection of text, in FTXUI I can't seem to select and copy text in the TUI by mouse movement, which makes me have to type...

I like it too. :) So, would be something like: ``` @property def name(self): return getattr(self.__class__, 'name', self.__class__.__name__) ``` And without the check for the name attribute on init?

Uh, I've just realized the above code would fail for the case when name is set via `__init__`.

Actually, would fail for other cases as well, I clearly didn't think this through. :D