Skip to content

Commit 9d2e3c1

Browse files
committed
Remove backticks from other code comment to avoid linter error
See https://github.com/python/cpython/actions/runs/5765303505/job/15631004596?pr=107613. This was missed and should have been included in the previous commit.
1 parent 12a42e5 commit 9d2e3c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ variants of :func:`functools.lru_cache`:
12611261
# no longer need to keep track of how many times this
12621262
# entry has been seen; in a single-threaded environment,
12631263
# the self.requests OrderedDict will always contain the value
1264-
# being removed, but use `pop(args, None)` to reduce
1264+
# being removed, but use pop(args, None) to reduce
12651265
# complications in a multi-threaded environment where
12661266
# a race condition may cause an exception
12671267
self.requests.pop(args, None)

0 commit comments

Comments
 (0)