Skip to content

fuzzies Posix -> POSIX #1347

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions howto/sockets.po
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,6 @@ msgstr ""
"faites bien, c’est presque dans la poche."

#: ../Doc/howto/sockets.rst:320
#, fuzzy
msgid ""
"In Python, you use ``socket.setblocking(0)`` to make it non-blocking. In C, "
"it's more complex, (for one thing, you'll need to choose between the BSD "
Expand All @@ -628,7 +627,7 @@ msgid ""
msgstr ""
"En Python, vous utilisez ``socket.setblocking(0)`` pour rendre non-bloquant. "
"En C, c’est plus complexe (pour commencer, vous devez choisir entre la "
"version BSD ``O_NONBLOCK`` et la version Posix presque impossible à "
"version BSD ``O_NONBLOCK`` et la version POSIX presque impossible à "
"distinguer ``O_NDELAY``, qui est complètement différente de "
"``TCP_NODELAY``), mais c’est exactement la même idée. Vous le faites après "
"avoir créé le connecteur mais avant de l’utiliser (en fait, si vous êtes "
Expand Down
2 changes: 0 additions & 2 deletions library/subprocess.po
Original file line number Diff line number Diff line change
Expand Up @@ -1354,7 +1354,6 @@ msgstr ""
"paramètre *creationflags* incluant `CREATE_NEW_PROCESS_GROUP`."

#: ../Doc/library/subprocess.rst:758
#, fuzzy
msgid ""
"Stop the child. On POSIX OSs the method sends SIGTERM to the child. On "
"Windows the Win32 API function :c:func:`TerminateProcess` is called to stop "
Expand All @@ -1365,7 +1364,6 @@ msgstr ""
"`TerminateProcess` de l'API *Win32* est appelée pour arrêter le fils."

#: ../Doc/library/subprocess.rst:765
#, fuzzy
msgid ""
"Kills the child. On POSIX OSs the function sends SIGKILL to the child. On "
"Windows :meth:`kill` is an alias for :meth:`terminate`."
Expand Down