Elias Dorneles

Results 30 comments of Elias Dorneles

Hello Boris ! Sorry for taking long to answer !! What I personally wanted to customize was the test collection -- basically, I had a test suite with several thousands...

Loved the dump stats feature! :heart: Question: would it make sense to have an option to use a format more easily parseable? (e.g. JSON) It would be nice to be...

I haven't had time to check this with depth. But it will need updating docs, maybe we should remove `create_root_node` from the docs to make explicit that deprecation?

That's an interesting idea. We were just talking about perhaps adding a JsonResponse to Scrapy in https://github.com/scrapy/scrapy/issues/1729 I'd be okay with adding a `JsonSelector` completely separate from the already existing...

@dangra I see. Hm, my thinking was that the input for both would be different (a selector supporting JMESPath wants JSON, not HTML/XML). Do we have an use case for...

@kmike curious how you're thinking about the implementation. You mentioned `response.jmespath` -- we don't have response in Parsel, did you mean it as a method for the Selector class itself?

FYI, there are already two CLI implementations: * `parselcli`: https://github.com/Granitosaurus/parsel-cli * `parsel-cli`: https://github.com/rmax/parsel-cli (seems unmaintained)

It's not clear if this issue is about being able to run modules with main function (e.g. `pudb3 -m module.name`, which will be added in https://github.com/inducer/pudb/pull/390) or about the pdb...

Yeah, I've bumped into this issue many times. I believe what makes this complicated is, what if you have: ``` def some_generator(): for i in range(10): yield i if all(i...

Just tried it with `pdb` with both snippets, and it has the same weird behavior of having to iterate several times for the whole all line. While trying the second...