@@ -13,7 +13,7 @@ msgid ""
1313msgstr ""
1414"Project-Id-Version : Python 3.12\n "
1515"Report-Msgid-Bugs-To : \n "
16- "POT-Creation-Date : 2023-08-11 14:13+0000\n "
16+ "POT-Creation-Date : 2023-08-25 14:13+0000\n "
1717"PO-Revision-Date : 2021-06-28 00:52+0000\n "
1818"Last-Translator : Maciej Olko <maciej.olko@gmail.com>, 2022\n "
1919"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -148,7 +148,7 @@ msgstr ""
148148
149149msgid ""
150150"The :mod:`atexit` module provides a register function that is similar to "
151- "C's :c:func:`onexit`."
151+ "C's :c:func:`! onexit`."
152152msgstr ""
153153
154154msgid "Why don't my signal handlers work?"
@@ -334,9 +334,9 @@ msgstr ""
334334
335335msgid ""
336336"Operations that replace other objects may invoke those other objects' :meth:"
337- "`__del__` method when their reference count reaches zero, and that can "
338- "affect things. This is especially true for the mass updates to dictionaries "
339- "and lists. When in doubt, use a mutex!"
337+ "`~object. __del__` method when their reference count reaches zero, and that "
338+ "can affect things. This is especially true for the mass updates to "
339+ "dictionaries and lists. When in doubt, use a mutex!"
340340msgstr ""
341341
342342msgid "Can't we get rid of the Global Interpreter Lock?"
@@ -619,19 +619,20 @@ msgstr ""
619619
620620msgid ""
621621"To prevent the TCP connect from blocking, you can set the socket to non-"
622- "blocking mode. Then when you do the :meth:`socket.connect`, you will either "
623- "connect immediately (unlikely) or get an exception that contains the error "
624- "number as ``.errno``. ``errno.EINPROGRESS`` indicates that the connection is "
625- "in progress, but hasn't finished yet. Different OSes will return different "
626- "values, so you're going to have to check what's returned on your system."
622+ "blocking mode. Then when you do the :meth:`~socket.socket.connect`, you "
623+ "will either connect immediately (unlikely) or get an exception that contains "
624+ "the error number as ``.errno``. ``errno.EINPROGRESS`` indicates that the "
625+ "connection is in progress, but hasn't finished yet. Different OSes will "
626+ "return different values, so you're going to have to check what's returned on "
627+ "your system."
627628msgstr ""
628629
629630msgid ""
630- "You can use the :meth:`socket.connect_ex` method to avoid creating an "
631- "exception. It will just return the errno value. To poll, you can call :"
632- "meth:`socket.connect_ex` again later -- ``0`` or ``errno.EISCONN`` indicate "
633- "that you're connected -- or you can pass this socket to :meth:`select. "
634- "select` to check if it's writable."
631+ "You can use the :meth:`~ socket.socket. connect_ex` method to avoid creating "
632+ "an exception. It will just return the errno value. To poll, you can call :"
633+ "meth:`~ socket.socket. connect_ex` again later -- ``0`` or ``errno.EISCONN`` "
634+ "indicate that you're connected -- or you can pass this socket to :meth:"
635+ "`select. select` to check if it's writable."
635636msgstr ""
636637
637638msgid ""
0 commit comments