https://github.com/python/cpython/commit/ef5bc9ec9b25c66181fd51f2dbbf861e79bf3be4 commit: ef5bc9ec9b25c66181fd51f2dbbf861e79bf3be4 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2026-01-26T08:16:06Z summary:
[3.13] gh-144233: Fix typo in os.eventfd documentation (GH-144234) (#144237) gh-144233: Fix typo in os.eventfd documentation (GH-144234) (cherry picked from commit 99821474336187eaf657740c4eb618044d83b9c7) Co-authored-by: Solomon Ritzow <[email protected]> files: M Doc/library/os.rst diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 3685074a495fc4..0177887110e0e6 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -3807,7 +3807,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) _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
