Davide Sandonà
Davide Sandonà
What's up with python 3.12.0-alpha tests?
Aside from that, is there anything else stopping this from getting merged?
@sylee957 can you re-run the checks?
this can be merged if there are no objection!
Code quality tests with `flake8` are failing with: `C408 Unnecessary dict call - rewrite as a literal.` While I could easily rewrite these two tests to use literal dictionaries, the...
Let's consider this: ```py options = dict(show=False, nb_of_points_x=5, nb_of_points_y=5) p1 = plot3d(cos(x*y), (x, -3, 3), (y, -3, 3), **options) p2 = plot3d(cos(x*y), (x, -3, 3), (y, -3, 3), show=False, nb_of_points_x=5,...
@sylee957 `TypedDict` is definitely something that can be looked into, but I don't see how that would help this PR.
I'm not forcing anyone: as far as code is readable, maintainable and does the job it's supposed to, I think anyone should use the best syntax for the job. In...
> It means that get_data now returns union of many variant types (2-tuples, 3-tuples, ...), > which are not compatible override though. Choosing an appropriate name for a method that...