Carl Meyer

Results 203 comments of Carl Meyer
trafficstars

> is this why I get Yup.

Thanks for the report! Yes, it looks like those two types need to be added to `_HIDDEN_BUILTIN_TYPES`. Could you submit a pull request with the change (and a test)?

@willcrichton > I don't think I understand the codemod design fully yet. How would insert_statements_before_* work if they're static methods? No, I think you understand just fine, and I didn't...

@jimmylai I'd be quite concerned about the perf impact of running a separate visitor pass on every call to `insert_statements_*`. Seems with heavy use of those methods, this would be...

Yeah, using `ParentNodeProvider` is a good idea. It will be good if we can avoid the need to remember to call `super()` and have more consistent usage pattern for all...

Thanks for your patience with this one, @willcrichton. Took some time to look into this more carefully today, and here are my conclusions so far: 1. Immutable trees and re-creation...

@iyanuashiri You'll want to construct a test case with a lazy-wrapped object and see it fail with that error, then look at the implementation of Django's lazy objects to see...

@mpage Maybe this is a case where we should just print a "failed to collect trace" and bail?

Hi @Patil2099. Thanks for your interest! I’m not sure how to describe it more clearly than in the issue description. The typing-inspect module abstracts introspection of types from the python...

HI @Razakhan4772 , please see my answer above to the same question.