Skip to content

Commit 64035c2

Browse files
committed
refer to wiki instead of tag
1 parent c87f318 commit 64035c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/source/reference-io.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ going to be rough orders of magnitude to give you a sense of scale; if
556556
you need precise numbers for your environment, measure!)
557557

558558
.. file.read benchmark is
559-
https://github.com/python-trio/trio/blob/v0.27.0/notes-to-self/file-read-latency.py
559+
https://github.com/python-trio/trio/wiki/notes-to-self#file-read-latencypy
560560
.. Numbers for spinning disks and SSDs are from taking a few random
561561
recent reviews from http://www.storagereview.com/best_drives and
562562
looking at their "4K Write Latency" test results for "Average MS"

src/trio/_core/_io_windows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
#
153153
# Unfortunately, the Windows kernel seems to have bugs if you try to issue
154154
# multiple simultaneous IOCTL_AFD_POLL operations on the same socket (see
155-
# https://github.com/python-trio/trio/blob/v0.27.0/notes-to-self/afd-lab.py).
155+
# https://github.com/python-trio/trio/wiki/notes-to-self#afd-labpy).
156156
# So if a user calls wait_readable and
157157
# wait_writable at the same time, we have to combine those into a single
158158
# IOCTL_AFD_POLL. This means we can't just use the wait_overlapped machinery.

src/trio/_highlevel_open_tcp_listeners.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
# backlog just causes it to be silently truncated to the configured maximum,
4343
# so this is unnecessary -- we can just pass in "infinity" and get the maximum
4444
# that way. (Verified on Windows, Linux, macOS using
45-
# https://github.com/python-trio/trio/blob/v0.27.0/notes-to-self/measure-listen-backlog.py
45+
# https://github.com/python-trio/trio/wiki/notes-to-self#measure-listen-backlogpy
4646
def _compute_backlog(backlog: int | None) -> int:
4747
# Many systems (Linux, BSDs, ...) store the backlog in a uint16 and are
4848
# missing overflow protection, so we apply our own overflow protection.

0 commit comments

Comments
 (0)