issue_comments
19 rows where author_association = "COLLABORATOR", issue = 1377128403 and user = 43316012 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: reactions, created_at (date), updated_at (date)
issue 1
- Add typing to plot methods · 19 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
1277990906 | https://github.com/pydata/xarray/pull/7052#issuecomment-1277990906 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85MLJf6 | headtr1ck 43316012 | 2022-10-13T18:09:08Z | 2022-10-13T18:09:08Z | COLLABORATOR | I get much more overlap than you! Why is that? Windows again?
I don't necessarily agree about y-axis pointing upwards, I think that is confusing. But I let people who actually use this be the judge :) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1277915523 | https://github.com/pydata/xarray/pull/7052#issuecomment-1277915523 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85MK3GD | headtr1ck 43316012 | 2022-10-13T16:59:09Z | 2022-10-13T17:00:48Z | COLLABORATOR | For me this code works? Besides from too few distance between the subplots such that the z-labels are on top of the neighboring plot. And the y and z axis seem to be reversed, unless it is intentional that y points to the top? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1277796539 | https://github.com/pydata/xarray/pull/7052#issuecomment-1277796539 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85MKaC7 | headtr1ck 43316012 | 2022-10-13T15:27:21Z | 2022-10-13T15:27:21Z | COLLABORATOR | Ok, good question. I have to look into it. Anyway, you should use kwargs for x and y as well :) Also, we should definitely test this haha |
{ "total_count": 1, "+1": 0, "-1": 0, "laugh": 1, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1277699919 | https://github.com/pydata/xarray/pull/7052#issuecomment-1277699919 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85MKCdP | headtr1ck 43316012 | 2022-10-13T14:25:10Z | 2022-10-13T14:25:10Z | COLLABORATOR | Next time I should split such a PR into smaller ones, haha. Anyone ready for a final review? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1276768300 | https://github.com/pydata/xarray/pull/7052#issuecomment-1276768300 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85MGfAs | headtr1ck 43316012 | 2022-10-12T21:44:49Z | 2022-10-12T21:44:49Z | COLLABORATOR | That was quite a merge, haha.... @Illviljan I had to undo some of your work, it just did not work well with static typing. Hopefully you are not too sad about it. :) Is there a way to see the generated docs to check if my "hacks" worked? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1267462812 | https://github.com/pydata/xarray/pull/7052#issuecomment-1267462812 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85Li_Kc | headtr1ck 43316012 | 2022-10-04T19:08:40Z | 2022-10-04T19:08:40Z | COLLABORATOR |
Don't know if @Illviljan wants to merge his PR first or prefers to solve the merge conflicts himself :P |
{ "total_count": 1, "+1": 0, "-1": 0, "laugh": 1, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1266744003 | https://github.com/pydata/xarray/pull/7052#issuecomment-1266744003 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85LgPrD | headtr1ck 43316012 | 2022-10-04T10:33:53Z | 2022-10-04T10:33:53Z | COLLABORATOR | So finally I have decided to properly deprecate positional arguments since I think many users are still using them (even many tests where using them...) |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1266112842 | https://github.com/pydata/xarray/pull/7052#issuecomment-1266112842 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85Ld1lK | headtr1ck 43316012 | 2022-10-03T22:02:12Z | 2022-10-04T10:13:00Z | COLLABORATOR | wait.... did mypy 0.981 change the behavior of overloads with None and Hashable? I now get errors for ```python from typing import Hashable @overload def x(a: Hashable) -> Hashable: ... @overload def x(a: None = None) -> None: ... def x(a: Hashable | None = None) -> Hashable | None: return a ``` but this works with 0.971. I cannot find anything on the changelog... Interesting that does not break other things in xarray since None is always treated differently! (In theory mypy is right, since None is actually hashable...) Edit: see https://github.com/python/mypy/issues/13805, adding some type: ignore for this is the "solution" |
{ "total_count": 2, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 2 } |
Add typing to plot methods 1377128403 | |
1257271454 | https://github.com/pydata/xarray/pull/7052#issuecomment-1257271454 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85K8HCe | headtr1ck 43316012 | 2022-09-25T20:19:16Z | 2022-09-25T20:19:16Z | COLLABORATOR |
I think there are still many untyped areas, especially internal stuff. But we can give it a try and see where it collapses :) |
{ "total_count": 1, "+1": 0, "-1": 0, "laugh": 1, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1257217585 | https://github.com/pydata/xarray/pull/7052#issuecomment-1257217585 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85K754x | headtr1ck 43316012 | 2022-09-25T15:23:18Z | 2022-09-25T15:25:13Z | COLLABORATOR | Finally I am happy with the changes, the signatures are correct at runtime and static type checking time.
I was finally:
1. renaming the @Illviljan I'm sorry if you have to change your plotting PRs if this gets merged first. If you prefer, we can merge your PRs first and I will fix the conflicts here :) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1257210385 | https://github.com/pydata/xarray/pull/7052#issuecomment-1257210385 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85K74IR | headtr1ck 43316012 | 2022-09-25T14:40:34Z | 2022-09-25T14:40:34Z | COLLABORATOR | I have tried to solve it with ParamSpec and writing a custom wraps decorator, but it did not work, presumably due to https://github.com/python/mypy/issues/13540 |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1257029412 | https://github.com/pydata/xarray/pull/7052#issuecomment-1257029412 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85K7L8k | headtr1ck 43316012 | 2022-09-24T17:51:02Z | 2022-09-25T10:43:14Z | COLLABORATOR |
Just had a quick look and I think their typing of the accessor is wrong, haha. They claim to return a PlotAccessor instance when calling e.g.
I saw that, that's why I left the DataArray scatter untouched for now. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1257029973 | https://github.com/pydata/xarray/pull/7052#issuecomment-1257029973 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85K7MFV | headtr1ck 43316012 | 2022-09-24T17:53:18Z | 2022-09-24T17:54:24Z | COLLABORATOR | For now I see two options:
In principle also a combination of the two is possible :) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1256931771 | https://github.com/pydata/xarray/pull/7052#issuecomment-1256931771 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85K60G7 | headtr1ck 43316012 | 2022-09-24T10:16:10Z | 2022-09-24T10:21:05Z | COLLABORATOR | Ok found another interesting problem:
the e.g. Does anyone know how we can force it to use the module imshow instead of the overload wrapper? The only thing I can think of is to move the Accessor to its own module, which might actually not be a bad idea? |
{ "total_count": 1, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 1 } |
Add typing to plot methods 1377128403 | |
1256702326 | https://github.com/pydata/xarray/pull/7052#issuecomment-1256702326 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85K58F2 | headtr1ck 43316012 | 2022-09-23T21:39:10Z | 2022-09-23T21:39:10Z | COLLABORATOR | Wow, to fix the overloads I had to copy-paste the complete function signature for each overload and again for the accessor methods. This leads to a massive overhead which I assume the initial author wanted to prevent by using the decorators in the first place... Are there any objections to leaving it like this? We could also deviate from the approach of adding typing inline and use stub files (.pyi like in typed_ops). |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1255601287 | https://github.com/pydata/xarray/pull/7052#issuecomment-1255601287 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85K1vSH | headtr1ck 43316012 | 2022-09-22T22:03:05Z | 2022-09-22T22:03:05Z | COLLABORATOR | Finally it is a much larger PR than initially expected.
Turns out that the I am now stuck in trying to resolve the broken test.
Does anyone know how to use |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1252924768 | https://github.com/pydata/xarray/pull/7052#issuecomment-1252924768 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85Krh1g | headtr1ck 43316012 | 2022-09-20T21:19:29Z | 2022-09-20T21:19:29Z | COLLABORATOR | The 2D plotfunctions have the correct annotions at runtime ( Does anyone have an idea how to tell mypy that the type is actually the function signature of the "inside" newplotmethod function? Do we need to define a dummy method with the same signature or something? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1251884962 | https://github.com/pydata/xarray/pull/7052#issuecomment-1251884962 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85Knj-i | headtr1ck 43316012 | 2022-09-20T06:12:09Z | 2022-09-20T06:12:09Z | COLLABORATOR | I could add some return type annotations, but I doubt that mypy can work with the signature hacks and will always use args, *kwargs. Any thoughts? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 | |
1250381535 | https://github.com/pydata/xarray/pull/7052#issuecomment-1250381535 | https://api.github.com/repos/pydata/xarray/issues/7052 | IC_kwDOAMm_X85Kh07f | headtr1ck 43316012 | 2022-09-18T20:30:28Z | 2022-09-18T20:30:28Z | COLLABORATOR | Puh, this stacking of decorators is quite a brainf*ck... |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Add typing to plot methods 1377128403 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] ( [html_url] TEXT, [issue_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [updated_at] TEXT, [author_association] TEXT, [body] TEXT, [reactions] TEXT, [performed_via_github_app] TEXT, [issue] INTEGER REFERENCES [issues]([id]) ); CREATE INDEX [idx_issue_comments_issue] ON [issue_comments] ([issue]); CREATE INDEX [idx_issue_comments_user] ON [issue_comments] ([user]);
user 1