issues
2 rows where user = 37403847 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_at (date)
id | node_id | number | title | user | state | locked | assignee | milestone | comments | created_at | updated_at ▲ | closed_at | author_association | active_lock_reason | draft | pull_request | body | reactions | performed_via_github_app | state_reason | repo | type |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
617140674 | MDU6SXNzdWU2MTcxNDA2NzQ= | 4054 | Type checking fails for multiplication | jenssss 37403847 | closed | 0 | 6 | 2020-05-13T04:55:14Z | 2021-04-14T15:59:59Z | 2021-04-14T15:59:59Z | CONTRIBUTOR | MCVE Code SampleI save the following in a file called "foo.py" ```python import xarray as xr def mul(x: float, y: xr.Dataset): return x*y
Expected OutputThis should give
Problem DescriptionInstead I get the output
def mul(x: float, y: xr.Dataset): return y*x
But it would be nice if it also worked when the float is first, so I don't have to change a lot existing code to get typechecking to work. VersionsI tested on version 0.15.1 and on the current master Output of <tt>xr.show_versions()</tt>INSTALLED VERSIONS ------------------ commit: None python: 3.8.2 (default, May 7 2020, 20:00:49) [GCC 7.3.0] python-bits: 64 OS: Linux OS-release: 5.4.0-29-generic machine: x86_64 processor: x86_64 byteorder: little LC_ALL: None LANG: en_US.UTF-8 LOCALE: en_US.UTF-8 libhdf5: None libnetcdf: None xarray: 0.15.2.dev61+gbd84186a pandas: 1.0.3 numpy: 1.18.4 scipy: None netCDF4: None pydap: None h5netcdf: None h5py: None Nio: None zarr: None cftime: None nc_time_axis: None PseudoNetCDF: None rasterio: None cfgrib: None iris: None bottleneck: None dask: None distributed: None matplotlib: None cartopy: None seaborn: None numbagg: None pint: None setuptools: 46.2.0.post20200511 pip: 20.0.2 conda: None pytest: None IPython: None sphinx: None |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/4054/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
658938729 | MDExOlB1bGxSZXF1ZXN0NDUwODQ0NTU0 | 4233 | Linear interp with NaNs in nd indexer | jenssss 37403847 | closed | 0 | 13 | 2020-07-17T06:57:59Z | 2020-08-27T08:50:15Z | 2020-08-27T08:49:48Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/4233 |
When doing linear interpolatiion with an nd indexer that contains NaN's, |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/4233/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issues] ( [id] INTEGER PRIMARY KEY, [node_id] TEXT, [number] INTEGER, [title] TEXT, [user] INTEGER REFERENCES [users]([id]), [state] TEXT, [locked] INTEGER, [assignee] INTEGER REFERENCES [users]([id]), [milestone] INTEGER REFERENCES [milestones]([id]), [comments] INTEGER, [created_at] TEXT, [updated_at] TEXT, [closed_at] TEXT, [author_association] TEXT, [active_lock_reason] TEXT, [draft] INTEGER, [pull_request] TEXT, [body] TEXT, [reactions] TEXT, [performed_via_github_app] TEXT, [state_reason] TEXT, [repo] INTEGER REFERENCES [repos]([id]), [type] TEXT ); CREATE INDEX [idx_issues_repo] ON [issues] ([repo]); CREATE INDEX [idx_issues_milestone] ON [issues] ([milestone]); CREATE INDEX [idx_issues_assignee] ON [issues] ([assignee]); CREATE INDEX [idx_issues_user] ON [issues] ([user]);