From: Solomon Ritzow <11698787+ritzow@users.noreply.github.com> Date: Mon, 26 Jan 2026 08:07:56 +0000 (-0800) Subject: gh-144233: Fix typo in os.eventfd documentation (#144234) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99821474336187eaf657740c4eb618044d83b9c7;p=thirdparty%2FPython%2Fcpython.git gh-144233: Fix typo in os.eventfd documentation (#144234) --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 31c0964cda0f..dad54c0e82bb 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -4262,7 +4262,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)