[3.14] gh-144233: Fix typo in os.eventfd documentation (GH-144234) (#144238)

gh-144233: Fix typo in os.eventfd documentation (GH-144234)
(cherry picked from commit 99821474336187eaf657740c4eb618044d83b9c7)

Co-authored-by: Solomon Ritzow <11698787+ritzow@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2026-01-26 09:14:29 +01:00 committed by GitHub
parent 4f4c20412b
commit 2097ff3e98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3880,7 +3880,7 @@ features:
import os
# semaphore with start value '1'
fd = os.eventfd(1, os.EFD_SEMAPHORE | os.EFC_CLOEXEC)
fd = os.eventfd(1, os.EFD_SEMAPHORE | os.EFD_CLOEXEC)
try:
# acquire semaphore
v = os.eventfd_read(fd)