10BC0 gh-144233: Fix typo in os.eventfd documentation (#144234) · python/cpython@9982147 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9982147

Browse files
authored
gh-144233: Fix typo in os.eventfd documentation (#144234)
1 parent 639c1ad commit 9982147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/os.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4262,7 +4262,7 @@ features:
42624262
import os
42634263

42644264
# semaphore with start value '1'
4265-
fd = os.eventfd(1, os.EFD_SEMAPHORE | os.EFC_CLOEXEC)
4265+
fd = os.eventfd(1, os.EFD_SEMAPHORE | os.EFD_CLOEXEC)
42664266
try:
42674267
# acquire semaphore
42684268
v = os.eventfd_read(fd)

0 commit comments

Comments
 (0)
0