home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

1 row where user = 335567

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date), closed_at (date), merged_at (date)

id ▼ node_id number state locked title user body created_at updated_at closed_at merged_at merge_commit_sha assignee milestone draft head base author_association auto_merge repo url merged_by
610258289 MDExOlB1bGxSZXF1ZXN0NjEwMjU4Mjg5 5122 closed 0 DOC: Autoreformat all docstrings. Carreau 335567 Surprisingly not many changes, most of them are adding leading */** to args, kwargs which is not clear according to numpydoc but seem like the thigs to do, plus it's already done in a few other places. A couple of spaces before `:`, that semantically matter. Numpydoc improperly parse the types if there is no space before the :, a documented parameter that does not exist on the function, and some casing of section names. There are a couple errors that this was not able to autofix (like missing blank line before `Returns` section leading Numpydoc to inpterprete "Returns" as a parameter of the function in xarray/core/dataset.py:roll extra parameters: {'-------', 'rolled', 'Returns'} <!-- Feel free to remove check-list items aren't relevant to your change --> - [ ] Closes #xxxx - [ ] Tests added - [ ] Passes `pre-commit run --all-files` - [ ] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [ ] New functions/methods are listed in `api.rst` 2021-04-07T01:13:50Z 2021-04-09T17:57:53Z 2021-04-07T17:25:34Z 2021-04-07T17:25:34Z afd231b75d94789dc12a2cc57b8d7ac62b3f1104     0 c3d454c80797f538d8e04d0c94c66cf7e39b3d8d 903278adaa5432c53ecdc09c03df54e0b5a27504 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/5122  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [pull_requests] (
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [number] INTEGER,
   [state] TEXT,
   [locked] INTEGER,
   [title] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [body] TEXT,
   [created_at] TEXT,
   [updated_at] TEXT,
   [closed_at] TEXT,
   [merged_at] TEXT,
   [merge_commit_sha] TEXT,
   [assignee] INTEGER REFERENCES [users]([id]),
   [milestone] INTEGER REFERENCES [milestones]([id]),
   [draft] INTEGER,
   [head] TEXT,
   [base] TEXT,
   [author_association] TEXT,
   [auto_merge] TEXT,
   [repo] INTEGER REFERENCES [repos]([id]),
   [url] TEXT,
   [merged_by] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_pull_requests_merged_by]
    ON [pull_requests] ([merged_by]);
CREATE INDEX [idx_pull_requests_repo]
    ON [pull_requests] ([repo]);
CREATE INDEX [idx_pull_requests_milestone]
    ON [pull_requests] ([milestone]);
CREATE INDEX [idx_pull_requests_assignee]
    ON [pull_requests] ([assignee]);
CREATE INDEX [idx_pull_requests_user]
    ON [pull_requests] ([user]);
Powered by Datasette · Queries took 19.778ms · About: xarray-datasette