Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing docstrings #2762

Merged
merged 22 commits into from
Nov 12, 2023
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
423864e
add TODO markers for all missing docstrings
jakkdl Aug 17, 2023
6b31b77
Merge branch 'master' into missing_docstrings
TeamSpen210 Aug 21, 2023
e378d4d
Merge remote-tracking branch 'origin/master' into missing_docstrings
jakkdl Sep 26, 2023
6dd5753
re-add placeholder docstrings lost when merging
jakkdl Sep 26, 2023
5e48b18
fix weird discrepancy in verify_types_*.json
jakkdl Sep 26, 2023
148f77d
add missing functions from trio/_core_io_windows to reference-lowleve…
jakkdl Oct 9, 2023
213e6fa
Merge remote-tracking branch 'origin/master' into missing_docstrings
jakkdl Oct 9, 2023
f304740
copy docstrings for open_process and run_process, don't abandon gen_e…
jakkdl Oct 9, 2023
73e3982
print warning to stderr, undo removal of --output-format=text, print …
jakkdl Oct 9, 2023
6a2eb95
Update ruff version and regenerate again
CoolCat467 Oct 10, 2023
ef7f02b
Update ruff requirement
CoolCat467 Oct 10, 2023
c0875c3
Success should still be false for warnings
CoolCat467 Oct 10, 2023
330a51d
Have asserts show error response when not success
CoolCat467 Oct 10, 2023
956ec5c
Update `verify_types.json`
CoolCat467 Oct 10, 2023
e5195bb
Merge branch 'master' into missing_docstrings
CoolCat467 Oct 31, 2023
c26d84b
Merge branch 'master' into missing_docstrings
jakkdl Nov 2, 2023
340868a
undo changes to gen_exports
jakkdl Nov 2, 2023
fb16d10
Apply suggestions from code review
jakkdl Nov 11, 2023
34cdead
update generated files
jakkdl Nov 11, 2023
1a3cc83
Merge remote-tracking branch 'origin/master' into missing_docstrings
jakkdl Nov 11, 2023
2df6af4
Merge remote-tracking branch 'origin/master' into missing_docstrings
jakkdl Nov 11, 2023
218c13d
add summary to notify_closing
jakkdl Nov 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/source/reference-lowlevel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,12 @@ anything real. See `#26
.. function:: wait_overlapped(handle, lpOverlapped)
:async:

.. function:: write_overlapped(handle, data)
:async:

.. function:: readinto_overlapped(handle, data)
:async:

.. function:: current_iocp()

.. function:: monitor_completion_key()
Expand Down
55 changes: 55 additions & 0 deletions trio/_core/_generated_io_epoll.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 66 additions & 0 deletions trio/_core/_generated_io_kqueue.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

84 changes: 84 additions & 0 deletions trio/_core/_generated_io_windows.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading