diff --git a/README.md b/README.md index ae87471..17c079c 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,11 @@ Untuk mengirim pembaruan spesifik "resource" (misalnya python-newest.tutorial--i tx push -t -r python-newest.tutorial--interactive ``` +Untuk sinkronisasi ulang berkas-berkas terbaru dari proyek **python-newest**: +``` +tx config mapping-remote https://www.transifex.com/python-doc/python-newest/ +``` + ### Membangun Berkas-berkas ".po" ini Menjadi Dokumentasi Python Tujuan utama dari penerjemahan berkas ".po" adalah menerjemahkan situs [Dokumentasi Python](https://docs.python.org). diff --git a/TRANSLATORS b/TRANSLATORS index 82fb85a..6515bf7 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -13,3 +13,4 @@ Ismail Sunni Iwan Setiawan Nurul Eka Fitriany Hilal oon arfiandwi +Tria Nur Aisyah Amini diff --git a/c-api/arg.po b/c-api/arg.po index 66181d8..e6a8ece 100644 --- a/c-api/arg.po +++ b/c-api/arg.po @@ -5,6 +5,7 @@ # # Translators: # oon arfiandwi , 2019 +# Tria Nur Aisyah Amini , 2019 # #, fuzzy msgid "" @@ -13,7 +14,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-10-31 11:48+0000\n" "PO-Revision-Date: 2017-02-16 17:33+0000\n" -"Last-Translator: oon arfiandwi , 2019\n" +"Last-Translator: Tria Nur Aisyah Amini , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,6 +32,9 @@ msgid "" "methods. Additional information and examples are available in :ref" ":`extending-index`." msgstr "" +"Fungsi - fungsi ini berguna ketika membuat fungsi dan method tambahan " +"sendiri. Infomasi dan contoh selanjutnya tersedia dalam :ref:`extending-" +"index`." #: ../../c-api/arg.rst:12 msgid "" @@ -40,6 +44,11 @@ msgid "" "arguments. The format strings use the same syntax for each of these " "functions." msgstr "" +"Tiga fungsi pertama dijelaskan yaitu, :c:func:`PyArg_ParseTuple`, " +":c:func:`PyArg_ParseTupleAndKeywords`, dan :c:func:`PyArg_Parse`, semuanya " +"menggunakan *format string* yang digunakan untuk memberitahu fungsi tentang " +"argumen yang diharapkan. Format string menggunakan sintaks yang sama untuk " +"setiap fungsi tersebut." #: ../../c-api/arg.rst:19 msgid "Parsing arguments" diff --git a/c-api/init.po b/c-api/init.po index a850ca0..4716d2b 100644 --- a/c-api/init.po +++ b/c-api/init.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-31 11:48+0000\n" +"POT-Creation-Date: 2019-11-16 11:56+0000\n" "PO-Revision-Date: 2017-02-16 17:36+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -922,37 +922,60 @@ msgid "" ":c:func:`PyGILState_\\*` API is unsupported." msgstr "" -#: ../../c-api/init.rst:772 +#: ../../c-api/init.rst:776 +msgid "Cautions about fork()" +msgstr "" + +#: ../../c-api/init.rst:778 msgid "" "Another important thing to note about threads is their behaviour in the face" " of the C :c:func:`fork` call. On most systems with :c:func:`fork`, after a " -"process forks only the thread that issued the fork will exist. That also " -"means any locks held by other threads will never be released. Python solves " -"this for :func:`os.fork` by acquiring the locks it uses internally before " -"the fork, and releasing them afterwards. In addition, it resets any :ref" -":`lock-objects` in the child. When extending or embedding Python, there is " -"no way to inform Python of additional (non-Python) locks that need to be " -"acquired before or reset after a fork. OS facilities such as " -":c:func:`pthread_atfork` would need to be used to accomplish the same thing." -" Additionally, when extending or embedding Python, calling :c:func:`fork` " -"directly rather than through :func:`os.fork` (and returning to or calling " -"into Python) may result in a deadlock by one of Python's internal locks " -"being held by a thread that is defunct after the fork. " -":c:func:`PyOS_AfterFork_Child` tries to reset the necessary locks, but is " -"not always able to." -msgstr "" - -#: ../../c-api/init.rst:791 +"process forks only the thread that issued the fork will exist. This has a " +"concrete impact both on how locks must be handled and on all stored state in" +" CPython's runtime." +msgstr "" + +#: ../../c-api/init.rst:784 +msgid "" +"The fact that only the \"current\" thread remains means any locks held by " +"other threads will never be released. Python solves this for :func:`os.fork`" +" by acquiring the locks it uses internally before the fork, and releasing " +"them afterwards. In addition, it resets any :ref:`lock-objects` in the " +"child. When extending or embedding Python, there is no way to inform Python " +"of additional (non-Python) locks that need to be acquired before or reset " +"after a fork. OS facilities such as :c:func:`pthread_atfork` would need to " +"be used to accomplish the same thing. Additionally, when extending or " +"embedding Python, calling :c:func:`fork` directly rather than through " +":func:`os.fork` (and returning to or calling into Python) may result in a " +"deadlock by one of Python's internal locks being held by a thread that is " +"defunct after the fork. :c:func:`PyOS_AfterFork_Child` tries to reset the " +"necessary locks, but is not always able to." +msgstr "" + +#: ../../c-api/init.rst:799 +msgid "" +"The fact that all other threads go away also means that CPython's runtime " +"state there must be cleaned up properly, which :func:`os.fork` does. This " +"means finalizing all other :c:type:`PyThreadState` objects belonging to the " +"current interpreter and all other :c:type:`PyInterpreterState` objects. Due" +" to this and the special nature of the :ref:`\"main\" interpreter `, :c:func:`fork` should only be called in that " +"interpreter's \"main\" thread, where the CPython global runtime was " +"originally initialized. The only exception is if :c:func:`exec` will be " +"called immediately after." +msgstr "" + +#: ../../c-api/init.rst:812 msgid "High-level API" msgstr "" -#: ../../c-api/init.rst:793 +#: ../../c-api/init.rst:814 msgid "" "These are the most commonly used types and functions when writing C " "extension code, or when embedding the Python interpreter:" msgstr "" -#: ../../c-api/init.rst:798 +#: ../../c-api/init.rst:819 msgid "" "This data structure represents the state shared by a number of cooperating " "threads. Threads belonging to the same interpreter share their module " @@ -960,7 +983,7 @@ msgid "" "in this structure." msgstr "" -#: ../../c-api/init.rst:803 +#: ../../c-api/init.rst:824 msgid "" "Threads belonging to different interpreters initially share nothing, except " "process state like available memory, open file descriptors and such. The " @@ -968,14 +991,14 @@ msgid "" "which interpreter they belong." msgstr "" -#: ../../c-api/init.rst:811 +#: ../../c-api/init.rst:832 msgid "" "This data structure represents the state of a single thread. The only " "public data member is :c:type:`PyInterpreterState \\*`:attr:`interp`, which " "points to this thread's interpreter state." msgstr "" -#: ../../c-api/init.rst:824 +#: ../../c-api/init.rst:845 msgid "" "Initialize and acquire the global interpreter lock. It should be called in " "the main thread before creating a second thread or engaging in any other " @@ -984,33 +1007,33 @@ msgid "" ":c:func:`PyEval_RestoreThread`." msgstr "" -#: ../../c-api/init.rst:829 +#: ../../c-api/init.rst:850 msgid "This is a no-op when called for a second time." msgstr "" -#: ../../c-api/init.rst:831 +#: ../../c-api/init.rst:852 msgid "" "This function is now called by :c:func:`Py_Initialize()`, so you don't have " "to call it yourself anymore." msgstr "" -#: ../../c-api/init.rst:835 +#: ../../c-api/init.rst:856 msgid "" "This function cannot be called before :c:func:`Py_Initialize()` anymore." msgstr "" -#: ../../c-api/init.rst:843 +#: ../../c-api/init.rst:864 msgid "" "Returns a non-zero value if :c:func:`PyEval_InitThreads` has been called. " "This function can be called without holding the GIL, and therefore can be " "used to avoid calls to the locking API when running single-threaded." msgstr "" -#: ../../c-api/init.rst:847 +#: ../../c-api/init.rst:868 msgid "The :term:`GIL` is now initialized by :c:func:`Py_Initialize()`." msgstr "" -#: ../../c-api/init.rst:853 +#: ../../c-api/init.rst:874 msgid "" "Release the global interpreter lock (if it has been created) and reset the " "thread state to ``NULL``, returning the previous thread state (which is not " @@ -1018,7 +1041,7 @@ msgid "" "acquired it." msgstr "" -#: ../../c-api/init.rst:861 +#: ../../c-api/init.rst:882 msgid "" "Acquire the global interpreter lock (if it has been created) and set the " "thread state to *tstate*, which must not be ``NULL``. If the lock has been " @@ -1026,8 +1049,8 @@ msgid "" "ensues." msgstr "" -#: ../../c-api/init.rst:867 ../../c-api/init.rst:913 ../../c-api/init.rst:1088 -#: ../../c-api/init.rst:1126 +#: ../../c-api/init.rst:888 ../../c-api/init.rst:934 ../../c-api/init.rst:1109 +#: ../../c-api/init.rst:1147 msgid "" "Calling this function from a thread when the runtime is finalizing will " "terminate the thread, even if the thread was not created by Python. You can " @@ -1036,27 +1059,27 @@ msgid "" " avoid unwanted termination." msgstr "" -#: ../../c-api/init.rst:875 +#: ../../c-api/init.rst:896 msgid "" "Return the current thread state. The global interpreter lock must be held. " "When the current thread state is ``NULL``, this issues a fatal error (so " "that the caller needn't check for ``NULL``)." msgstr "" -#: ../../c-api/init.rst:882 +#: ../../c-api/init.rst:903 msgid "" "Swap the current thread state with the thread state given by the argument " "*tstate*, which may be ``NULL``. The global interpreter lock must be held " "and is not released." msgstr "" -#: ../../c-api/init.rst:887 +#: ../../c-api/init.rst:908 msgid "" "The following functions use thread-local storage, and are not compatible " "with sub-interpreters:" msgstr "" -#: ../../c-api/init.rst:892 +#: ../../c-api/init.rst:913 msgid "" "Ensure that the current thread is ready to call the Python C API regardless " "of the current state of Python, or of the global interpreter lock. This may " @@ -1069,7 +1092,7 @@ msgid "" "macros is acceptable." msgstr "" -#: ../../c-api/init.rst:902 +#: ../../c-api/init.rst:923 msgid "" "The return value is an opaque \"handle\" to the thread state when " ":c:func:`PyGILState_Ensure` was called, and must be passed to " @@ -1079,13 +1102,13 @@ msgid "" " call to :c:func:`PyGILState_Release`." msgstr "" -#: ../../c-api/init.rst:909 +#: ../../c-api/init.rst:930 msgid "" "When the function returns, the current thread will hold the GIL and be able " "to call arbitrary Python code. Failure is a fatal error." msgstr "" -#: ../../c-api/init.rst:921 +#: ../../c-api/init.rst:942 msgid "" "Release any resources previously acquired. After this call, Python's state " "will be the same as it was prior to the corresponding " @@ -1093,13 +1116,13 @@ msgid "" "to the caller, hence the use of the GILState API)." msgstr "" -#: ../../c-api/init.rst:926 +#: ../../c-api/init.rst:947 msgid "" "Every call to :c:func:`PyGILState_Ensure` must be matched by a call to " ":c:func:`PyGILState_Release` on the same thread." msgstr "" -#: ../../c-api/init.rst:932 +#: ../../c-api/init.rst:953 msgid "" "Get the current thread state for this thread. May return ``NULL`` if no " "GILState API has been used on the current thread. Note that the main thread" @@ -1107,7 +1130,7 @@ msgid "" "made on the main thread. This is mainly a helper/diagnostic function." msgstr "" -#: ../../c-api/init.rst:940 +#: ../../c-api/init.rst:961 msgid "" "Return ``1`` if the current thread is holding the GIL and ``0`` otherwise. " "This function can be called from any thread at any time. Only if it has had " @@ -1118,13 +1141,13 @@ msgid "" "actions or otherwise behave differently." msgstr "" -#: ../../c-api/init.rst:952 +#: ../../c-api/init.rst:973 msgid "" "The following macros are normally used without a trailing semicolon; look " "for example usage in the Python source distribution." msgstr "" -#: ../../c-api/init.rst:958 +#: ../../c-api/init.rst:979 msgid "" "This macro expands to ``{ PyThreadState *_save; _save = " "PyEval_SaveThread();``. Note that it contains an opening brace; it must be " @@ -1132,7 +1155,7 @@ msgid "" "for further discussion of this macro." msgstr "" -#: ../../c-api/init.rst:966 +#: ../../c-api/init.rst:987 msgid "" "This macro expands to ``PyEval_RestoreThread(_save); }``. Note that it " "contains a closing brace; it must be matched with an earlier " @@ -1140,104 +1163,104 @@ msgid "" "of this macro." msgstr "" -#: ../../c-api/init.rst:974 +#: ../../c-api/init.rst:995 msgid "" "This macro expands to ``PyEval_RestoreThread(_save);``: it is equivalent to " ":c:macro:`Py_END_ALLOW_THREADS` without the closing brace." msgstr "" -#: ../../c-api/init.rst:980 +#: ../../c-api/init.rst:1001 msgid "" "This macro expands to ``_save = PyEval_SaveThread();``: it is equivalent to " ":c:macro:`Py_BEGIN_ALLOW_THREADS` without the opening brace and variable " "declaration." msgstr "" -#: ../../c-api/init.rst:986 +#: ../../c-api/init.rst:1007 msgid "Low-level API" msgstr "" -#: ../../c-api/init.rst:988 +#: ../../c-api/init.rst:1009 msgid "" "All of the following functions must be called after :c:func:`Py_Initialize`." msgstr "" -#: ../../c-api/init.rst:990 +#: ../../c-api/init.rst:1011 msgid ":c:func:`Py_Initialize()` now initializes the :term:`GIL`." msgstr "" -#: ../../c-api/init.rst:996 +#: ../../c-api/init.rst:1017 msgid "" "Create a new interpreter state object. The global interpreter lock need not" " be held, but may be held if it is necessary to serialize calls to this " "function." msgstr "" -#: ../../c-api/init.rst:1000 +#: ../../c-api/init.rst:1021 msgid "" "Raises an :ref:`auditing event ` " "``cpython.PyInterpreterState_New`` with no arguments." msgstr "" -#: ../../c-api/init.rst:1005 +#: ../../c-api/init.rst:1026 msgid "" "Reset all information in an interpreter state object. The global " "interpreter lock must be held." msgstr "" -#: ../../c-api/init.rst:1008 +#: ../../c-api/init.rst:1029 msgid "" "Raises an :ref:`auditing event ` " "``cpython.PyInterpreterState_Clear`` with no arguments." msgstr "" -#: ../../c-api/init.rst:1013 +#: ../../c-api/init.rst:1034 msgid "" "Destroy an interpreter state object. The global interpreter lock need not " "be held. The interpreter state must have been reset with a previous call to" " :c:func:`PyInterpreterState_Clear`." msgstr "" -#: ../../c-api/init.rst:1020 +#: ../../c-api/init.rst:1041 msgid "" "Create a new thread state object belonging to the given interpreter object. " "The global interpreter lock need not be held, but may be held if it is " "necessary to serialize calls to this function." msgstr "" -#: ../../c-api/init.rst:1027 +#: ../../c-api/init.rst:1048 msgid "" "Reset all information in a thread state object. The global interpreter lock" " must be held." msgstr "" -#: ../../c-api/init.rst:1033 +#: ../../c-api/init.rst:1054 msgid "" "Destroy a thread state object. The global interpreter lock need not be " "held. The thread state must have been reset with a previous call to " ":c:func:`PyThreadState_Clear`." msgstr "" -#: ../../c-api/init.rst:1040 +#: ../../c-api/init.rst:1061 msgid "" "Return the interpreter's unique ID. If there was any error in doing so then" " ``-1`` is returned and an error is set." msgstr "" -#: ../../c-api/init.rst:1048 +#: ../../c-api/init.rst:1069 msgid "" "Return a dictionary in which interpreter-specific data may be stored. If " "this function returns ``NULL`` then no exception has been raised and the " "caller should assume no interpreter-specific dict is available." msgstr "" -#: ../../c-api/init.rst:1052 +#: ../../c-api/init.rst:1073 msgid "" "This is not a replacement for :c:func:`PyModule_GetState()`, which " "extensions should use to store interpreter-specific state information." msgstr "" -#: ../../c-api/init.rst:1060 +#: ../../c-api/init.rst:1081 msgid "" "Return a dictionary in which extensions can store thread-specific state " "information. Each extension should use a unique key to use to store state " @@ -1246,7 +1269,7 @@ msgid "" " raised and the caller should assume no current thread state is available." msgstr "" -#: ../../c-api/init.rst:1069 +#: ../../c-api/init.rst:1090 msgid "" "Asynchronously raise an exception in a thread. The *id* argument is the " "thread id of the target thread; *exc* is the exception object to be raised. " @@ -1258,33 +1281,33 @@ msgid "" "This raises no exceptions." msgstr "" -#: ../../c-api/init.rst:1077 +#: ../../c-api/init.rst:1098 msgid "" "The type of the *id* parameter changed from :c:type:`long` to " ":c:type:`unsigned long`." msgstr "" -#: ../../c-api/init.rst:1083 +#: ../../c-api/init.rst:1104 msgid "" "Acquire the global interpreter lock and set the current thread state to " "*tstate*, which should not be ``NULL``. The lock must have been created " "earlier. If this thread already has the lock, deadlock ensues." msgstr "" -#: ../../c-api/init.rst:1094 ../../c-api/init.rst:1132 +#: ../../c-api/init.rst:1115 ../../c-api/init.rst:1153 msgid "" "Updated to be consistent with :c:func:`PyEval_RestoreThread`, " ":c:func:`Py_END_ALLOW_THREADS`, and :c:func:`PyGILState_Ensure`, and " "terminate the current thread if called while the interpreter is finalizing." msgstr "" -#: ../../c-api/init.rst:1099 +#: ../../c-api/init.rst:1120 msgid "" ":c:func:`PyEval_RestoreThread` is a higher-level function which is always " "available (even when threads have not been initialized)." msgstr "" -#: ../../c-api/init.rst:1105 +#: ../../c-api/init.rst:1126 msgid "" "Reset the current thread state to ``NULL`` and release the global " "interpreter lock. The lock must have been created earlier and must be held " @@ -1293,41 +1316,41 @@ msgid "" "isn't, a fatal error is reported." msgstr "" -#: ../../c-api/init.rst:1111 +#: ../../c-api/init.rst:1132 msgid "" ":c:func:`PyEval_SaveThread` is a higher-level function which is always " "available (even when threads have not been initialized)." msgstr "" -#: ../../c-api/init.rst:1117 +#: ../../c-api/init.rst:1138 msgid "" "Acquire the global interpreter lock. The lock must have been created " "earlier. If this thread already has the lock, a deadlock ensues." msgstr "" -#: ../../c-api/init.rst:1120 +#: ../../c-api/init.rst:1141 msgid "" "This function does not update the current thread state. Please use " ":c:func:`PyEval_RestoreThread` or :c:func:`PyEval_AcquireThread` instead." msgstr "" -#: ../../c-api/init.rst:1140 +#: ../../c-api/init.rst:1161 msgid "" "Release the global interpreter lock. The lock must have been created " "earlier." msgstr "" -#: ../../c-api/init.rst:1142 +#: ../../c-api/init.rst:1163 msgid "" "This function does not update the current thread state. Please use " ":c:func:`PyEval_SaveThread` or :c:func:`PyEval_ReleaseThread` instead." msgstr "" -#: ../../c-api/init.rst:1151 +#: ../../c-api/init.rst:1172 msgid "Sub-interpreter support" msgstr "" -#: ../../c-api/init.rst:1153 +#: ../../c-api/init.rst:1174 msgid "" "While in most uses, you will only embed a single Python interpreter, there " "are cases where you need to create several independent interpreters in the " @@ -1335,7 +1358,7 @@ msgid "" " to do that." msgstr "" -#: ../../c-api/init.rst:1158 +#: ../../c-api/init.rst:1179 msgid "" "The \"main\" interpreter is the first one created when the runtime " "initializes. It is usually the only Python interpreter in a process. Unlike" @@ -1346,14 +1369,14 @@ msgid "" " a pointer to its state." msgstr "" -#: ../../c-api/init.rst:1165 +#: ../../c-api/init.rst:1186 msgid "" "You can switch between sub-interpreters using the " ":c:func:`PyThreadState_Swap` function. You can create and destroy them using" " the following functions:" msgstr "" -#: ../../c-api/init.rst:1179 +#: ../../c-api/init.rst:1200 msgid "" "Create a new sub-interpreter. This is an (almost) totally separate " "environment for the execution of Python code. In particular, the new " @@ -1366,7 +1389,7 @@ msgid "" " same underlying file descriptors)." msgstr "" -#: ../../c-api/init.rst:1189 +#: ../../c-api/init.rst:1210 msgid "" "The return value points to the first thread state created in the new sub-" "interpreter. This thread state is made in the current thread state. Note " @@ -1380,7 +1403,7 @@ msgid "" "on entry.)" msgstr "" -#: ../../c-api/init.rst:1204 +#: ../../c-api/init.rst:1225 msgid "" "Extension modules are shared between (sub-)interpreters as follows: the " "first time a particular extension is imported, it is initialized normally, " @@ -1394,7 +1417,7 @@ msgid "" "function *is* called again." msgstr "" -#: ../../c-api/init.rst:1221 +#: ../../c-api/init.rst:1242 msgid "" "Destroy the (sub-)interpreter represented by the given thread state. The " "given thread state must be the current thread state. See the discussion of " @@ -1405,11 +1428,11 @@ msgid "" "sub-interpreters that haven't been explicitly destroyed at that point." msgstr "" -#: ../../c-api/init.rst:1231 +#: ../../c-api/init.rst:1252 msgid "Bugs and caveats" msgstr "" -#: ../../c-api/init.rst:1233 +#: ../../c-api/init.rst:1254 msgid "" "Because sub-interpreters (and the main interpreter) are part of the same " "process, the insulation between them isn't perfect --- for example, using " @@ -1426,7 +1449,7 @@ msgid "" " of loaded modules." msgstr "" -#: ../../c-api/init.rst:1247 +#: ../../c-api/init.rst:1268 msgid "" "Also note that combining this functionality with :c:func:`PyGILState_\\*` " "APIs is delicate, because these APIs assume a bijection between Python " @@ -1438,25 +1461,25 @@ msgid "" "Python created threads will probably be broken when using sub-interpreters." msgstr "" -#: ../../c-api/init.rst:1258 +#: ../../c-api/init.rst:1279 msgid "Asynchronous Notifications" msgstr "" -#: ../../c-api/init.rst:1260 +#: ../../c-api/init.rst:1281 msgid "" "A mechanism is provided to make asynchronous notifications to the main " "interpreter thread. These notifications take the form of a function pointer" " and a void pointer argument." msgstr "" -#: ../../c-api/init.rst:1269 +#: ../../c-api/init.rst:1290 msgid "" "Schedule a function to be called from the main interpreter thread. On " "success, ``0`` is returned and *func* is queued for being called in the main" " thread. On failure, ``-1`` is returned without setting any exception." msgstr "" -#: ../../c-api/init.rst:1273 +#: ../../c-api/init.rst:1294 msgid "" "When successfully queued, *func* will be *eventually* called from the main " "interpreter thread with the argument *arg*. It will be called " @@ -1464,17 +1487,17 @@ msgid "" "these conditions met:" msgstr "" -#: ../../c-api/init.rst:1278 +#: ../../c-api/init.rst:1299 msgid "on a :term:`bytecode` boundary;" msgstr "" -#: ../../c-api/init.rst:1279 +#: ../../c-api/init.rst:1300 msgid "" "with the main thread holding the :term:`global interpreter lock` (*func* can" " therefore use the full C API)." msgstr "" -#: ../../c-api/init.rst:1282 +#: ../../c-api/init.rst:1303 msgid "" "*func* must return ``0`` on success, or ``-1`` on failure with an exception " "set. *func* won't be interrupted to perform another asynchronous " @@ -1482,13 +1505,13 @@ msgid "" "if the global interpreter lock is released." msgstr "" -#: ../../c-api/init.rst:1287 +#: ../../c-api/init.rst:1308 msgid "" "This function doesn't need a current thread state to run, and it doesn't " "need the global interpreter lock." msgstr "" -#: ../../c-api/init.rst:1291 +#: ../../c-api/init.rst:1312 msgid "" "This is a low-level function, only useful for very special cases. There is " "no guarantee that *func* will be called as quick as possible. If the main " @@ -1498,18 +1521,18 @@ msgid "" ":ref:`PyGILState API`." msgstr "" -#: ../../c-api/init.rst:1303 +#: ../../c-api/init.rst:1324 msgid "Profiling and Tracing" msgstr "" -#: ../../c-api/init.rst:1308 +#: ../../c-api/init.rst:1329 msgid "" "The Python interpreter provides some low-level support for attaching " "profiling and execution tracing facilities. These are used for profiling, " "debugging, and coverage analysis tools." msgstr "" -#: ../../c-api/init.rst:1312 +#: ../../c-api/init.rst:1333 msgid "" "This C interface allows the profiling or tracing code to avoid the overhead " "of calling through Python-level callable objects, making a direct C function" @@ -1519,7 +1542,7 @@ msgid "" "reported to the Python-level trace functions in previous versions." msgstr "" -#: ../../c-api/init.rst:1322 +#: ../../c-api/init.rst:1343 msgid "" "The type of the trace function registered using :c:func:`PyEval_SetProfile` " "and :c:func:`PyEval_SetTrace`. The first parameter is the object passed to " @@ -1531,66 +1554,66 @@ msgid "" "the value of *what*:" msgstr "" -#: ../../c-api/init.rst:1331 +#: ../../c-api/init.rst:1352 msgid "Value of *what*" msgstr "" -#: ../../c-api/init.rst:1331 +#: ../../c-api/init.rst:1352 msgid "Meaning of *arg*" msgstr "" -#: ../../c-api/init.rst:1333 +#: ../../c-api/init.rst:1354 msgid ":const:`PyTrace_CALL`" msgstr "" -#: ../../c-api/init.rst:1333 ../../c-api/init.rst:1338 -#: ../../c-api/init.rst:1349 +#: ../../c-api/init.rst:1354 ../../c-api/init.rst:1359 +#: ../../c-api/init.rst:1370 msgid "Always :c:data:`Py_None`." msgstr "" -#: ../../c-api/init.rst:1335 +#: ../../c-api/init.rst:1356 msgid ":const:`PyTrace_EXCEPTION`" msgstr "" -#: ../../c-api/init.rst:1335 +#: ../../c-api/init.rst:1356 msgid "Exception information as returned by :func:`sys.exc_info`." msgstr "" -#: ../../c-api/init.rst:1338 +#: ../../c-api/init.rst:1359 msgid ":const:`PyTrace_LINE`" msgstr "" -#: ../../c-api/init.rst:1340 +#: ../../c-api/init.rst:1361 msgid ":const:`PyTrace_RETURN`" msgstr "" -#: ../../c-api/init.rst:1340 +#: ../../c-api/init.rst:1361 msgid "" "Value being returned to the caller, or ``NULL`` if caused by an exception." msgstr "" -#: ../../c-api/init.rst:1343 +#: ../../c-api/init.rst:1364 msgid ":const:`PyTrace_C_CALL`" msgstr "" -#: ../../c-api/init.rst:1343 ../../c-api/init.rst:1345 -#: ../../c-api/init.rst:1347 +#: ../../c-api/init.rst:1364 ../../c-api/init.rst:1366 +#: ../../c-api/init.rst:1368 msgid "Function object being called." msgstr "" -#: ../../c-api/init.rst:1345 +#: ../../c-api/init.rst:1366 msgid ":const:`PyTrace_C_EXCEPTION`" msgstr "" -#: ../../c-api/init.rst:1347 +#: ../../c-api/init.rst:1368 msgid ":const:`PyTrace_C_RETURN`" msgstr "" -#: ../../c-api/init.rst:1349 +#: ../../c-api/init.rst:1370 msgid ":const:`PyTrace_OPCODE`" msgstr "" -#: ../../c-api/init.rst:1354 +#: ../../c-api/init.rst:1375 msgid "" "The value of the *what* parameter to a :c:type:`Py_tracefunc` function when " "a new call to a function or method is being reported, or a new entry into a " @@ -1599,7 +1622,7 @@ msgid "" "the corresponding frame." msgstr "" -#: ../../c-api/init.rst:1363 +#: ../../c-api/init.rst:1384 msgid "" "The value of the *what* parameter to a :c:type:`Py_tracefunc` function when " "an exception has been raised. The callback function is called with this " @@ -1611,7 +1634,7 @@ msgid "" "profiler." msgstr "" -#: ../../c-api/init.rst:1374 +#: ../../c-api/init.rst:1395 msgid "" "The value passed as the *what* parameter to a :c:type:`Py_tracefunc` " "function (but not a profiling function) when a line-number event is being " @@ -1619,31 +1642,31 @@ msgid "" " *0* on that frame." msgstr "" -#: ../../c-api/init.rst:1381 +#: ../../c-api/init.rst:1402 msgid "" "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " "a call is about to return." msgstr "" -#: ../../c-api/init.rst:1387 +#: ../../c-api/init.rst:1408 msgid "" "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " "a C function is about to be called." msgstr "" -#: ../../c-api/init.rst:1393 +#: ../../c-api/init.rst:1414 msgid "" "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " "a C function has raised an exception." msgstr "" -#: ../../c-api/init.rst:1399 +#: ../../c-api/init.rst:1420 msgid "" "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " "a C function has returned." msgstr "" -#: ../../c-api/init.rst:1405 +#: ../../c-api/init.rst:1426 msgid "" "The value for the *what* parameter to :c:type:`Py_tracefunc` functions (but " "not profiling functions) when a new opcode is about to be executed. This " @@ -1651,7 +1674,7 @@ msgid "" ":attr:`f_trace_opcodes` to *1* on the frame." msgstr "" -#: ../../c-api/init.rst:1413 +#: ../../c-api/init.rst:1434 msgid "" "Set the profiler function to *func*. The *obj* parameter is passed to the " "function as its first parameter, and may be any Python object, or ``NULL``." @@ -1662,7 +1685,7 @@ msgid "" ":const:`PyTrace_EXCEPTION`." msgstr "" -#: ../../c-api/init.rst:1423 +#: ../../c-api/init.rst:1444 msgid "" "Set the tracing function to *func*. This is similar to " ":c:func:`PyEval_SetProfile`, except the tracing function does receive line-" @@ -1673,48 +1696,48 @@ msgid "" " *what* parameter." msgstr "" -#: ../../c-api/init.rst:1433 +#: ../../c-api/init.rst:1454 msgid "Advanced Debugger Support" msgstr "" -#: ../../c-api/init.rst:1438 +#: ../../c-api/init.rst:1459 msgid "" "These functions are only intended to be used by advanced debugging tools." msgstr "" -#: ../../c-api/init.rst:1443 +#: ../../c-api/init.rst:1464 msgid "" "Return the interpreter state object at the head of the list of all such " "objects." msgstr "" -#: ../../c-api/init.rst:1448 +#: ../../c-api/init.rst:1469 msgid "Return the main interpreter state object." msgstr "" -#: ../../c-api/init.rst:1453 +#: ../../c-api/init.rst:1474 msgid "" "Return the next interpreter state object after *interp* from the list of all" " such objects." msgstr "" -#: ../../c-api/init.rst:1459 +#: ../../c-api/init.rst:1480 msgid "" "Return the pointer to the first :c:type:`PyThreadState` object in the list " "of threads associated with the interpreter *interp*." msgstr "" -#: ../../c-api/init.rst:1465 +#: ../../c-api/init.rst:1486 msgid "" "Return the next thread state object after *tstate* from the list of all such" " objects belonging to the same :c:type:`PyInterpreterState` object." msgstr "" -#: ../../c-api/init.rst:1472 +#: ../../c-api/init.rst:1493 msgid "Thread Local Storage Support" msgstr "" -#: ../../c-api/init.rst:1476 +#: ../../c-api/init.rst:1497 msgid "" "The Python interpreter provides low-level support for thread-local storage " "(TLS) which wraps the underlying native TLS implementation to support the " @@ -1724,19 +1747,19 @@ msgid "" "thread." msgstr "" -#: ../../c-api/init.rst:1483 +#: ../../c-api/init.rst:1504 msgid "" "The GIL does *not* need to be held when calling these functions; they supply" " their own locking." msgstr "" -#: ../../c-api/init.rst:1486 +#: ../../c-api/init.rst:1507 msgid "" "Note that :file:`Python.h` does not include the declaration of the TLS APIs," " you need to include :file:`pythread.h` to use thread-local storage." msgstr "" -#: ../../c-api/init.rst:1490 +#: ../../c-api/init.rst:1511 msgid "" "None of these API functions handle memory management on behalf of the " ":c:type:`void\\*` values. You need to allocate and deallocate them " @@ -1745,22 +1768,22 @@ msgid "" "either." msgstr "" -#: ../../c-api/init.rst:1498 +#: ../../c-api/init.rst:1519 msgid "Thread Specific Storage (TSS) API" msgstr "" -#: ../../c-api/init.rst:1500 +#: ../../c-api/init.rst:1521 msgid "" "TSS API is introduced to supersede the use of the existing TLS API within " "the CPython interpreter. This API uses a new type :c:type:`Py_tss_t` " "instead of :c:type:`int` to represent thread keys." msgstr "" -#: ../../c-api/init.rst:1506 +#: ../../c-api/init.rst:1527 msgid "\"A New C-API for Thread-Local Storage in CPython\" (:pep:`539`)" msgstr "" -#: ../../c-api/init.rst:1511 +#: ../../c-api/init.rst:1532 msgid "" "This data structure represents the state of a thread key, the definition of " "which may depend on the underlying TLS implementation, and it has an " @@ -1768,53 +1791,53 @@ msgid "" "public members in this structure." msgstr "" -#: ../../c-api/init.rst:1516 +#: ../../c-api/init.rst:1537 msgid "" "When :ref:`Py_LIMITED_API ` is not defined, static allocation of " "this type by :c:macro:`Py_tss_NEEDS_INIT` is allowed." msgstr "" -#: ../../c-api/init.rst:1522 +#: ../../c-api/init.rst:1543 msgid "" "This macro expands to the initializer for :c:type:`Py_tss_t` variables. Note" " that this macro won't be defined with :ref:`Py_LIMITED_API `." msgstr "" -#: ../../c-api/init.rst:1527 +#: ../../c-api/init.rst:1548 msgid "Dynamic Allocation" msgstr "" -#: ../../c-api/init.rst:1529 +#: ../../c-api/init.rst:1550 msgid "" "Dynamic allocation of the :c:type:`Py_tss_t`, required in extension modules " "built with :ref:`Py_LIMITED_API `, where static allocation of this " "type is not possible due to its implementation being opaque at build time." msgstr "" -#: ../../c-api/init.rst:1536 +#: ../../c-api/init.rst:1557 msgid "" "Return a value which is the same state as a value initialized with " ":c:macro:`Py_tss_NEEDS_INIT`, or ``NULL`` in the case of dynamic allocation " "failure." msgstr "" -#: ../../c-api/init.rst:1543 +#: ../../c-api/init.rst:1564 msgid "" "Free the given *key* allocated by :c:func:`PyThread_tss_alloc`, after first " "calling :c:func:`PyThread_tss_delete` to ensure any associated thread locals" " have been unassigned. This is a no-op if the *key* argument is `NULL`." msgstr "" -#: ../../c-api/init.rst:1549 +#: ../../c-api/init.rst:1570 msgid "" "A freed key becomes a dangling pointer, you should reset the key to `NULL`." msgstr "" -#: ../../c-api/init.rst:1554 +#: ../../c-api/init.rst:1575 msgid "Methods" msgstr "Metode-Metode" -#: ../../c-api/init.rst:1556 +#: ../../c-api/init.rst:1577 msgid "" "The parameter *key* of these functions must not be ``NULL``. Moreover, the " "behaviors of :c:func:`PyThread_tss_set` and :c:func:`PyThread_tss_get` are " @@ -1822,13 +1845,13 @@ msgid "" ":c:func:`PyThread_tss_create`." msgstr "" -#: ../../c-api/init.rst:1564 +#: ../../c-api/init.rst:1585 msgid "" "Return a non-zero value if the given :c:type:`Py_tss_t` has been initialized" " by :c:func:`PyThread_tss_create`." msgstr "" -#: ../../c-api/init.rst:1570 +#: ../../c-api/init.rst:1591 msgid "" "Return a zero value on successful initialization of a TSS key. The behavior" " is undefined if the value pointed to by the *key* argument is not " @@ -1837,7 +1860,7 @@ msgid "" "no-op and immediately returns success." msgstr "" -#: ../../c-api/init.rst:1579 +#: ../../c-api/init.rst:1600 msgid "" "Destroy a TSS key to forget the values associated with the key across all " "threads, and change the key's initialization state to uninitialized. A " @@ -1846,31 +1869,31 @@ msgid "" " same key -- calling it on an already destroyed key is a no-op." msgstr "" -#: ../../c-api/init.rst:1588 +#: ../../c-api/init.rst:1609 msgid "" "Return a zero value to indicate successfully associating a :c:type:`void\\*`" " value with a TSS key in the current thread. Each thread has a distinct " "mapping of the key to a :c:type:`void\\*` value." msgstr "" -#: ../../c-api/init.rst:1595 +#: ../../c-api/init.rst:1616 msgid "" "Return the :c:type:`void\\*` value associated with a TSS key in the current " "thread. This returns ``NULL`` if no value is associated with the key in the" " current thread." msgstr "" -#: ../../c-api/init.rst:1603 +#: ../../c-api/init.rst:1624 msgid "Thread Local Storage (TLS) API" msgstr "" -#: ../../c-api/init.rst:1605 +#: ../../c-api/init.rst:1626 msgid "" "This API is superseded by :ref:`Thread Specific Storage (TSS) API `." msgstr "" -#: ../../c-api/init.rst:1610 +#: ../../c-api/init.rst:1631 msgid "" "This version of the API does not support platforms where the native TLS key " "is defined in a way that cannot be safely cast to ``int``. On such " @@ -1879,7 +1902,7 @@ msgid "" "platforms." msgstr "" -#: ../../c-api/init.rst:1615 +#: ../../c-api/init.rst:1636 msgid "" "Due to the compatibility problem noted above, this version of the API should" " not be used in new code." diff --git a/c-api/mapping.po b/c-api/mapping.po index e2a0053..50fff81 100644 --- a/c-api/mapping.po +++ b/c-api/mapping.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-31 11:48+0000\n" +"POT-Creation-Date: 2019-11-21 11:59+0000\n" "PO-Revision-Date: 2017-02-16 17:37+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -32,81 +32,81 @@ msgid "" "Return ``1`` if the object provides mapping protocol or supports slicing, " "and ``0`` otherwise. Note that it returns ``1`` for Python classes with a " ":meth:`__getitem__` method since in general case it is impossible to " -"determine what the type of keys it supports. This function always succeeds." +"determine what type of keys it supports. This function always succeeds." msgstr "" -#: ../../c-api/mapping.rst:26 +#: ../../c-api/mapping.rst:25 msgid "" "Returns the number of keys in object *o* on success, and ``-1`` on failure. " "This is equivalent to the Python expression ``len(o)``." msgstr "" -#: ../../c-api/mapping.rst:32 +#: ../../c-api/mapping.rst:31 msgid "" "Return element of *o* corresponding to the string *key* or ``NULL`` on " "failure. This is the equivalent of the Python expression ``o[key]``. See " "also :c:func:`PyObject_GetItem`." msgstr "" -#: ../../c-api/mapping.rst:39 +#: ../../c-api/mapping.rst:38 msgid "" "Map the string *key* to the value *v* in object *o*. Returns ``-1`` on " "failure. This is the equivalent of the Python statement ``o[key] = v``. See" " also :c:func:`PyObject_SetItem`." msgstr "" -#: ../../c-api/mapping.rst:46 +#: ../../c-api/mapping.rst:45 msgid "" "Remove the mapping for the object *key* from the object *o*. Return ``-1`` " "on failure. This is equivalent to the Python statement ``del o[key]``. This" " is an alias of :c:func:`PyObject_DelItem`." msgstr "" -#: ../../c-api/mapping.rst:53 +#: ../../c-api/mapping.rst:52 msgid "" "Remove the mapping for the string *key* from the object *o*. Return ``-1`` " "on failure. This is equivalent to the Python statement ``del o[key]``." msgstr "" -#: ../../c-api/mapping.rst:59 ../../c-api/mapping.rst:70 +#: ../../c-api/mapping.rst:58 ../../c-api/mapping.rst:69 msgid "" "Return ``1`` if the mapping object has the key *key* and ``0`` otherwise. " "This is equivalent to the Python expression ``key in o``. This function " "always succeeds." msgstr "" -#: ../../c-api/mapping.rst:63 +#: ../../c-api/mapping.rst:62 msgid "" "Note that exceptions which occur while calling the :meth:`__getitem__` " "method will get suppressed. To get error reporting use " ":c:func:`PyObject_GetItem()` instead." msgstr "" -#: ../../c-api/mapping.rst:74 +#: ../../c-api/mapping.rst:73 msgid "" "Note that exceptions which occur while calling the :meth:`__getitem__` " "method and creating a temporary string object will get suppressed. To get " "error reporting use :c:func:`PyMapping_GetItemString()` instead." msgstr "" -#: ../../c-api/mapping.rst:81 +#: ../../c-api/mapping.rst:80 msgid "" "On success, return a list of the keys in object *o*. On failure, return " "``NULL``." msgstr "" -#: ../../c-api/mapping.rst:84 ../../c-api/mapping.rst:93 -#: ../../c-api/mapping.rst:102 +#: ../../c-api/mapping.rst:83 ../../c-api/mapping.rst:92 +#: ../../c-api/mapping.rst:101 msgid "Previously, the function returned a list or a tuple." msgstr "" -#: ../../c-api/mapping.rst:90 +#: ../../c-api/mapping.rst:89 msgid "" "On success, return a list of the values in object *o*. On failure, return " "``NULL``." msgstr "" -#: ../../c-api/mapping.rst:99 +#: ../../c-api/mapping.rst:98 msgid "" "On success, return a list of the items in object *o*, where each item is a " "tuple containing a key-value pair. On failure, return ``NULL``." diff --git a/c-api/module.po b/c-api/module.po index 83b7d57..d8d00f2 100644 --- a/c-api/module.po +++ b/c-api/module.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-31 11:48+0000\n" +"POT-Creation-Date: 2019-11-06 11:52+0000\n" "PO-Revision-Date: 2017-02-16 17:37+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -561,7 +561,23 @@ msgstr "" msgid "Only effective on modules created using single-phase initialization." msgstr "" -#: ../../c-api/module.rst:492 +#: ../../c-api/module.rst:488 msgid "" -"Removes the module object created from *def* from the interpreter state." +"Python calls ``PyState_AddModule`` automatically after importing a module, " +"so it is unnecessary (but harmless) to call it from module initialization " +"code. An explicit call is needed only if the module's own init code " +"subsequently calls ``PyState_FindModule``. The function is mainly intended " +"for implementing alternative import mechanisms (either by calling it " +"directly, or by referring to its implementation for details of the required " +"state updates)." +msgstr "" + +#: ../../c-api/module.rst:496 +msgid "Return 0 on success or -1 on failure." +msgstr "" + +#: ../../c-api/module.rst:502 +msgid "" +"Removes the module object created from *def* from the interpreter state. " +"Return 0 on success or -1 on failure." msgstr "" diff --git a/c-api/sys.po b/c-api/sys.po index 5faf444..e7a62ae 100644 --- a/c-api/sys.po +++ b/c-api/sys.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-31 11:48+0000\n" +"POT-Creation-Date: 2019-12-10 12:08+0000\n" "PO-Revision-Date: 2017-02-16 17:39+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -49,7 +49,14 @@ msgid "" "defined." msgstr "" -#: ../../c-api/sys.rst:41 +#: ../../c-api/sys.rst:37 +msgid "" +"The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread" +" ` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_BeforeFork()``." +msgstr "" + +#: ../../c-api/sys.rst:47 msgid "" "Function to update some internal state after a process fork. This should be" " called from the parent process after calling :c:func:`fork` or any similar " @@ -58,7 +65,14 @@ msgid "" "defined." msgstr "" -#: ../../c-api/sys.rst:52 +#: ../../c-api/sys.rst:54 +msgid "" +"The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread" +" ` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_AfterFork_Parent()``." +msgstr "" + +#: ../../c-api/sys.rst:64 msgid "" "Function to update internal interpreter state after a process fork. This " "must be called from the child process after calling :c:func:`fork`, or any " @@ -67,14 +81,21 @@ msgid "" "systems where :c:func:`fork` is defined." msgstr "" -#: ../../c-api/sys.rst:61 +#: ../../c-api/sys.rst:71 +msgid "" +"The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread" +" ` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_AfterFork_Child()``." +msgstr "" + +#: ../../c-api/sys.rst:79 msgid "" ":func:`os.register_at_fork` allows registering custom Python functions to be" " called by :c:func:`PyOS_BeforeFork()`, :c:func:`PyOS_AfterFork_Parent` and" " :c:func:`PyOS_AfterFork_Child`." msgstr "" -#: ../../c-api/sys.rst:68 +#: ../../c-api/sys.rst:86 msgid "" "Function to update some internal state after a process fork; this should be " "called in the new process if the Python interpreter will continue to be " @@ -82,11 +103,11 @@ msgid "" " not need to be called." msgstr "" -#: ../../c-api/sys.rst:73 +#: ../../c-api/sys.rst:91 msgid "This function is superseded by :c:func:`PyOS_AfterFork_Child()`." msgstr "" -#: ../../c-api/sys.rst:79 +#: ../../c-api/sys.rst:97 msgid "" "Return true when the interpreter runs out of stack space. This is a " "reliable check, but is only available when :const:`USE_STACKCHECK` is " @@ -95,7 +116,7 @@ msgid "" "change the definition in your own code." msgstr "" -#: ../../c-api/sys.rst:88 +#: ../../c-api/sys.rst:106 msgid "" "Return the current signal handler for signal *i*. This is a thin wrapper " "around either :c:func:`sigaction` or :c:func:`signal`. Do not call those " @@ -103,7 +124,7 @@ msgid "" ":c:type:`void (\\*)(int)`." msgstr "" -#: ../../c-api/sys.rst:96 +#: ../../c-api/sys.rst:114 msgid "" "Set the signal handler for signal *i* to be *h*; return the old signal " "handler. This is a thin wrapper around either :c:func:`sigaction` or " @@ -112,7 +133,7 @@ msgid "" "(\\*)(int)`." msgstr "" -#: ../../c-api/sys.rst:103 +#: ../../c-api/sys.rst:121 msgid "" "Decode a byte string from the locale encoding with the :ref:`surrogateescape" " error handler `: undecodable bytes are decoded as " @@ -121,116 +142,116 @@ msgid "" "handler instead of decoding them." msgstr "" -#: ../../c-api/sys.rst:109 ../../c-api/sys.rst:155 +#: ../../c-api/sys.rst:127 ../../c-api/sys.rst:173 msgid "Encoding, highest priority to lowest priority:" msgstr "" -#: ../../c-api/sys.rst:111 ../../c-api/sys.rst:157 +#: ../../c-api/sys.rst:129 ../../c-api/sys.rst:175 msgid "``UTF-8`` on macOS, Android, and VxWorks;" msgstr "" -#: ../../c-api/sys.rst:112 ../../c-api/sys.rst:158 +#: ../../c-api/sys.rst:130 ../../c-api/sys.rst:176 msgid "" "``UTF-8`` on Windows if :c:data:`Py_LegacyWindowsFSEncodingFlag` is zero;" msgstr "" -#: ../../c-api/sys.rst:113 ../../c-api/sys.rst:159 +#: ../../c-api/sys.rst:131 ../../c-api/sys.rst:177 msgid "``UTF-8`` if the Python UTF-8 mode is enabled;" msgstr "" -#: ../../c-api/sys.rst:114 ../../c-api/sys.rst:160 +#: ../../c-api/sys.rst:132 ../../c-api/sys.rst:178 msgid "" "``ASCII`` if the ``LC_CTYPE`` locale is ``\"C\"``, ``nl_langinfo(CODESET)`` " "returns the ``ASCII`` encoding (or an alias), and :c:func:`mbstowcs` and " ":c:func:`wcstombs` functions uses the ``ISO-8859-1`` encoding." msgstr "" -#: ../../c-api/sys.rst:118 ../../c-api/sys.rst:164 +#: ../../c-api/sys.rst:136 ../../c-api/sys.rst:182 msgid "the current locale encoding." msgstr "" -#: ../../c-api/sys.rst:120 +#: ../../c-api/sys.rst:138 msgid "" "Return a pointer to a newly allocated wide character string, use " ":c:func:`PyMem_RawFree` to free the memory. If size is not ``NULL``, write " "the number of wide characters excluding the null character into ``*size``" msgstr "" -#: ../../c-api/sys.rst:124 +#: ../../c-api/sys.rst:142 msgid "" "Return ``NULL`` on decoding error or memory allocation error. If *size* is " "not ``NULL``, ``*size`` is set to ``(size_t)-1`` on memory error or set to " "``(size_t)-2`` on decoding error." msgstr "" -#: ../../c-api/sys.rst:128 +#: ../../c-api/sys.rst:146 msgid "" "Decoding errors should never happen, unless there is a bug in the C library." msgstr "" -#: ../../c-api/sys.rst:131 +#: ../../c-api/sys.rst:149 msgid "" "Use the :c:func:`Py_EncodeLocale` function to encode the character string " "back to a byte string." msgstr "" -#: ../../c-api/sys.rst:136 +#: ../../c-api/sys.rst:154 msgid "" "The :c:func:`PyUnicode_DecodeFSDefaultAndSize` and " ":c:func:`PyUnicode_DecodeLocaleAndSize` functions." msgstr "" -#: ../../c-api/sys.rst:141 ../../c-api/sys.rst:185 +#: ../../c-api/sys.rst:159 ../../c-api/sys.rst:203 msgid "The function now uses the UTF-8 encoding in the UTF-8 mode." msgstr "" -#: ../../c-api/sys.rst:144 ../../c-api/sys.rst:188 +#: ../../c-api/sys.rst:162 ../../c-api/sys.rst:206 msgid "" "The function now uses the UTF-8 encoding on Windows if " ":c:data:`Py_LegacyWindowsFSEncodingFlag` is zero;" msgstr "" -#: ../../c-api/sys.rst:151 +#: ../../c-api/sys.rst:169 msgid "" "Encode a wide character string to the locale encoding with the " ":ref:`surrogateescape error handler `: surrogate characters" " in the range U+DC80..U+DCFF are converted to bytes 0x80..0xFF." msgstr "" -#: ../../c-api/sys.rst:166 +#: ../../c-api/sys.rst:184 msgid "The function uses the UTF-8 encoding in the Python UTF-8 mode." msgstr "" -#: ../../c-api/sys.rst:168 +#: ../../c-api/sys.rst:186 msgid "" "Return a pointer to a newly allocated byte string, use :c:func:`PyMem_Free` " "to free the memory. Return ``NULL`` on encoding error or memory allocation " "error" msgstr "" -#: ../../c-api/sys.rst:172 +#: ../../c-api/sys.rst:190 msgid "" "If error_pos is not ``NULL``, ``*error_pos`` is set to ``(size_t)-1`` on " "success, or set to the index of the invalid character on encoding error." msgstr "" -#: ../../c-api/sys.rst:175 +#: ../../c-api/sys.rst:193 msgid "" "Use the :c:func:`Py_DecodeLocale` function to decode the bytes string back " "to a wide character string." msgstr "" -#: ../../c-api/sys.rst:180 +#: ../../c-api/sys.rst:198 msgid "" "The :c:func:`PyUnicode_EncodeFSDefault` and :c:func:`PyUnicode_EncodeLocale`" " functions." msgstr "" -#: ../../c-api/sys.rst:196 +#: ../../c-api/sys.rst:214 msgid "System Functions" msgstr "" -#: ../../c-api/sys.rst:198 +#: ../../c-api/sys.rst:216 msgid "" "These are utility functions that make functionality from the :mod:`sys` " "module accessible to C code. They all work with the current interpreter " @@ -238,36 +259,36 @@ msgid "" " state structure." msgstr "" -#: ../../c-api/sys.rst:204 +#: ../../c-api/sys.rst:222 msgid "" "Return the object *name* from the :mod:`sys` module or ``NULL`` if it does " "not exist, without setting an exception." msgstr "" -#: ../../c-api/sys.rst:209 +#: ../../c-api/sys.rst:227 msgid "" "Set *name* in the :mod:`sys` module to *v* unless *v* is ``NULL``, in which " "case *name* is deleted from the sys module. Returns ``0`` on success, ``-1``" " on error." msgstr "" -#: ../../c-api/sys.rst:215 +#: ../../c-api/sys.rst:233 msgid "" "Reset :data:`sys.warnoptions` to an empty list. This function may be called " "prior to :c:func:`Py_Initialize`." msgstr "" -#: ../../c-api/sys.rst:220 +#: ../../c-api/sys.rst:238 msgid "" "Append *s* to :data:`sys.warnoptions`. This function must be called prior to" " :c:func:`Py_Initialize` in order to affect the warnings filter list." msgstr "" -#: ../../c-api/sys.rst:225 +#: ../../c-api/sys.rst:243 msgid "Append *unicode* to :data:`sys.warnoptions`." msgstr "" -#: ../../c-api/sys.rst:227 +#: ../../c-api/sys.rst:245 msgid "" "Note: this function is not currently usable from outside the CPython " "implementation, as it must be called prior to the implicit import of " @@ -276,20 +297,20 @@ msgid "" "creation of Unicode objects." msgstr "" -#: ../../c-api/sys.rst:235 +#: ../../c-api/sys.rst:253 msgid "" "Set :data:`sys.path` to a list object of paths found in *path* which should " "be a list of paths separated with the platform's search path delimiter " "(``:`` on Unix, ``;`` on Windows)." msgstr "" -#: ../../c-api/sys.rst:241 +#: ../../c-api/sys.rst:259 msgid "" "Write the output string described by *format* to :data:`sys.stdout`. No " "exceptions are raised, even if truncation occurs (see below)." msgstr "" -#: ../../c-api/sys.rst:244 +#: ../../c-api/sys.rst:262 msgid "" "*format* should limit the total size of the formatted output string to 1000 " "bytes or less -- after 1000 bytes, the output string is truncated. In " @@ -300,52 +321,52 @@ msgid "" "of digits for very large numbers." msgstr "" -#: ../../c-api/sys.rst:252 +#: ../../c-api/sys.rst:270 msgid "" "If a problem occurs, or :data:`sys.stdout` is unset, the formatted message " "is written to the real (C level) *stdout*." msgstr "" -#: ../../c-api/sys.rst:257 +#: ../../c-api/sys.rst:275 msgid "" "As :c:func:`PySys_WriteStdout`, but write to :data:`sys.stderr` or *stderr* " "instead." msgstr "" -#: ../../c-api/sys.rst:262 +#: ../../c-api/sys.rst:280 msgid "" "Function similar to PySys_WriteStdout() but format the message using " ":c:func:`PyUnicode_FromFormatV` and don't truncate the message to an " "arbitrary length." msgstr "" -#: ../../c-api/sys.rst:270 +#: ../../c-api/sys.rst:288 msgid "" "As :c:func:`PySys_FormatStdout`, but write to :data:`sys.stderr` or *stderr*" " instead." msgstr "" -#: ../../c-api/sys.rst:277 +#: ../../c-api/sys.rst:295 msgid "" "Parse *s* as a set of :option:`-X` options and add them to the current " "options mapping as returned by :c:func:`PySys_GetXOptions`. This function " "may be called prior to :c:func:`Py_Initialize`." msgstr "" -#: ../../c-api/sys.rst:285 +#: ../../c-api/sys.rst:303 msgid "" "Return the current dictionary of :option:`-X` options, similarly to " ":data:`sys._xoptions`. On error, ``NULL`` is returned and an exception is " "set." msgstr "" -#: ../../c-api/sys.rst:294 +#: ../../c-api/sys.rst:312 msgid "" -"Raises an auditing event with any active hooks. Returns zero for success and" -" non-zero with an exception set on failure." +"Raise an auditing event with any active hooks. Return zero for success and " +"non-zero with an exception set on failure." msgstr "" -#: ../../c-api/sys.rst:297 +#: ../../c-api/sys.rst:315 msgid "" "If any hooks have been added, *format* and other arguments will be used to " "construct a tuple to pass. Apart from ``N``, the same format characters as " @@ -356,19 +377,38 @@ msgid "" "leaks.)" msgstr "" -#: ../../c-api/sys.rst:305 +#: ../../c-api/sys.rst:323 +msgid "" +"Note that ``#`` format characters should always be treated as " +"``Py_ssize_t``, regardless of whether ``PY_SSIZE_T_CLEAN`` was defined." +msgstr "" + +#: ../../c-api/sys.rst:326 msgid ":func:`sys.audit` performs the same function from Python code." msgstr "" -#: ../../c-api/sys.rst:312 +#: ../../c-api/sys.rst:332 +msgid "" +"Require ``Py_ssize_t`` for ``#`` format characters. Previously, an " +"unavoidable deprecation warning was raised." +msgstr "" + +#: ../../c-api/sys.rst:338 +msgid "" +"Append the callable *hook* to the list of active auditing hooks. Return zero" +" for success and non-zero on failure. If the runtime has been initialized, " +"also set an error on failure. Hooks added through this API are called for " +"all interpreters created by the runtime." +msgstr "" + +#: ../../c-api/sys.rst:344 msgid "" -"Adds to the collection of active auditing hooks. Returns zero for success " -"and non-zero on failure. If the runtime has been initialized, also sets an " -"error on failure. Hooks added through this API are called for all " -"interpreters created by the runtime." +"The *userData* pointer is passed into the hook function. Since hook " +"functions may be called from different runtimes, this pointer should not " +"refer directly to Python state." msgstr "" -#: ../../c-api/sys.rst:317 +#: ../../c-api/sys.rst:348 msgid "" "This function is safe to call before :c:func:`Py_Initialize`. When called " "after runtime initialization, existing audit hooks are notified and may " @@ -376,7 +416,7 @@ msgid "" ":class:`Exception` (other errors will not be silenced)." msgstr "" -#: ../../c-api/sys.rst:322 +#: ../../c-api/sys.rst:353 msgid "" "The hook function is of type :c:type:`int (*)(const char *event, PyObject " "*args, void *userData)`, where *args* is guaranteed to be a " @@ -384,19 +424,11 @@ msgid "" "held by the Python interpreter that raised the event." msgstr "" -#: ../../c-api/sys.rst:327 -msgid "" -"The *userData* pointer is passed into the hook function. Since hook " -"functions may be called from different runtimes, this pointer should not " -"refer directly to Python state." -msgstr "" - -#: ../../c-api/sys.rst:331 +#: ../../c-api/sys.rst:358 msgid "" -"See :pep:`578` for a detailed description of auditing. Functions in the " -"runtime and standard library that raise events include the details in each " -"function's documentation and listed in the :ref:`audit events table `." +"See :pep:`578` for a detailed description of auditing. Functions in the " +"runtime and standard library that raise events are listed in the :ref:`audit" +" events table `. Details are in each function's documentation." msgstr "" #: ../../c-api/sys.rstNone @@ -405,7 +437,7 @@ msgid "" "arguments." msgstr "" -#: ../../c-api/sys.rst:338 +#: ../../c-api/sys.rst:365 msgid "" "If the interpreter is initialized, this function raises a auditing event " "``sys.addaudithook`` with no arguments. If any existing hooks raise an " @@ -414,11 +446,11 @@ msgid "" "hook has been added unless they control all existing hooks." msgstr "" -#: ../../c-api/sys.rst:350 +#: ../../c-api/sys.rst:377 msgid "Process Control" msgstr "" -#: ../../c-api/sys.rst:357 +#: ../../c-api/sys.rst:384 msgid "" "Print a fatal error message and kill the process. No cleanup is performed. " "This function should only be invoked when a condition is detected that would" @@ -428,18 +460,18 @@ msgid "" ":file:`core` file." msgstr "" -#: ../../c-api/sys.rst:371 +#: ../../c-api/sys.rst:398 msgid "" "Exit the current process. This calls :c:func:`Py_FinalizeEx` and then calls" " the standard C library function ``exit(status)``. If " ":c:func:`Py_FinalizeEx` indicates an error, the exit status is set to 120." msgstr "" -#: ../../c-api/sys.rst:375 +#: ../../c-api/sys.rst:402 msgid "Errors from finalization no longer ignored." msgstr "" -#: ../../c-api/sys.rst:385 +#: ../../c-api/sys.rst:412 msgid "" "Register a cleanup function to be called by :c:func:`Py_FinalizeEx`. The " "cleanup function will be called with no arguments and should return no " diff --git a/library/argparse.po b/library/argparse.po index 5f7c6de..2298d9f 100644 --- a/library/argparse.po +++ b/library/argparse.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-21 11:44+0000\n" +"POT-Creation-Date: 2019-11-18 11:58+0000\n" "PO-Revision-Date: 2017-02-16 17:48+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -686,6 +686,10 @@ msgid "" msgstr "" #: ../../library/argparse.rst:789 +msgid "Note, the *default* will be ``None`` unless explicitly set to *0*." +msgstr "" + +#: ../../library/argparse.rst:791 msgid "" "``'help'`` - This prints a complete help message for all the options in the " "current parser and then exits. By default a help action is automatically " @@ -693,20 +697,20 @@ msgid "" "output is created." msgstr "" -#: ../../library/argparse.rst:794 +#: ../../library/argparse.rst:796 msgid "" "``'version'`` - This expects a ``version=`` keyword argument in the " ":meth:`~ArgumentParser.add_argument` call, and prints version information " "and exits when invoked::" msgstr "" -#: ../../library/argparse.rst:804 +#: ../../library/argparse.rst:806 msgid "" "``'extend'`` - This stores a list, and extends each argument value to the " "list. Example usage::" msgstr "" -#: ../../library/argparse.rst:815 +#: ../../library/argparse.rst:817 msgid "" "You may also specify an arbitrary action by passing an Action subclass or " "other object that implements the same interface. The recommended way to do " @@ -714,19 +718,19 @@ msgid "" "optionally the ``__init__`` method." msgstr "" -#: ../../library/argparse.rst:820 +#: ../../library/argparse.rst:822 msgid "An example of a custom action::" msgstr "" -#: ../../library/argparse.rst:840 +#: ../../library/argparse.rst:842 msgid "For more details, see :class:`Action`." msgstr "" -#: ../../library/argparse.rst:843 +#: ../../library/argparse.rst:845 msgid "nargs" msgstr "" -#: ../../library/argparse.rst:845 +#: ../../library/argparse.rst:847 msgid "" "ArgumentParser objects usually associate a single command-line argument with" " a single action to be taken. The ``nargs`` keyword argument associates a " @@ -734,19 +738,19 @@ msgid "" "supported values are:" msgstr "" -#: ../../library/argparse.rst:850 +#: ../../library/argparse.rst:852 msgid "" "``N`` (an integer). ``N`` arguments from the command line will be gathered " "together into a list. For example::" msgstr "" -#: ../../library/argparse.rst:859 +#: ../../library/argparse.rst:861 msgid "" "Note that ``nargs=1`` produces a list of one item. This is different from " "the default, in which the item is produced by itself." msgstr "" -#: ../../library/argparse.rst:864 +#: ../../library/argparse.rst:866 msgid "" "``'?'``. One argument will be consumed from the command line if possible, " "and produced as a single item. If no command-line argument is present, the " @@ -756,13 +760,13 @@ msgid "" "produced. Some examples to illustrate this::" msgstr "" -#: ../../library/argparse.rst:881 +#: ../../library/argparse.rst:883 msgid "" "One of the more common uses of ``nargs='?'`` is to allow optional input and " "output files::" msgstr "" -#: ../../library/argparse.rst:898 +#: ../../library/argparse.rst:900 msgid "" "``'*'``. All command-line arguments present are gathered into a list. Note" " that it generally doesn't make much sense to have more than one positional " @@ -770,21 +774,21 @@ msgid "" "``nargs='*'`` is possible. For example::" msgstr "" -#: ../../library/argparse.rst:912 +#: ../../library/argparse.rst:914 msgid "" "``'+'``. Just like ``'*'``, all command-line args present are gathered into " "a list. Additionally, an error message will be generated if there wasn't at" " least one command-line argument present. For example::" msgstr "" -#: ../../library/argparse.rst:926 +#: ../../library/argparse.rst:928 msgid "" "``argparse.REMAINDER``. All the remaining command-line arguments are " "gathered into a list. This is commonly useful for command line utilities " "that dispatch to other command line utilities::" msgstr "" -#: ../../library/argparse.rst:937 +#: ../../library/argparse.rst:939 msgid "" "If the ``nargs`` keyword argument is not provided, the number of arguments " "consumed is determined by the action_. Generally this means a single " @@ -792,11 +796,11 @@ msgid "" "be produced." msgstr "" -#: ../../library/argparse.rst:943 +#: ../../library/argparse.rst:945 msgid "const" msgstr "" -#: ../../library/argparse.rst:945 +#: ../../library/argparse.rst:947 msgid "" "The ``const`` argument of :meth:`~ArgumentParser.add_argument` is used to " "hold constant values that are not read from the command line but are " @@ -804,7 +808,7 @@ msgid "" "common uses of it are:" msgstr "" -#: ../../library/argparse.rst:949 +#: ../../library/argparse.rst:951 msgid "" "When :meth:`~ArgumentParser.add_argument` is called with " "``action='store_const'`` or ``action='append_const'``. These actions add " @@ -813,7 +817,7 @@ msgid "" "examples." msgstr "" -#: ../../library/argparse.rst:954 +#: ../../library/argparse.rst:956 msgid "" "When :meth:`~ArgumentParser.add_argument` is called with option strings " "(like ``-f`` or ``--foo``) and ``nargs='?'``. This creates an optional " @@ -823,17 +827,17 @@ msgid "" "instead. See the nargs_ description for examples." msgstr "" -#: ../../library/argparse.rst:961 +#: ../../library/argparse.rst:963 msgid "" "With the ``'store_const'`` and ``'append_const'`` actions, the ``const`` " "keyword argument must be given. For other actions, it defaults to ``None``." msgstr "" -#: ../../library/argparse.rst:966 +#: ../../library/argparse.rst:968 msgid "default" msgstr "bawaan" -#: ../../library/argparse.rst:968 +#: ../../library/argparse.rst:970 msgid "" "All optional arguments and some positional arguments may be omitted at the " "command line. The ``default`` keyword argument of " @@ -843,7 +847,7 @@ msgid "" "option string was not present at the command line::" msgstr "" -#: ../../library/argparse.rst:982 +#: ../../library/argparse.rst:984 msgid "" "If the ``default`` value is a string, the parser parses the value as if it " "were a command-line argument. In particular, the parser applies any type_ " @@ -852,23 +856,23 @@ msgid "" "is::" msgstr "" -#: ../../library/argparse.rst:993 +#: ../../library/argparse.rst:995 msgid "" "For positional arguments with nargs_ equal to ``?`` or ``*``, the " "``default`` value is used when no command-line argument was present::" msgstr "" -#: ../../library/argparse.rst:1004 +#: ../../library/argparse.rst:1006 msgid "" "Providing ``default=argparse.SUPPRESS`` causes no attribute to be added if " "the command-line argument was not present::" msgstr "" -#: ../../library/argparse.rst:1016 +#: ../../library/argparse.rst:1018 msgid "type" msgstr "tipe" -#: ../../library/argparse.rst:1018 +#: ../../library/argparse.rst:1020 msgid "" "By default, :class:`ArgumentParser` objects read command-line arguments in " "as simple strings. However, quite often the command-line string should " @@ -879,13 +883,13 @@ msgid "" "be used directly as the value of the ``type`` argument::" msgstr "" -#: ../../library/argparse.rst:1031 +#: ../../library/argparse.rst:1033 msgid "" "See the section on the default_ keyword argument for information on when the" " ``type`` argument is applied to default arguments." msgstr "" -#: ../../library/argparse.rst:1034 +#: ../../library/argparse.rst:1036 msgid "" "To ease the use of various types of files, the argparse module provides the " "factory FileType which takes the ``mode=``, ``bufsize=``, ``encoding=`` and " @@ -893,27 +897,27 @@ msgid "" "``FileType('w')`` can be used to create a writable file::" msgstr "" -#: ../../library/argparse.rst:1044 +#: ../../library/argparse.rst:1046 msgid "" "``type=`` can take any callable that takes a single string argument and " "returns the converted value::" msgstr "" -#: ../../library/argparse.rst:1063 +#: ../../library/argparse.rst:1065 msgid "" "The choices_ keyword argument may be more convenient for type checkers that " "simply check against a range of values::" msgstr "" -#: ../../library/argparse.rst:1074 +#: ../../library/argparse.rst:1076 msgid "See the choices_ section for more details." msgstr "" -#: ../../library/argparse.rst:1078 +#: ../../library/argparse.rst:1080 msgid "choices" msgstr "" -#: ../../library/argparse.rst:1080 +#: ../../library/argparse.rst:1082 msgid "" "Some command-line arguments should be selected from a restricted set of " "values. These can be handled by passing a container object as the *choices* " @@ -922,24 +926,24 @@ msgid "" "be displayed if the argument was not one of the acceptable values::" msgstr "" -#: ../../library/argparse.rst:1095 +#: ../../library/argparse.rst:1097 msgid "" "Note that inclusion in the *choices* container is checked after any type_ " "conversions have been performed, so the type of the objects in the *choices*" " container should match the type_ specified::" msgstr "" -#: ../../library/argparse.rst:1107 +#: ../../library/argparse.rst:1109 msgid "" "Any container can be passed as the *choices* value, so :class:`list` " "objects, :class:`set` objects, and custom containers are all supported." msgstr "" -#: ../../library/argparse.rst:1112 +#: ../../library/argparse.rst:1114 msgid "required" msgstr "" -#: ../../library/argparse.rst:1114 +#: ../../library/argparse.rst:1116 msgid "" "In general, the :mod:`argparse` module assumes that flags like ``-f`` and " "``--bar`` indicate *optional* arguments, which can always be omitted at the " @@ -947,24 +951,24 @@ msgid "" "the ``required=`` keyword argument to :meth:`~ArgumentParser.add_argument`::" msgstr "" -#: ../../library/argparse.rst:1127 +#: ../../library/argparse.rst:1129 msgid "" "As the example shows, if an option is marked as ``required``, " ":meth:`~ArgumentParser.parse_args` will report an error if that option is " "not present at the command line." msgstr "" -#: ../../library/argparse.rst:1133 +#: ../../library/argparse.rst:1135 msgid "" "Required options are generally considered bad form because users expect " "*options* to be *optional*, and thus they should be avoided when possible." msgstr "" -#: ../../library/argparse.rst:1138 +#: ../../library/argparse.rst:1140 msgid "help" msgstr "" -#: ../../library/argparse.rst:1140 +#: ../../library/argparse.rst:1142 msgid "" "The ``help`` value is a string containing a brief description of the " "argument. When a user requests help (usually by using ``-h`` or ``--help`` " @@ -972,7 +976,7 @@ msgid "" "each argument::" msgstr "" -#: ../../library/argparse.rst:1160 +#: ../../library/argparse.rst:1162 msgid "" "The ``help`` strings can include various format specifiers to avoid " "repetition of things like the program name or the argument default_. The " @@ -981,23 +985,23 @@ msgid "" "``%(type)s``, etc.::" msgstr "" -#: ../../library/argparse.rst:1177 +#: ../../library/argparse.rst:1179 msgid "" "As the help string supports %-formatting, if you want a literal ``%`` to " "appear in the help string, you must escape it as ``%%``." msgstr "" -#: ../../library/argparse.rst:1180 +#: ../../library/argparse.rst:1182 msgid "" ":mod:`argparse` supports silencing the help entry for certain options, by " "setting the ``help`` value to ``argparse.SUPPRESS``::" msgstr "" -#: ../../library/argparse.rst:1193 +#: ../../library/argparse.rst:1195 msgid "metavar" msgstr "" -#: ../../library/argparse.rst:1195 +#: ../../library/argparse.rst:1197 msgid "" "When :class:`ArgumentParser` generates help messages, it needs some way to " "refer to each expected argument. By default, ArgumentParser objects use the" @@ -1009,29 +1013,29 @@ msgid "" " argument will be referred to as ``FOO``. An example::" msgstr "" -#: ../../library/argparse.rst:1219 +#: ../../library/argparse.rst:1221 msgid "An alternative name can be specified with ``metavar``::" msgstr "" -#: ../../library/argparse.rst:1236 +#: ../../library/argparse.rst:1238 msgid "" "Note that ``metavar`` only changes the *displayed* name - the name of the " "attribute on the :meth:`~ArgumentParser.parse_args` object is still " "determined by the dest_ value." msgstr "" -#: ../../library/argparse.rst:1240 +#: ../../library/argparse.rst:1242 msgid "" "Different values of ``nargs`` may cause the metavar to be used multiple " "times. Providing a tuple to ``metavar`` specifies a different display for " "each of the arguments::" msgstr "" -#: ../../library/argparse.rst:1257 +#: ../../library/argparse.rst:1259 msgid "dest" msgstr "" -#: ../../library/argparse.rst:1259 +#: ../../library/argparse.rst:1261 msgid "" "Most :class:`ArgumentParser` actions add some value as an attribute of the " "object returned by :meth:`~ArgumentParser.parse_args`. The name of this " @@ -1041,7 +1045,7 @@ msgid "" ":meth:`~ArgumentParser.add_argument`::" msgstr "" -#: ../../library/argparse.rst:1271 +#: ../../library/argparse.rst:1273 msgid "" "For optional argument actions, the value of ``dest`` is normally inferred " "from the option strings. :class:`ArgumentParser` generates the value of " @@ -1053,22 +1057,22 @@ msgid "" "below illustrate this behavior::" msgstr "" -#: ../../library/argparse.rst:1288 +#: ../../library/argparse.rst:1290 msgid "``dest`` allows a custom attribute name to be provided::" msgstr "" -#: ../../library/argparse.rst:1296 +#: ../../library/argparse.rst:1298 msgid "Action classes" msgstr "" -#: ../../library/argparse.rst:1298 +#: ../../library/argparse.rst:1300 msgid "" "Action classes implement the Action API, a callable which returns a callable" " which processes arguments from the command-line. Any object which follows " "this API may be passed as the ``action`` parameter to :meth:`add_argument`." msgstr "" -#: ../../library/argparse.rst:1307 +#: ../../library/argparse.rst:1309 msgid "" "Action objects are used by an ArgumentParser to represent the information " "needed to parse a single argument from one or more strings from the command " @@ -1077,7 +1081,7 @@ msgid "" "the ``action`` itself." msgstr "" -#: ../../library/argparse.rst:1313 +#: ../../library/argparse.rst:1315 msgid "" "Instances of Action (or return value of any callable to the ``action`` " "parameter) should have attributes \"dest\", \"option_strings\", \"default\"," @@ -1085,107 +1089,107 @@ msgid "" "these attributes are defined is to call ``Action.__init__``." msgstr "" -#: ../../library/argparse.rst:1318 +#: ../../library/argparse.rst:1320 msgid "" "Action instances should be callable, so subclasses must override the " "``__call__`` method, which should accept four parameters:" msgstr "" -#: ../../library/argparse.rst:1321 +#: ../../library/argparse.rst:1323 msgid "``parser`` - The ArgumentParser object which contains this action." msgstr "" -#: ../../library/argparse.rst:1323 +#: ../../library/argparse.rst:1325 msgid "" "``namespace`` - The :class:`Namespace` object that will be returned by " ":meth:`~ArgumentParser.parse_args`. Most actions add an attribute to this " "object using :func:`setattr`." msgstr "" -#: ../../library/argparse.rst:1327 +#: ../../library/argparse.rst:1329 msgid "" "``values`` - The associated command-line arguments, with any type " "conversions applied. Type conversions are specified with the type_ keyword " "argument to :meth:`~ArgumentParser.add_argument`." msgstr "" -#: ../../library/argparse.rst:1331 +#: ../../library/argparse.rst:1333 msgid "" "``option_string`` - The option string that was used to invoke this action. " "The ``option_string`` argument is optional, and will be absent if the action" " is associated with a positional argument." msgstr "" -#: ../../library/argparse.rst:1335 +#: ../../library/argparse.rst:1337 msgid "" "The ``__call__`` method may perform arbitrary actions, but will typically " "set attributes on the ``namespace`` based on ``dest`` and ``values``." msgstr "" -#: ../../library/argparse.rst:1340 +#: ../../library/argparse.rst:1342 msgid "The parse_args() method" msgstr "" -#: ../../library/argparse.rst:1344 +#: ../../library/argparse.rst:1346 msgid "" "Convert argument strings to objects and assign them as attributes of the " "namespace. Return the populated namespace." msgstr "" -#: ../../library/argparse.rst:1347 +#: ../../library/argparse.rst:1349 msgid "" "Previous calls to :meth:`add_argument` determine exactly what objects are " "created and how they are assigned. See the documentation for " ":meth:`add_argument` for details." msgstr "" -#: ../../library/argparse.rst:1351 +#: ../../library/argparse.rst:1353 msgid "" "args_ - List of strings to parse. The default is taken from " ":data:`sys.argv`." msgstr "" -#: ../../library/argparse.rst:1354 +#: ../../library/argparse.rst:1356 msgid "" "namespace_ - An object to take the attributes. The default is a new empty " ":class:`Namespace` object." msgstr "" -#: ../../library/argparse.rst:1359 +#: ../../library/argparse.rst:1361 msgid "Option value syntax" msgstr "" -#: ../../library/argparse.rst:1361 +#: ../../library/argparse.rst:1363 msgid "" "The :meth:`~ArgumentParser.parse_args` method supports several ways of " "specifying the value of an option (if it takes one). In the simplest case, " "the option and its value are passed as two separate arguments::" msgstr "" -#: ../../library/argparse.rst:1373 +#: ../../library/argparse.rst:1375 msgid "" "For long options (options with names longer than a single character), the " "option and value can also be passed as a single command-line argument, using" " ``=`` to separate them::" msgstr "" -#: ../../library/argparse.rst:1380 +#: ../../library/argparse.rst:1382 msgid "" "For short options (options only one character long), the option and its " "value can be concatenated::" msgstr "" -#: ../../library/argparse.rst:1386 +#: ../../library/argparse.rst:1388 msgid "" "Several short options can be joined together, using only a single ``-`` " "prefix, as long as only the last option (or none of them) requires a value::" msgstr "" -#: ../../library/argparse.rst:1398 +#: ../../library/argparse.rst:1400 msgid "Invalid arguments" msgstr "" -#: ../../library/argparse.rst:1400 +#: ../../library/argparse.rst:1402 msgid "" "While parsing the command line, :meth:`~ArgumentParser.parse_args` checks " "for a variety of errors, including ambiguous options, invalid types, invalid" @@ -1193,11 +1197,11 @@ msgid "" "such an error, it exits and prints the error along with a usage message::" msgstr "" -#: ../../library/argparse.rst:1426 +#: ../../library/argparse.rst:1428 msgid "Arguments containing ``-``" msgstr "" -#: ../../library/argparse.rst:1428 +#: ../../library/argparse.rst:1430 msgid "" "The :meth:`~ArgumentParser.parse_args` method attempts to give errors " "whenever the user has clearly made a mistake, but some situations are " @@ -1209,7 +1213,7 @@ msgid "" "negative numbers::" msgstr "" -#: ../../library/argparse.rst:1466 +#: ../../library/argparse.rst:1468 msgid "" "If you have positional arguments that must begin with ``-`` and don't look " "like negative numbers, you can insert the pseudo-argument ``'--'`` which " @@ -1217,28 +1221,28 @@ msgid "" "positional argument::" msgstr "" -#: ../../library/argparse.rst:1477 +#: ../../library/argparse.rst:1479 msgid "Argument abbreviations (prefix matching)" msgstr "" -#: ../../library/argparse.rst:1479 +#: ../../library/argparse.rst:1481 msgid "" "The :meth:`~ArgumentParser.parse_args` method :ref:`by default " "` allows long options to be abbreviated to a prefix, if the " "abbreviation is unambiguous (the prefix matches a unique option)::" msgstr "" -#: ../../library/argparse.rst:1494 +#: ../../library/argparse.rst:1496 msgid "" "An error is produced for arguments that could produce more than one options." " This feature can be disabled by setting :ref:`allow_abbrev` to ``False``." msgstr "" -#: ../../library/argparse.rst:1500 +#: ../../library/argparse.rst:1502 msgid "Beyond ``sys.argv``" msgstr "" -#: ../../library/argparse.rst:1502 +#: ../../library/argparse.rst:1504 msgid "" "Sometimes it may be useful to have an ArgumentParser parse arguments other " "than those of :data:`sys.argv`. This can be accomplished by passing a list " @@ -1246,39 +1250,39 @@ msgid "" "testing at the interactive prompt::" msgstr "" -#: ../../library/argparse.rst:1522 +#: ../../library/argparse.rst:1524 msgid "The Namespace object" msgstr "" -#: ../../library/argparse.rst:1526 +#: ../../library/argparse.rst:1528 msgid "" "Simple class used by default by :meth:`~ArgumentParser.parse_args` to create" " an object holding attributes and return it." msgstr "" -#: ../../library/argparse.rst:1529 +#: ../../library/argparse.rst:1531 msgid "" "This class is deliberately simple, just an :class:`object` subclass with a " "readable string representation. If you prefer to have dict-like view of the " "attributes, you can use the standard Python idiom, :func:`vars`::" msgstr "" -#: ../../library/argparse.rst:1539 +#: ../../library/argparse.rst:1541 msgid "" "It may also be useful to have an :class:`ArgumentParser` assign attributes " "to an already existing object, rather than a new :class:`Namespace` object." " This can be achieved by specifying the ``namespace=`` keyword argument::" msgstr "" -#: ../../library/argparse.rst:1555 +#: ../../library/argparse.rst:1557 msgid "Other utilities" msgstr "" -#: ../../library/argparse.rst:1558 +#: ../../library/argparse.rst:1560 msgid "Sub-commands" msgstr "" -#: ../../library/argparse.rst:1565 +#: ../../library/argparse.rst:1567 msgid "" "Many programs split up their functionality into a number of sub-commands, " "for example, the ``svn`` program can invoke sub-commands like ``svn " @@ -1293,69 +1297,69 @@ msgid "" "returns an :class:`ArgumentParser` object that can be modified as usual." msgstr "" -#: ../../library/argparse.rst:1577 +#: ../../library/argparse.rst:1579 msgid "Description of parameters:" msgstr "" -#: ../../library/argparse.rst:1579 +#: ../../library/argparse.rst:1581 msgid "" "title - title for the sub-parser group in help output; by default " "\"subcommands\" if description is provided, otherwise uses title for " "positional arguments" msgstr "" -#: ../../library/argparse.rst:1583 +#: ../../library/argparse.rst:1585 msgid "" "description - description for the sub-parser group in help output, by " "default ``None``" msgstr "" -#: ../../library/argparse.rst:1586 +#: ../../library/argparse.rst:1588 msgid "" "prog - usage information that will be displayed with sub-command help, by " "default the name of the program and any positional arguments before the " "subparser argument" msgstr "" -#: ../../library/argparse.rst:1590 +#: ../../library/argparse.rst:1592 msgid "" "parser_class - class which will be used to create sub-parser instances, by " "default the class of the current parser (e.g. ArgumentParser)" msgstr "" -#: ../../library/argparse.rst:1593 +#: ../../library/argparse.rst:1595 msgid "" "action_ - the basic type of action to be taken when this argument is " "encountered at the command line" msgstr "" -#: ../../library/argparse.rst:1596 +#: ../../library/argparse.rst:1598 msgid "" "dest_ - name of the attribute under which sub-command name will be stored; " "by default ``None`` and no value is stored" msgstr "" -#: ../../library/argparse.rst:1599 +#: ../../library/argparse.rst:1601 msgid "" "required_ - Whether or not a subcommand must be provided, by default " "``False`` (added in 3.7)" msgstr "" -#: ../../library/argparse.rst:1602 +#: ../../library/argparse.rst:1604 msgid "help_ - help for sub-parser group in help output, by default ``None``" msgstr "" -#: ../../library/argparse.rst:1604 +#: ../../library/argparse.rst:1606 msgid "" "metavar_ - string presenting available sub-commands in help; by default it " "is ``None`` and presents sub-commands in form {cmd1, cmd2, ..}" msgstr "" -#: ../../library/argparse.rst:1607 +#: ../../library/argparse.rst:1609 msgid "Some example usage::" msgstr "" -#: ../../library/argparse.rst:1628 +#: ../../library/argparse.rst:1630 msgid "" "Note that the object returned by :meth:`parse_args` will only contain " "attributes for the main parser and the subparser that was selected by the " @@ -1365,7 +1369,7 @@ msgid "" "``baz`` attributes are present." msgstr "" -#: ../../library/argparse.rst:1635 +#: ../../library/argparse.rst:1637 msgid "" "Similarly, when a help message is requested from a subparser, only the help " "for that particular parser will be printed. The help message will not " @@ -1374,21 +1378,21 @@ msgid "" " to :meth:`add_parser` as above.)" msgstr "" -#: ../../library/argparse.rst:1671 +#: ../../library/argparse.rst:1673 msgid "" "The :meth:`add_subparsers` method also supports ``title`` and " "``description`` keyword arguments. When either is present, the subparser's " "commands will appear in their own group in the help output. For example::" msgstr "" -#: ../../library/argparse.rst:1692 +#: ../../library/argparse.rst:1694 msgid "" "Furthermore, ``add_parser`` supports an additional ``aliases`` argument, " "which allows multiple strings to refer to the same subparser. This example, " "like ``svn``, aliases ``co`` as a shorthand for ``checkout``::" msgstr "" -#: ../../library/argparse.rst:1703 +#: ../../library/argparse.rst:1705 msgid "" "One particularly effective way of handling sub-commands is to combine the " "use of the :meth:`add_subparsers` method with calls to :meth:`set_defaults` " @@ -1396,7 +1400,7 @@ msgid "" "example::" msgstr "" -#: ../../library/argparse.rst:1740 +#: ../../library/argparse.rst:1742 msgid "" "This way, you can let :meth:`parse_args` do the job of calling the " "appropriate function after argument parsing is complete. Associating " @@ -1406,15 +1410,15 @@ msgid "" "argument to the :meth:`add_subparsers` call will work::" msgstr "" -#: ../../library/argparse.rst:1756 +#: ../../library/argparse.rst:1758 msgid "New *required* keyword argument." msgstr "" -#: ../../library/argparse.rst:1761 +#: ../../library/argparse.rst:1763 msgid "FileType objects" msgstr "" -#: ../../library/argparse.rst:1765 +#: ../../library/argparse.rst:1767 msgid "" "The :class:`FileType` factory creates objects that can be passed to the type" " argument of :meth:`ArgumentParser.add_argument`. Arguments that have " @@ -1423,22 +1427,22 @@ msgid "" "(see the :func:`open` function for more details)::" msgstr "" -#: ../../library/argparse.rst:1777 +#: ../../library/argparse.rst:1779 msgid "" "FileType objects understand the pseudo-argument ``'-'`` and automatically " "convert this into ``sys.stdin`` for readable :class:`FileType` objects and " "``sys.stdout`` for writable :class:`FileType` objects::" msgstr "" -#: ../../library/argparse.rst:1786 +#: ../../library/argparse.rst:1788 msgid "The *encodings* and *errors* keyword arguments." msgstr "" -#: ../../library/argparse.rst:1791 +#: ../../library/argparse.rst:1793 msgid "Argument groups" msgstr "" -#: ../../library/argparse.rst:1795 +#: ../../library/argparse.rst:1797 msgid "" "By default, :class:`ArgumentParser` groups command-line arguments into " "\"positional arguments\" and \"optional arguments\" when displaying help " @@ -1447,7 +1451,7 @@ msgid "" ":meth:`add_argument_group` method::" msgstr "" -#: ../../library/argparse.rst:1812 +#: ../../library/argparse.rst:1814 msgid "" "The :meth:`add_argument_group` method returns an argument group object which" " has an :meth:`~ArgumentParser.add_argument` method just like a regular " @@ -1458,42 +1462,42 @@ msgid "" "this display::" msgstr "" -#: ../../library/argparse.rst:1838 +#: ../../library/argparse.rst:1840 msgid "" "Note that any arguments not in your user-defined groups will end up back in " "the usual \"positional arguments\" and \"optional arguments\" sections." msgstr "" -#: ../../library/argparse.rst:1843 +#: ../../library/argparse.rst:1845 msgid "Mutual exclusion" msgstr "" -#: ../../library/argparse.rst:1847 +#: ../../library/argparse.rst:1849 msgid "" "Create a mutually exclusive group. :mod:`argparse` will make sure that only " "one of the arguments in the mutually exclusive group was present on the " "command line::" msgstr "" -#: ../../library/argparse.rst:1863 +#: ../../library/argparse.rst:1865 msgid "" "The :meth:`add_mutually_exclusive_group` method also accepts a *required* " "argument, to indicate that at least one of the mutually exclusive arguments " "is required::" msgstr "" -#: ../../library/argparse.rst:1875 +#: ../../library/argparse.rst:1877 msgid "" "Note that currently mutually exclusive argument groups do not support the " "*title* and *description* arguments of " ":meth:`~ArgumentParser.add_argument_group`." msgstr "" -#: ../../library/argparse.rst:1881 +#: ../../library/argparse.rst:1883 msgid "Parser defaults" msgstr "" -#: ../../library/argparse.rst:1885 +#: ../../library/argparse.rst:1887 msgid "" "Most of the time, the attributes of the object returned by " ":meth:`parse_args` will be fully determined by inspecting the command-line " @@ -1502,73 +1506,73 @@ msgid "" "command line to be added::" msgstr "" -#: ../../library/argparse.rst:1897 +#: ../../library/argparse.rst:1899 msgid "" "Note that parser-level defaults always override argument-level defaults::" msgstr "" -#: ../../library/argparse.rst:1905 +#: ../../library/argparse.rst:1907 msgid "" "Parser-level defaults can be particularly useful when working with multiple " "parsers. See the :meth:`~ArgumentParser.add_subparsers` method for an " "example of this type." msgstr "" -#: ../../library/argparse.rst:1911 +#: ../../library/argparse.rst:1913 msgid "" "Get the default value for a namespace attribute, as set by either " ":meth:`~ArgumentParser.add_argument` or by " ":meth:`~ArgumentParser.set_defaults`::" msgstr "" -#: ../../library/argparse.rst:1922 +#: ../../library/argparse.rst:1924 msgid "Printing help" msgstr "" -#: ../../library/argparse.rst:1924 +#: ../../library/argparse.rst:1926 msgid "" "In most typical applications, :meth:`~ArgumentParser.parse_args` will take " "care of formatting and printing any usage or error messages. However, " "several formatting methods are available:" msgstr "" -#: ../../library/argparse.rst:1930 +#: ../../library/argparse.rst:1932 msgid "" "Print a brief description of how the :class:`ArgumentParser` should be " "invoked on the command line. If *file* is ``None``, :data:`sys.stdout` is " "assumed." msgstr "" -#: ../../library/argparse.rst:1936 +#: ../../library/argparse.rst:1938 msgid "" "Print a help message, including the program usage and information about the " "arguments registered with the :class:`ArgumentParser`. If *file* is " "``None``, :data:`sys.stdout` is assumed." msgstr "" -#: ../../library/argparse.rst:1940 +#: ../../library/argparse.rst:1942 msgid "" "There are also variants of these methods that simply return a string instead" " of printing it:" msgstr "" -#: ../../library/argparse.rst:1945 +#: ../../library/argparse.rst:1947 msgid "" "Return a string containing a brief description of how the " ":class:`ArgumentParser` should be invoked on the command line." msgstr "" -#: ../../library/argparse.rst:1950 +#: ../../library/argparse.rst:1952 msgid "" "Return a string containing a help message, including the program usage and " "information about the arguments registered with the :class:`ArgumentParser`." msgstr "" -#: ../../library/argparse.rst:1955 +#: ../../library/argparse.rst:1957 msgid "Partial parsing" msgstr "" -#: ../../library/argparse.rst:1959 +#: ../../library/argparse.rst:1961 msgid "" "Sometimes a script may only parse a few of the command-line arguments, " "passing the remaining arguments on to another script or program. In these " @@ -1579,7 +1583,7 @@ msgid "" "remaining argument strings." msgstr "" -#: ../../library/argparse.rst:1975 +#: ../../library/argparse.rst:1977 msgid "" ":ref:`Prefix matching ` rules apply to " ":meth:`parse_known_args`. The parser may consume an option even if it's just" @@ -1587,11 +1591,11 @@ msgid "" "remaining arguments list." msgstr "" -#: ../../library/argparse.rst:1982 +#: ../../library/argparse.rst:1984 msgid "Customizing file parsing" msgstr "" -#: ../../library/argparse.rst:1986 +#: ../../library/argparse.rst:1988 msgid "" "Arguments that are read from a file (see the *fromfile_prefix_chars* keyword" " argument to the :class:`ArgumentParser` constructor) are read one argument " @@ -1599,41 +1603,41 @@ msgid "" "reading." msgstr "" -#: ../../library/argparse.rst:1991 +#: ../../library/argparse.rst:1993 msgid "" "This method takes a single argument *arg_line* which is a string read from " "the argument file. It returns a list of arguments parsed from this string. " "The method is called once per line read from the argument file, in order." msgstr "" -#: ../../library/argparse.rst:1995 +#: ../../library/argparse.rst:1997 msgid "" "A useful override of this method is one that treats each space-separated " "word as an argument. The following example demonstrates how to do this::" msgstr "" -#: ../../library/argparse.rst:2004 +#: ../../library/argparse.rst:2006 msgid "Exiting methods" msgstr "" -#: ../../library/argparse.rst:2008 +#: ../../library/argparse.rst:2010 msgid "" "This method terminates the program, exiting with the specified *status* and," " if given, it prints a *message* before that. The user can override this " "method to handle these steps differently::" msgstr "" -#: ../../library/argparse.rst:2020 +#: ../../library/argparse.rst:2022 msgid "" "This method prints a usage message including the *message* to the standard " "error and terminates the program with a status code of 2." msgstr "" -#: ../../library/argparse.rst:2025 +#: ../../library/argparse.rst:2027 msgid "Intermixed parsing" msgstr "" -#: ../../library/argparse.rst:2030 +#: ../../library/argparse.rst:2032 msgid "" "A number of Unix commands allow the user to intermix optional arguments with" " positional arguments. The :meth:`~ArgumentParser.parse_intermixed_args` " @@ -1641,7 +1645,7 @@ msgid "" " parsing style." msgstr "" -#: ../../library/argparse.rst:2035 +#: ../../library/argparse.rst:2037 msgid "" "These parsers do not support all the argparse features, and will raise " "exceptions if unsupported features are used. In particular, subparsers, " @@ -1649,7 +1653,7 @@ msgid "" "optionals and positionals are not supported." msgstr "" -#: ../../library/argparse.rst:2040 +#: ../../library/argparse.rst:2042 msgid "" "The following example shows the difference between " ":meth:`~ArgumentParser.parse_known_args` and " @@ -1658,7 +1662,7 @@ msgid "" "into ``rest``. ::" msgstr "" -#: ../../library/argparse.rst:2055 +#: ../../library/argparse.rst:2057 msgid "" ":meth:`~ArgumentParser.parse_known_intermixed_args` returns a two item tuple" " containing the populated namespace and the list of remaining argument " @@ -1666,11 +1670,11 @@ msgid "" "there are any remaining unparsed argument strings." msgstr "" -#: ../../library/argparse.rst:2065 +#: ../../library/argparse.rst:2067 msgid "Upgrading optparse code" msgstr "" -#: ../../library/argparse.rst:2067 +#: ../../library/argparse.rst:2069 msgid "" "Originally, the :mod:`argparse` module had attempted to maintain " "compatibility with :mod:`optparse`. However, :mod:`optparse` was difficult " @@ -1681,47 +1685,47 @@ msgid "" "compatibility." msgstr "" -#: ../../library/argparse.rst:2074 +#: ../../library/argparse.rst:2076 msgid "" "The :mod:`argparse` module improves on the standard library :mod:`optparse` " "module in a number of ways including:" msgstr "" -#: ../../library/argparse.rst:2077 +#: ../../library/argparse.rst:2079 msgid "Handling positional arguments." msgstr "" -#: ../../library/argparse.rst:2078 +#: ../../library/argparse.rst:2080 msgid "Supporting sub-commands." msgstr "" -#: ../../library/argparse.rst:2079 +#: ../../library/argparse.rst:2081 msgid "Allowing alternative option prefixes like ``+`` and ``/``." msgstr "" -#: ../../library/argparse.rst:2080 +#: ../../library/argparse.rst:2082 msgid "Handling zero-or-more and one-or-more style arguments." msgstr "" -#: ../../library/argparse.rst:2081 +#: ../../library/argparse.rst:2083 msgid "Producing more informative usage messages." msgstr "" -#: ../../library/argparse.rst:2082 +#: ../../library/argparse.rst:2084 msgid "Providing a much simpler interface for custom ``type`` and ``action``." msgstr "" -#: ../../library/argparse.rst:2084 +#: ../../library/argparse.rst:2086 msgid "A partial upgrade path from :mod:`optparse` to :mod:`argparse`:" msgstr "" -#: ../../library/argparse.rst:2086 +#: ../../library/argparse.rst:2088 msgid "" "Replace all :meth:`optparse.OptionParser.add_option` calls with " ":meth:`ArgumentParser.add_argument` calls." msgstr "" -#: ../../library/argparse.rst:2089 +#: ../../library/argparse.rst:2091 msgid "" "Replace ``(options, args) = parser.parse_args()`` with ``args = " "parser.parse_args()`` and add additional :meth:`ArgumentParser.add_argument`" @@ -1729,40 +1733,40 @@ msgid "" "called ``options``, now in the :mod:`argparse` context is called ``args``." msgstr "" -#: ../../library/argparse.rst:2094 +#: ../../library/argparse.rst:2096 msgid "" "Replace :meth:`optparse.OptionParser.disable_interspersed_args` by using " ":meth:`~ArgumentParser.parse_intermixed_args` instead of " ":meth:`~ArgumentParser.parse_args`." msgstr "" -#: ../../library/argparse.rst:2098 +#: ../../library/argparse.rst:2100 msgid "" "Replace callback actions and the ``callback_*`` keyword arguments with " "``type`` or ``action`` arguments." msgstr "" -#: ../../library/argparse.rst:2101 +#: ../../library/argparse.rst:2103 msgid "" "Replace string names for ``type`` keyword arguments with the corresponding " "type objects (e.g. int, float, complex, etc)." msgstr "" -#: ../../library/argparse.rst:2104 +#: ../../library/argparse.rst:2106 msgid "" "Replace :class:`optparse.Values` with :class:`Namespace` and " ":exc:`optparse.OptionError` and :exc:`optparse.OptionValueError` with " ":exc:`ArgumentError`." msgstr "" -#: ../../library/argparse.rst:2108 +#: ../../library/argparse.rst:2110 msgid "" "Replace strings with implicit arguments such as ``%default`` or ``%prog`` " "with the standard Python syntax to use dictionaries to format strings, that " "is, ``%(default)s`` and ``%(prog)s``." msgstr "" -#: ../../library/argparse.rst:2112 +#: ../../library/argparse.rst:2114 msgid "" "Replace the OptionParser constructor ``version`` argument with a call to " "``parser.add_argument('--version', action='version', version=', 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -240,8 +240,8 @@ msgid "" msgstr "" #: ../../library/asyncio-eventloop.rst:164 -#: ../../library/asyncio-eventloop.rst:1034 -#: ../../library/asyncio-eventloop.rst:1416 +#: ../../library/asyncio-eventloop.rst:1048 +#: ../../library/asyncio-eventloop.rst:1430 msgid "Example::" msgstr "Contoh::" @@ -463,8 +463,8 @@ msgid "The socket type will be :py:data:`~socket.SOCK_STREAM`." msgstr "" #: ../../library/asyncio-eventloop.rst:359 -#: ../../library/asyncio-eventloop.rst:950 -#: ../../library/asyncio-eventloop.rst:966 +#: ../../library/asyncio-eventloop.rst:964 +#: ../../library/asyncio-eventloop.rst:980 msgid "" "*protocol_factory* must be a callable returning an :ref:`asyncio protocol " "` implementation." @@ -508,7 +508,7 @@ msgid "" msgstr "" #: ../../library/asyncio-eventloop.rst:381 -#: ../../library/asyncio-eventloop.rst:477 +#: ../../library/asyncio-eventloop.rst:492 msgid "Other arguments:" msgstr "" @@ -581,7 +581,7 @@ msgid "" msgstr "" #: ../../library/asyncio-eventloop.rst:431 -#: ../../library/asyncio-eventloop.rst:759 +#: ../../library/asyncio-eventloop.rst:773 msgid "" "*ssl_handshake_timeout* is (for a TLS connection) the time in seconds to " "wait for the TLS handshake to complete before aborting the connection. " @@ -593,20 +593,20 @@ msgid "The *happy_eyeballs_delay* and *interleave* parameters." msgstr "" #: ../../library/asyncio-eventloop.rst:441 -#: ../../library/asyncio-eventloop.rst:544 -#: ../../library/asyncio-eventloop.rst:697 +#: ../../library/asyncio-eventloop.rst:558 +#: ../../library/asyncio-eventloop.rst:711 msgid "The *ssl_handshake_timeout* parameter." msgstr "" #: ../../library/asyncio-eventloop.rst:445 -#: ../../library/asyncio-eventloop.rst:627 +#: ../../library/asyncio-eventloop.rst:641 msgid "" "The socket option :py:data:`~socket.TCP_NODELAY` is set by default for all " "TCP connections." msgstr "" #: ../../library/asyncio-eventloop.rst:450 -#: ../../library/asyncio-eventloop.rst:632 +#: ../../library/asyncio-eventloop.rst:646 msgid "Added support for SSL/TLS in :class:`ProactorEventLoop`." msgstr "" @@ -617,49 +617,71 @@ msgid "" " used directly in async/await code." msgstr "" -#: ../../library/asyncio-eventloop.rst:464 +#: ../../library/asyncio-eventloop.rst:465 +msgid "" +"The parameter *reuse_address* is no longer supported, as using " +":py:data:`~sockets.SO_REUSEADDR` poses a significant security concern for " +"UDP. Explicitly passing ``reuse_address=True`` will raise an exception." +msgstr "" + +#: ../../library/asyncio-eventloop.rst:469 +msgid "" +"When multiple processes with differing UIDs assign sockets to an indentical " +"UDP socket address with ``SO_REUSEADDR``, incoming packets can become " +"randomly distributed among the sockets." +msgstr "" + +#: ../../library/asyncio-eventloop.rst:473 +msgid "" +"For supported platforms, *reuse_port* can be used as a replacement for " +"similar functionality. With *reuse_port*, :py:data:`~sockets.SO_REUSEPORT` " +"is used instead, which specifically prevents processes with differing UIDs " +"from assigning sockets to the same socket address." +msgstr "" + +#: ../../library/asyncio-eventloop.rst:479 msgid "Create a datagram connection." msgstr "" -#: ../../library/asyncio-eventloop.rst:466 +#: ../../library/asyncio-eventloop.rst:481 msgid "" "The socket family can be either :py:data:`~socket.AF_INET`, " ":py:data:`~socket.AF_INET6`, or :py:data:`~socket.AF_UNIX`, depending on " "*host* (or the *family* argument, if provided)." msgstr "" -#: ../../library/asyncio-eventloop.rst:470 +#: ../../library/asyncio-eventloop.rst:485 msgid "The socket type will be :py:data:`~socket.SOCK_DGRAM`." msgstr "" -#: ../../library/asyncio-eventloop.rst:472 -#: ../../library/asyncio-eventloop.rst:569 -#: ../../library/asyncio-eventloop.rst:680 +#: ../../library/asyncio-eventloop.rst:487 +#: ../../library/asyncio-eventloop.rst:583 +#: ../../library/asyncio-eventloop.rst:694 msgid "" "*protocol_factory* must be a callable returning a :ref:`protocol ` implementation." msgstr "" -#: ../../library/asyncio-eventloop.rst:475 -#: ../../library/asyncio-eventloop.rst:530 +#: ../../library/asyncio-eventloop.rst:490 +#: ../../library/asyncio-eventloop.rst:544 msgid "A tuple of ``(transport, protocol)`` is returned on success." msgstr "" -#: ../../library/asyncio-eventloop.rst:479 +#: ../../library/asyncio-eventloop.rst:494 msgid "" "*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind" " the socket to locally. The *local_host* and *local_port* are looked up " "using :meth:`getaddrinfo`." msgstr "" -#: ../../library/asyncio-eventloop.rst:483 +#: ../../library/asyncio-eventloop.rst:498 msgid "" "*remote_addr*, if given, is a ``(remote_host, remote_port)`` tuple used to " "connect the socket to a remote address. The *remote_host* and *remote_port*" " are looked up using :meth:`getaddrinfo`." msgstr "" -#: ../../library/asyncio-eventloop.rst:487 +#: ../../library/asyncio-eventloop.rst:502 msgid "" "*family*, *proto*, *flags* are the optional address family, protocol and " "flags to be passed through to :meth:`getaddrinfo` for *host* resolution. If " @@ -667,15 +689,7 @@ msgid "" "module constants." msgstr "" -#: ../../library/asyncio-eventloop.rst:492 -#: ../../library/asyncio-eventloop.rst:601 -msgid "" -"*reuse_address* tells the kernel to reuse a local socket in ``TIME_WAIT`` " -"state, without waiting for its natural timeout to expire. If not specified " -"will automatically be set to ``True`` on Unix." -msgstr "" - -#: ../../library/asyncio-eventloop.rst:497 +#: ../../library/asyncio-eventloop.rst:507 msgid "" "*reuse_port* tells the kernel to allow this endpoint to be bound to the same" " port as other existing endpoints are bound to, so long as they all set this" @@ -684,13 +698,13 @@ msgid "" "this capability is unsupported." msgstr "" -#: ../../library/asyncio-eventloop.rst:503 +#: ../../library/asyncio-eventloop.rst:513 msgid "" "*allow_broadcast* tells the kernel to allow this endpoint to send messages " "to the broadcast address." msgstr "" -#: ../../library/asyncio-eventloop.rst:506 +#: ../../library/asyncio-eventloop.rst:516 msgid "" "*sock* can optionally be specified in order to use a preexisting, already " "connected, :class:`socket.socket` object to be used by the transport. If " @@ -698,99 +712,105 @@ msgid "" ":const:`None`)." msgstr "" -#: ../../library/asyncio-eventloop.rst:511 +#: ../../library/asyncio-eventloop.rst:521 msgid "" "See :ref:`UDP echo client protocol ` and " ":ref:`UDP echo server protocol ` examples." msgstr "" -#: ../../library/asyncio-eventloop.rst:514 +#: ../../library/asyncio-eventloop.rst:524 msgid "" "The *family*, *proto*, *flags*, *reuse_address*, *reuse_port, " "*allow_broadcast*, and *sock* parameters were added." msgstr "" -#: ../../library/asyncio-eventloop.rst:518 +#: ../../library/asyncio-eventloop.rst:528 +msgid "" +"The *reuse_address* parameter is no longer supported due to security " +"concerns." +msgstr "" + +#: ../../library/asyncio-eventloop.rst:532 msgid "Added support for Windows." msgstr "" -#: ../../library/asyncio-eventloop.rst:525 +#: ../../library/asyncio-eventloop.rst:539 msgid "Create a Unix connection." msgstr "" -#: ../../library/asyncio-eventloop.rst:527 +#: ../../library/asyncio-eventloop.rst:541 msgid "" "The socket family will be :py:data:`~socket.AF_UNIX`; socket type will be " ":py:data:`~socket.SOCK_STREAM`." msgstr "" -#: ../../library/asyncio-eventloop.rst:532 +#: ../../library/asyncio-eventloop.rst:546 msgid "" "*path* is the name of a Unix domain socket and is required, unless a *sock* " "parameter is specified. Abstract Unix sockets, :class:`str`, " ":class:`bytes`, and :class:`~pathlib.Path` paths are supported." msgstr "" -#: ../../library/asyncio-eventloop.rst:537 +#: ../../library/asyncio-eventloop.rst:551 msgid "" "See the documentation of the :meth:`loop.create_connection` method for " "information about arguments to this method." msgstr "" -#: ../../library/asyncio-eventloop.rst:541 -#: ../../library/asyncio-eventloop.rst:661 -#: ../../library/asyncio-eventloop.rst:1017 +#: ../../library/asyncio-eventloop.rst:555 +#: ../../library/asyncio-eventloop.rst:675 +#: ../../library/asyncio-eventloop.rst:1031 msgid ":ref:`Availability `: Unix." msgstr ":ref:`Availability `: Unix." -#: ../../library/asyncio-eventloop.rst:548 +#: ../../library/asyncio-eventloop.rst:562 msgid "The *path* parameter can now be a :term:`path-like object`." msgstr "" -#: ../../library/asyncio-eventloop.rst:552 +#: ../../library/asyncio-eventloop.rst:566 msgid "Creating network servers" msgstr "" -#: ../../library/asyncio-eventloop.rst:562 +#: ../../library/asyncio-eventloop.rst:576 msgid "" "Create a TCP server (socket type :data:`~socket.SOCK_STREAM`) listening on " "*port* of the *host* address." msgstr "" -#: ../../library/asyncio-eventloop.rst:565 +#: ../../library/asyncio-eventloop.rst:579 msgid "Returns a :class:`Server` object." msgstr "" -#: ../../library/asyncio-eventloop.rst:567 +#: ../../library/asyncio-eventloop.rst:581 msgid "Arguments:" msgstr "" -#: ../../library/asyncio-eventloop.rst:572 +#: ../../library/asyncio-eventloop.rst:586 msgid "" "The *host* parameter can be set to several types which determine where the " "server would be listening:" msgstr "" -#: ../../library/asyncio-eventloop.rst:575 +#: ../../library/asyncio-eventloop.rst:589 msgid "" "If *host* is a string, the TCP server is bound to a single network interface" " specified by *host*." msgstr "" -#: ../../library/asyncio-eventloop.rst:578 +#: ../../library/asyncio-eventloop.rst:592 msgid "" "If *host* is a sequence of strings, the TCP server is bound to all network " "interfaces specified by the sequence." msgstr "" -#: ../../library/asyncio-eventloop.rst:581 +#: ../../library/asyncio-eventloop.rst:595 msgid "" "If *host* is an empty string or ``None``, all interfaces are assumed and a " "list of multiple sockets will be returned (most likely one for IPv4 and " "another one for IPv6)." msgstr "" -#: ../../library/asyncio-eventloop.rst:585 +#: ../../library/asyncio-eventloop.rst:599 msgid "" "*family* can be set to either :data:`socket.AF_INET` or " ":data:`~socket.AF_INET6` to force the socket to use IPv4 or IPv6. If not " @@ -798,43 +818,50 @@ msgid "" ":data:`~socket.AF_UNSPEC`)." msgstr "" -#: ../../library/asyncio-eventloop.rst:590 +#: ../../library/asyncio-eventloop.rst:604 msgid "*flags* is a bitmask for :meth:`getaddrinfo`." msgstr "" -#: ../../library/asyncio-eventloop.rst:592 +#: ../../library/asyncio-eventloop.rst:606 msgid "" "*sock* can optionally be specified in order to use a preexisting socket " "object. If specified, *host* and *port* must not be specified." msgstr "" -#: ../../library/asyncio-eventloop.rst:595 +#: ../../library/asyncio-eventloop.rst:609 msgid "" "*backlog* is the maximum number of queued connections passed to " ":meth:`~socket.socket.listen` (defaults to 100)." msgstr "" -#: ../../library/asyncio-eventloop.rst:598 +#: ../../library/asyncio-eventloop.rst:612 msgid "" "*ssl* can be set to an :class:`~ssl.SSLContext` instance to enable TLS over " "the accepted connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:606 +#: ../../library/asyncio-eventloop.rst:615 +msgid "" +"*reuse_address* tells the kernel to reuse a local socket in ``TIME_WAIT`` " +"state, without waiting for its natural timeout to expire. If not specified " +"will automatically be set to ``True`` on Unix." +msgstr "" + +#: ../../library/asyncio-eventloop.rst:620 msgid "" "*reuse_port* tells the kernel to allow this endpoint to be bound to the same" " port as other existing endpoints are bound to, so long as they all set this" " flag when being created. This option is not supported on Windows." msgstr "" -#: ../../library/asyncio-eventloop.rst:611 +#: ../../library/asyncio-eventloop.rst:625 msgid "" "*ssl_handshake_timeout* is (for a TLS server) the time in seconds to wait " "for the TLS handshake to complete before aborting the connection. ``60.0`` " "seconds if ``None`` (default)." msgstr "" -#: ../../library/asyncio-eventloop.rst:615 +#: ../../library/asyncio-eventloop.rst:629 msgid "" "*start_serving* set to ``True`` (the default) causes the created server to " "start accepting connections immediately. When set to ``False``, the user " @@ -842,105 +869,105 @@ msgid "" " to make the server to start accepting connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:623 +#: ../../library/asyncio-eventloop.rst:637 msgid "Added *ssl_handshake_timeout* and *start_serving* parameters." msgstr "" -#: ../../library/asyncio-eventloop.rst:636 +#: ../../library/asyncio-eventloop.rst:650 msgid "The *host* parameter can be a sequence of strings." msgstr "" -#: ../../library/asyncio-eventloop.rst:640 +#: ../../library/asyncio-eventloop.rst:654 msgid "" "The :func:`start_server` function is a higher-level alternative API that " "returns a pair of :class:`StreamReader` and :class:`StreamWriter` that can " "be used in an async/await code." msgstr "" -#: ../../library/asyncio-eventloop.rst:649 +#: ../../library/asyncio-eventloop.rst:663 msgid "" "Similar to :meth:`loop.create_server` but works with the " ":py:data:`~socket.AF_UNIX` socket family." msgstr "" -#: ../../library/asyncio-eventloop.rst:652 +#: ../../library/asyncio-eventloop.rst:666 msgid "" "*path* is the name of a Unix domain socket, and is required, unless a *sock*" " argument is provided. Abstract Unix sockets, :class:`str`, :class:`bytes`," " and :class:`~pathlib.Path` paths are supported." msgstr "" -#: ../../library/asyncio-eventloop.rst:657 +#: ../../library/asyncio-eventloop.rst:671 msgid "" "See the documentation of the :meth:`loop.create_server` method for " "information about arguments to this method." msgstr "" -#: ../../library/asyncio-eventloop.rst:664 +#: ../../library/asyncio-eventloop.rst:678 msgid "The *ssl_handshake_timeout* and *start_serving* parameters." msgstr "" -#: ../../library/asyncio-eventloop.rst:668 +#: ../../library/asyncio-eventloop.rst:682 msgid "The *path* parameter can now be a :class:`~pathlib.Path` object." msgstr "" -#: ../../library/asyncio-eventloop.rst:673 +#: ../../library/asyncio-eventloop.rst:687 msgid "Wrap an already accepted connection into a transport/protocol pair." msgstr "" -#: ../../library/asyncio-eventloop.rst:675 +#: ../../library/asyncio-eventloop.rst:689 msgid "" "This method can be used by servers that accept connections outside of " "asyncio but that use asyncio to handle them." msgstr "" -#: ../../library/asyncio-eventloop.rst:678 -#: ../../library/asyncio-eventloop.rst:745 +#: ../../library/asyncio-eventloop.rst:692 +#: ../../library/asyncio-eventloop.rst:759 msgid "Parameters:" msgstr "" -#: ../../library/asyncio-eventloop.rst:683 +#: ../../library/asyncio-eventloop.rst:697 msgid "" "*sock* is a preexisting socket object returned from :meth:`socket.accept " "`." msgstr "" -#: ../../library/asyncio-eventloop.rst:686 +#: ../../library/asyncio-eventloop.rst:700 msgid "" "*ssl* can be set to an :class:`~ssl.SSLContext` to enable SSL over the " "accepted connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:689 +#: ../../library/asyncio-eventloop.rst:703 msgid "" "*ssl_handshake_timeout* is (for an SSL connection) the time in seconds to " "wait for the SSL handshake to complete before aborting the connection. " "``60.0`` seconds if ``None`` (default)." msgstr "" -#: ../../library/asyncio-eventloop.rst:693 +#: ../../library/asyncio-eventloop.rst:707 msgid "Returns a ``(transport, protocol)`` pair." msgstr "" -#: ../../library/asyncio-eventloop.rst:703 +#: ../../library/asyncio-eventloop.rst:717 msgid "Transferring files" msgstr "" -#: ../../library/asyncio-eventloop.rst:708 +#: ../../library/asyncio-eventloop.rst:722 msgid "" "Send a *file* over a *transport*. Return the total number of bytes sent." msgstr "" -#: ../../library/asyncio-eventloop.rst:711 +#: ../../library/asyncio-eventloop.rst:725 msgid "The method uses high-performance :meth:`os.sendfile` if available." msgstr "" -#: ../../library/asyncio-eventloop.rst:713 +#: ../../library/asyncio-eventloop.rst:727 msgid "*file* must be a regular file object opened in binary mode." msgstr "" -#: ../../library/asyncio-eventloop.rst:715 -#: ../../library/asyncio-eventloop.rst:905 +#: ../../library/asyncio-eventloop.rst:729 +#: ../../library/asyncio-eventloop.rst:919 msgid "" "*offset* tells from where to start reading the file. If specified, *count* " "is the total number of bytes to transmit as opposed to sending the file " @@ -949,98 +976,98 @@ msgid "" "obtain the actual number of bytes sent." msgstr "" -#: ../../library/asyncio-eventloop.rst:722 +#: ../../library/asyncio-eventloop.rst:736 msgid "" "*fallback* set to ``True`` makes asyncio to manually read and send the file " "when the platform does not support the sendfile system call (e.g. Windows or" " SSL socket on Unix)." msgstr "" -#: ../../library/asyncio-eventloop.rst:726 +#: ../../library/asyncio-eventloop.rst:740 msgid "" "Raise :exc:`SendfileNotAvailableError` if the system does not support the " "*sendfile* syscall and *fallback* is ``False``." msgstr "" -#: ../../library/asyncio-eventloop.rst:733 +#: ../../library/asyncio-eventloop.rst:747 msgid "TLS Upgrade" msgstr "" -#: ../../library/asyncio-eventloop.rst:739 +#: ../../library/asyncio-eventloop.rst:753 msgid "Upgrade an existing transport-based connection to TLS." msgstr "" -#: ../../library/asyncio-eventloop.rst:741 +#: ../../library/asyncio-eventloop.rst:755 msgid "" "Return a new transport instance, that the *protocol* must start using " "immediately after the *await*. The *transport* instance passed to the " "*start_tls* method should never be used again." msgstr "" -#: ../../library/asyncio-eventloop.rst:747 +#: ../../library/asyncio-eventloop.rst:761 msgid "" "*transport* and *protocol* instances that methods like " ":meth:`~loop.create_server` and :meth:`~loop.create_connection` return." msgstr "" -#: ../../library/asyncio-eventloop.rst:751 +#: ../../library/asyncio-eventloop.rst:765 msgid "*sslcontext*: a configured instance of :class:`~ssl.SSLContext`." msgstr "" -#: ../../library/asyncio-eventloop.rst:753 +#: ../../library/asyncio-eventloop.rst:767 msgid "" "*server_side* pass ``True`` when a server-side connection is being upgraded " "(like the one created by :meth:`~loop.create_server`)." msgstr "" -#: ../../library/asyncio-eventloop.rst:756 +#: ../../library/asyncio-eventloop.rst:770 msgid "" "*server_hostname*: sets or overrides the host name that the target server's " "certificate will be matched against." msgstr "" -#: ../../library/asyncio-eventloop.rst:767 +#: ../../library/asyncio-eventloop.rst:781 msgid "Watching file descriptors" msgstr "" -#: ../../library/asyncio-eventloop.rst:771 +#: ../../library/asyncio-eventloop.rst:785 msgid "" "Start monitoring the *fd* file descriptor for read availability and invoke " "*callback* with the specified arguments once *fd* is available for reading." msgstr "" -#: ../../library/asyncio-eventloop.rst:777 +#: ../../library/asyncio-eventloop.rst:791 msgid "Stop monitoring the *fd* file descriptor for read availability." msgstr "" -#: ../../library/asyncio-eventloop.rst:781 +#: ../../library/asyncio-eventloop.rst:795 msgid "" "Start monitoring the *fd* file descriptor for write availability and invoke " "*callback* with the specified arguments once *fd* is available for writing." msgstr "" -#: ../../library/asyncio-eventloop.rst:785 -#: ../../library/asyncio-eventloop.rst:1004 +#: ../../library/asyncio-eventloop.rst:799 +#: ../../library/asyncio-eventloop.rst:1018 msgid "" "Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *callback*." msgstr "" -#: ../../library/asyncio-eventloop.rst:790 +#: ../../library/asyncio-eventloop.rst:804 msgid "Stop monitoring the *fd* file descriptor for write availability." msgstr "" -#: ../../library/asyncio-eventloop.rst:792 +#: ../../library/asyncio-eventloop.rst:806 msgid "" "See also :ref:`Platform Support ` section for some" " limitations of these methods." msgstr "" -#: ../../library/asyncio-eventloop.rst:797 +#: ../../library/asyncio-eventloop.rst:811 msgid "Working with socket objects directly" msgstr "" -#: ../../library/asyncio-eventloop.rst:799 +#: ../../library/asyncio-eventloop.rst:813 msgid "" "In general, protocol implementations that use transport-based APIs such as " ":meth:`loop.create_connection` and :meth:`loop.create_server` are faster " @@ -1049,49 +1076,49 @@ msgid "" ":class:`~socket.socket` objects directly is more convenient." msgstr "" -#: ../../library/asyncio-eventloop.rst:808 +#: ../../library/asyncio-eventloop.rst:822 msgid "" "Receive up to *nbytes* from *sock*. Asynchronous version of " ":meth:`socket.recv() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:811 +#: ../../library/asyncio-eventloop.rst:825 msgid "Return the received data as a bytes object." msgstr "" -#: ../../library/asyncio-eventloop.rst:813 #: ../../library/asyncio-eventloop.rst:827 -#: ../../library/asyncio-eventloop.rst:842 -#: ../../library/asyncio-eventloop.rst:855 -#: ../../library/asyncio-eventloop.rst:881 -#: ../../library/asyncio-eventloop.rst:919 +#: ../../library/asyncio-eventloop.rst:841 +#: ../../library/asyncio-eventloop.rst:856 +#: ../../library/asyncio-eventloop.rst:869 +#: ../../library/asyncio-eventloop.rst:895 +#: ../../library/asyncio-eventloop.rst:933 msgid "*sock* must be a non-blocking socket." msgstr "" -#: ../../library/asyncio-eventloop.rst:815 +#: ../../library/asyncio-eventloop.rst:829 msgid "" "Even though this method was always documented as a coroutine method, " "releases before Python 3.7 returned a :class:`Future`. Since Python 3.7 this" " is an ``async def`` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:822 +#: ../../library/asyncio-eventloop.rst:836 msgid "" "Receive data from *sock* into the *buf* buffer. Modeled after the blocking " ":meth:`socket.recv_into() ` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:825 +#: ../../library/asyncio-eventloop.rst:839 msgid "Return the number of bytes written to the buffer." msgstr "" -#: ../../library/asyncio-eventloop.rst:833 +#: ../../library/asyncio-eventloop.rst:847 msgid "" "Send *data* to the *sock* socket. Asynchronous version of " ":meth:`socket.sendall() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:836 +#: ../../library/asyncio-eventloop.rst:850 msgid "" "This method continues to send to the socket until either all data in *data* " "has been sent or an error occurs. ``None`` is returned on success. On " @@ -1100,23 +1127,23 @@ msgid "" "the connection." msgstr "" -#: ../../library/asyncio-eventloop.rst:844 +#: ../../library/asyncio-eventloop.rst:858 msgid "" "Even though the method was always documented as a coroutine method, before " "Python 3.7 it returned an :class:`Future`. Since Python 3.7, this is an " "``async def`` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:851 +#: ../../library/asyncio-eventloop.rst:865 msgid "Connect *sock* to a remote socket at *address*." msgstr "" -#: ../../library/asyncio-eventloop.rst:853 +#: ../../library/asyncio-eventloop.rst:867 msgid "" "Asynchronous version of :meth:`socket.connect() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:857 +#: ../../library/asyncio-eventloop.rst:871 msgid "" "``address`` no longer needs to be resolved. ``sock_connect`` will try to " "check if the *address* is already resolved by calling " @@ -1124,19 +1151,19 @@ msgid "" "resolve the *address*." msgstr "" -#: ../../library/asyncio-eventloop.rst:866 +#: ../../library/asyncio-eventloop.rst:880 msgid "" ":meth:`loop.create_connection` and :func:`asyncio.open_connection() " "`." msgstr "" -#: ../../library/asyncio-eventloop.rst:872 +#: ../../library/asyncio-eventloop.rst:886 msgid "" "Accept a connection. Modeled after the blocking :meth:`socket.accept() " "` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:875 +#: ../../library/asyncio-eventloop.rst:889 msgid "" "The socket must be bound to an address and listening for connections. The " "return value is a pair ``(conn, address)`` where *conn* is a *new* socket " @@ -1144,64 +1171,64 @@ msgid "" "the address bound to the socket on the other end of the connection." msgstr "" -#: ../../library/asyncio-eventloop.rst:883 +#: ../../library/asyncio-eventloop.rst:897 msgid "" "Even though the method was always documented as a coroutine method, before " "Python 3.7 it returned a :class:`Future`. Since Python 3.7, this is an " "``async def`` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:890 +#: ../../library/asyncio-eventloop.rst:904 msgid ":meth:`loop.create_server` and :func:`start_server`." msgstr "" -#: ../../library/asyncio-eventloop.rst:895 +#: ../../library/asyncio-eventloop.rst:909 msgid "" "Send a file using high-performance :mod:`os.sendfile` if possible. Return " "the total number of bytes sent." msgstr "" -#: ../../library/asyncio-eventloop.rst:898 +#: ../../library/asyncio-eventloop.rst:912 msgid "" "Asynchronous version of :meth:`socket.sendfile() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:900 +#: ../../library/asyncio-eventloop.rst:914 msgid "" "*sock* must be a non-blocking :const:`socket.SOCK_STREAM` " ":class:`~socket.socket`." msgstr "" -#: ../../library/asyncio-eventloop.rst:903 +#: ../../library/asyncio-eventloop.rst:917 msgid "*file* must be a regular file object open in binary mode." msgstr "" -#: ../../library/asyncio-eventloop.rst:912 +#: ../../library/asyncio-eventloop.rst:926 msgid "" "*fallback*, when set to ``True``, makes asyncio manually read and send the " "file when the platform does not support the sendfile syscall (e.g. Windows " "or SSL socket on Unix)." msgstr "" -#: ../../library/asyncio-eventloop.rst:916 +#: ../../library/asyncio-eventloop.rst:930 msgid "" "Raise :exc:`SendfileNotAvailableError` if the system does not support " "*sendfile* syscall and *fallback* is ``False``." msgstr "" -#: ../../library/asyncio-eventloop.rst:925 +#: ../../library/asyncio-eventloop.rst:939 msgid "DNS" msgstr "DNS" -#: ../../library/asyncio-eventloop.rst:930 +#: ../../library/asyncio-eventloop.rst:944 msgid "Asynchronous version of :meth:`socket.getaddrinfo`." msgstr "" -#: ../../library/asyncio-eventloop.rst:934 +#: ../../library/asyncio-eventloop.rst:948 msgid "Asynchronous version of :meth:`socket.getnameinfo`." msgstr "" -#: ../../library/asyncio-eventloop.rst:936 +#: ../../library/asyncio-eventloop.rst:950 msgid "" "Both *getaddrinfo* and *getnameinfo* methods were always documented to " "return a coroutine, but prior to Python 3.7 they were, in fact, returning " @@ -1209,67 +1236,67 @@ msgid "" "coroutines." msgstr "" -#: ../../library/asyncio-eventloop.rst:944 +#: ../../library/asyncio-eventloop.rst:958 msgid "Working with pipes" msgstr "" -#: ../../library/asyncio-eventloop.rst:948 +#: ../../library/asyncio-eventloop.rst:962 msgid "Register the read end of *pipe* in the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:953 +#: ../../library/asyncio-eventloop.rst:967 msgid "*pipe* is a :term:`file-like object `." msgstr "" -#: ../../library/asyncio-eventloop.rst:955 +#: ../../library/asyncio-eventloop.rst:969 msgid "" "Return pair ``(transport, protocol)``, where *transport* supports the " ":class:`ReadTransport` interface and *protocol* is an object instantiated by" " the *protocol_factory*." msgstr "" -#: ../../library/asyncio-eventloop.rst:959 -#: ../../library/asyncio-eventloop.rst:975 +#: ../../library/asyncio-eventloop.rst:973 +#: ../../library/asyncio-eventloop.rst:989 msgid "" "With :class:`SelectorEventLoop` event loop, the *pipe* is set to non-" "blocking mode." msgstr "" -#: ../../library/asyncio-eventloop.rst:964 +#: ../../library/asyncio-eventloop.rst:978 msgid "Register the write end of *pipe* in the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:969 +#: ../../library/asyncio-eventloop.rst:983 msgid "*pipe* is :term:`file-like object `." msgstr "" -#: ../../library/asyncio-eventloop.rst:971 +#: ../../library/asyncio-eventloop.rst:985 msgid "" "Return pair ``(transport, protocol)``, where *transport* supports " ":class:`WriteTransport` interface and *protocol* is an object instantiated " "by the *protocol_factory*." msgstr "" -#: ../../library/asyncio-eventloop.rst:980 +#: ../../library/asyncio-eventloop.rst:994 msgid "" ":class:`SelectorEventLoop` does not support the above methods on Windows. " "Use :class:`ProactorEventLoop` instead for Windows." msgstr "" -#: ../../library/asyncio-eventloop.rst:985 +#: ../../library/asyncio-eventloop.rst:999 msgid "" "The :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell` methods." msgstr "" -#: ../../library/asyncio-eventloop.rst:990 +#: ../../library/asyncio-eventloop.rst:1004 msgid "Unix signals" msgstr "" -#: ../../library/asyncio-eventloop.rst:994 +#: ../../library/asyncio-eventloop.rst:1008 msgid "Set *callback* as the handler for the *signum* signal." msgstr "" -#: ../../library/asyncio-eventloop.rst:996 +#: ../../library/asyncio-eventloop.rst:1010 msgid "" "The callback will be invoked by *loop*, along with other queued callbacks " "and runnable coroutines of that event loop. Unlike signal handlers " @@ -1277,57 +1304,57 @@ msgid "" "function is allowed to interact with the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1001 +#: ../../library/asyncio-eventloop.rst:1015 msgid "" "Raise :exc:`ValueError` if the signal number is invalid or uncatchable. " "Raise :exc:`RuntimeError` if there is a problem setting up the handler." msgstr "" -#: ../../library/asyncio-eventloop.rst:1007 +#: ../../library/asyncio-eventloop.rst:1021 msgid "" "Like :func:`signal.signal`, this function must be invoked in the main " "thread." msgstr "" -#: ../../library/asyncio-eventloop.rst:1012 +#: ../../library/asyncio-eventloop.rst:1026 msgid "Remove the handler for the *sig* signal." msgstr "" -#: ../../library/asyncio-eventloop.rst:1014 +#: ../../library/asyncio-eventloop.rst:1028 msgid "" "Return ``True`` if the signal handler was removed, or ``False`` if no " "handler was set for the given signal." msgstr "" -#: ../../library/asyncio-eventloop.rst:1021 +#: ../../library/asyncio-eventloop.rst:1035 msgid "The :mod:`signal` module." msgstr "" -#: ../../library/asyncio-eventloop.rst:1025 +#: ../../library/asyncio-eventloop.rst:1039 msgid "Executing code in thread or process pools" msgstr "" -#: ../../library/asyncio-eventloop.rst:1029 +#: ../../library/asyncio-eventloop.rst:1043 msgid "Arrange for *func* to be called in the specified executor." msgstr "" -#: ../../library/asyncio-eventloop.rst:1031 +#: ../../library/asyncio-eventloop.rst:1045 msgid "" "The *executor* argument should be an :class:`concurrent.futures.Executor` " "instance. The default executor is used if *executor* is ``None``." msgstr "" -#: ../../library/asyncio-eventloop.rst:1075 +#: ../../library/asyncio-eventloop.rst:1089 msgid "This method returns a :class:`asyncio.Future` object." msgstr "" -#: ../../library/asyncio-eventloop.rst:1077 +#: ../../library/asyncio-eventloop.rst:1091 msgid "" "Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *func*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1080 +#: ../../library/asyncio-eventloop.rst:1094 msgid "" ":meth:`loop.run_in_executor` no longer configures the ``max_workers`` of the" " thread pool executor it creates, instead leaving it up to the thread pool " @@ -1335,39 +1362,39 @@ msgid "" "default." msgstr "" -#: ../../library/asyncio-eventloop.rst:1089 +#: ../../library/asyncio-eventloop.rst:1103 msgid "" "Set *executor* as the default executor used by :meth:`run_in_executor`. " "*executor* should be an instance of " ":class:`~concurrent.futures.ThreadPoolExecutor`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1093 +#: ../../library/asyncio-eventloop.rst:1107 msgid "" "Using an executor that is not an instance of " ":class:`~concurrent.futures.ThreadPoolExecutor` is deprecated and will " "trigger an error in Python 3.9." msgstr "" -#: ../../library/asyncio-eventloop.rst:1098 +#: ../../library/asyncio-eventloop.rst:1112 msgid "" "*executor* must be an instance of " ":class:`concurrent.futures.ThreadPoolExecutor`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1103 +#: ../../library/asyncio-eventloop.rst:1117 msgid "Error Handling API" msgstr "" -#: ../../library/asyncio-eventloop.rst:1105 +#: ../../library/asyncio-eventloop.rst:1119 msgid "Allows customizing how exceptions are handled in the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1109 +#: ../../library/asyncio-eventloop.rst:1123 msgid "Set *handler* as the new event loop exception handler." msgstr "" -#: ../../library/asyncio-eventloop.rst:1111 +#: ../../library/asyncio-eventloop.rst:1125 msgid "" "If *handler* is ``None``, the default exception handler will be set. " "Otherwise, *handler* must be a callable with the signature matching ``(loop," @@ -1377,147 +1404,147 @@ msgid "" "context)." msgstr "" -#: ../../library/asyncio-eventloop.rst:1121 +#: ../../library/asyncio-eventloop.rst:1135 msgid "" "Return the current exception handler, or ``None`` if no custom exception " "handler was set." msgstr "" -#: ../../library/asyncio-eventloop.rst:1128 +#: ../../library/asyncio-eventloop.rst:1142 msgid "Default exception handler." msgstr "" -#: ../../library/asyncio-eventloop.rst:1130 +#: ../../library/asyncio-eventloop.rst:1144 msgid "" "This is called when an exception occurs and no exception handler is set. " "This can be called by a custom exception handler that wants to defer to the " "default handler behavior." msgstr "" -#: ../../library/asyncio-eventloop.rst:1134 +#: ../../library/asyncio-eventloop.rst:1148 msgid "" "*context* parameter has the same meaning as in " ":meth:`call_exception_handler`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1139 +#: ../../library/asyncio-eventloop.rst:1153 msgid "Call the current event loop exception handler." msgstr "" -#: ../../library/asyncio-eventloop.rst:1141 +#: ../../library/asyncio-eventloop.rst:1155 msgid "" "*context* is a ``dict`` object containing the following keys (new keys may " "be introduced in future Python versions):" msgstr "" -#: ../../library/asyncio-eventloop.rst:1144 +#: ../../library/asyncio-eventloop.rst:1158 msgid "'message': Error message;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1145 +#: ../../library/asyncio-eventloop.rst:1159 msgid "'exception' (optional): Exception object;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1146 +#: ../../library/asyncio-eventloop.rst:1160 msgid "'future' (optional): :class:`asyncio.Future` instance;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1147 +#: ../../library/asyncio-eventloop.rst:1161 msgid "'handle' (optional): :class:`asyncio.Handle` instance;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1148 +#: ../../library/asyncio-eventloop.rst:1162 msgid "'protocol' (optional): :ref:`Protocol ` instance;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1149 +#: ../../library/asyncio-eventloop.rst:1163 msgid "'transport' (optional): :ref:`Transport ` instance;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1150 +#: ../../library/asyncio-eventloop.rst:1164 msgid "'socket' (optional): :class:`socket.socket` instance." msgstr "" -#: ../../library/asyncio-eventloop.rst:1154 +#: ../../library/asyncio-eventloop.rst:1168 msgid "" "This method should not be overloaded in subclassed event loops. For custom " "exception handling, use the :meth:`set_exception_handler()` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:1159 +#: ../../library/asyncio-eventloop.rst:1173 msgid "Enabling debug mode" msgstr "" -#: ../../library/asyncio-eventloop.rst:1163 +#: ../../library/asyncio-eventloop.rst:1177 msgid "Get the debug mode (:class:`bool`) of the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1165 +#: ../../library/asyncio-eventloop.rst:1179 msgid "" "The default value is ``True`` if the environment variable " ":envvar:`PYTHONASYNCIODEBUG` is set to a non-empty string, ``False`` " "otherwise." msgstr "" -#: ../../library/asyncio-eventloop.rst:1171 +#: ../../library/asyncio-eventloop.rst:1185 msgid "Set the debug mode of the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1175 +#: ../../library/asyncio-eventloop.rst:1189 msgid "" "The new ``-X dev`` command line option can now also be used to enable the " "debug mode." msgstr "" -#: ../../library/asyncio-eventloop.rst:1180 +#: ../../library/asyncio-eventloop.rst:1194 msgid "The :ref:`debug mode of asyncio `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1184 +#: ../../library/asyncio-eventloop.rst:1198 msgid "Running Subprocesses" msgstr "" -#: ../../library/asyncio-eventloop.rst:1186 +#: ../../library/asyncio-eventloop.rst:1200 msgid "" "Methods described in this subsections are low-level. In regular async/await" " code consider using the high-level :func:`asyncio.create_subprocess_shell` " "and :func:`asyncio.create_subprocess_exec` convenience functions instead." msgstr "" -#: ../../library/asyncio-eventloop.rst:1193 +#: ../../library/asyncio-eventloop.rst:1207 msgid "" "The default asyncio event loop on **Windows** does not support subprocesses." " See :ref:`Subprocess Support on Windows ` for " "details." msgstr "" -#: ../../library/asyncio-eventloop.rst:1201 +#: ../../library/asyncio-eventloop.rst:1215 msgid "" "Create a subprocess from one or more string arguments specified by *args*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1204 +#: ../../library/asyncio-eventloop.rst:1218 msgid "*args* must be a list of strings represented by:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1206 +#: ../../library/asyncio-eventloop.rst:1220 msgid ":class:`str`;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1207 +#: ../../library/asyncio-eventloop.rst:1221 msgid "" "or :class:`bytes`, encoded to the :ref:`filesystem encoding `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1210 +#: ../../library/asyncio-eventloop.rst:1224 msgid "" "The first string specifies the program executable, and the remaining strings" " specify the arguments. Together, string arguments form the ``argv`` of the" " program." msgstr "" -#: ../../library/asyncio-eventloop.rst:1214 +#: ../../library/asyncio-eventloop.rst:1228 msgid "" "This is similar to the standard library :class:`subprocess.Popen` class " "called with ``shell=False`` and the list of strings passed as the first " @@ -1525,136 +1552,136 @@ msgid "" "which is list of strings, *subprocess_exec* takes multiple string arguments." msgstr "" -#: ../../library/asyncio-eventloop.rst:1220 +#: ../../library/asyncio-eventloop.rst:1234 msgid "" "The *protocol_factory* must be a callable returning a subclass of the " ":class:`asyncio.SubprocessProtocol` class." msgstr "" -#: ../../library/asyncio-eventloop.rst:1223 +#: ../../library/asyncio-eventloop.rst:1237 msgid "Other parameters:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1225 +#: ../../library/asyncio-eventloop.rst:1239 msgid "*stdin* can be any of these:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1227 +#: ../../library/asyncio-eventloop.rst:1241 msgid "" "a file-like object representing a pipe to be connected to the subprocess's " "standard input stream using :meth:`~loop.connect_write_pipe`" msgstr "" -#: ../../library/asyncio-eventloop.rst:1230 -#: ../../library/asyncio-eventloop.rst:1242 -#: ../../library/asyncio-eventloop.rst:1254 +#: ../../library/asyncio-eventloop.rst:1244 +#: ../../library/asyncio-eventloop.rst:1256 +#: ../../library/asyncio-eventloop.rst:1268 msgid "" "the :const:`subprocess.PIPE` constant (default) which will create a new pipe" " and connect it," msgstr "" -#: ../../library/asyncio-eventloop.rst:1232 -#: ../../library/asyncio-eventloop.rst:1244 -#: ../../library/asyncio-eventloop.rst:1256 +#: ../../library/asyncio-eventloop.rst:1246 +#: ../../library/asyncio-eventloop.rst:1258 +#: ../../library/asyncio-eventloop.rst:1270 msgid "" "the value ``None`` which will make the subprocess inherit the file " "descriptor from this process" msgstr "" -#: ../../library/asyncio-eventloop.rst:1234 -#: ../../library/asyncio-eventloop.rst:1246 -#: ../../library/asyncio-eventloop.rst:1258 +#: ../../library/asyncio-eventloop.rst:1248 +#: ../../library/asyncio-eventloop.rst:1260 +#: ../../library/asyncio-eventloop.rst:1272 msgid "" "the :const:`subprocess.DEVNULL` constant which indicates that the special " ":data:`os.devnull` file will be used" msgstr "" -#: ../../library/asyncio-eventloop.rst:1237 +#: ../../library/asyncio-eventloop.rst:1251 msgid "*stdout* can be any of these:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1239 +#: ../../library/asyncio-eventloop.rst:1253 msgid "" "a file-like object representing a pipe to be connected to the subprocess's " "standard output stream using :meth:`~loop.connect_write_pipe`" msgstr "" -#: ../../library/asyncio-eventloop.rst:1249 +#: ../../library/asyncio-eventloop.rst:1263 msgid "*stderr* can be any of these:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1251 +#: ../../library/asyncio-eventloop.rst:1265 msgid "" "a file-like object representing a pipe to be connected to the subprocess's " "standard error stream using :meth:`~loop.connect_write_pipe`" msgstr "" -#: ../../library/asyncio-eventloop.rst:1260 +#: ../../library/asyncio-eventloop.rst:1274 msgid "" "the :const:`subprocess.STDOUT` constant which will connect the standard " "error stream to the process' standard output stream" msgstr "" -#: ../../library/asyncio-eventloop.rst:1263 +#: ../../library/asyncio-eventloop.rst:1277 msgid "" "All other keyword arguments are passed to :class:`subprocess.Popen` without " "interpretation, except for *bufsize*, *universal_newlines*, *shell*, *text*," " *encoding* and *errors*, which should not be specified at all." msgstr "" -#: ../../library/asyncio-eventloop.rst:1268 +#: ../../library/asyncio-eventloop.rst:1282 msgid "" "The ``asyncio`` subprocess API does not support decoding the streams as " "text. :func:`bytes.decode` can be used to convert the bytes returned from " "the stream to text." msgstr "" -#: ../../library/asyncio-eventloop.rst:1272 +#: ../../library/asyncio-eventloop.rst:1286 msgid "" "See the constructor of the :class:`subprocess.Popen` class for documentation" " on other arguments." msgstr "" -#: ../../library/asyncio-eventloop.rst:1275 +#: ../../library/asyncio-eventloop.rst:1289 msgid "" "Returns a pair of ``(transport, protocol)``, where *transport* conforms to " "the :class:`asyncio.SubprocessTransport` base class and *protocol* is an " "object instantiated by the *protocol_factory*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1283 +#: ../../library/asyncio-eventloop.rst:1297 msgid "" "Create a subprocess from *cmd*, which can be a :class:`str` or a " ":class:`bytes` string encoded to the :ref:`filesystem encoding `, using the platform's \"shell\" syntax." msgstr "" -#: ../../library/asyncio-eventloop.rst:1288 +#: ../../library/asyncio-eventloop.rst:1302 msgid "" "This is similar to the standard library :class:`subprocess.Popen` class " "called with ``shell=True``." msgstr "" -#: ../../library/asyncio-eventloop.rst:1291 +#: ../../library/asyncio-eventloop.rst:1305 msgid "" "The *protocol_factory* must be a callable returning a subclass of the " ":class:`SubprocessProtocol` class." msgstr "" -#: ../../library/asyncio-eventloop.rst:1294 +#: ../../library/asyncio-eventloop.rst:1308 msgid "" "See :meth:`~loop.subprocess_exec` for more details about the remaining " "arguments." msgstr "" -#: ../../library/asyncio-eventloop.rst:1297 +#: ../../library/asyncio-eventloop.rst:1311 msgid "" "Returns a pair of ``(transport, protocol)``, where *transport* conforms to " "the :class:`SubprocessTransport` base class and *protocol* is an object " "instantiated by the *protocol_factory*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1302 +#: ../../library/asyncio-eventloop.rst:1316 msgid "" "It is the application's responsibility to ensure that all whitespace and " "special characters are quoted appropriately to avoid `shell injection " @@ -1664,105 +1691,105 @@ msgid "" "used to construct shell commands." msgstr "" -#: ../../library/asyncio-eventloop.rst:1311 +#: ../../library/asyncio-eventloop.rst:1325 msgid "Callback Handles" msgstr "" -#: ../../library/asyncio-eventloop.rst:1315 +#: ../../library/asyncio-eventloop.rst:1329 msgid "" "A callback wrapper object returned by :meth:`loop.call_soon`, " ":meth:`loop.call_soon_threadsafe`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1320 +#: ../../library/asyncio-eventloop.rst:1334 msgid "" "Cancel the callback. If the callback has already been canceled or executed," " this method has no effect." msgstr "" -#: ../../library/asyncio-eventloop.rst:1325 +#: ../../library/asyncio-eventloop.rst:1339 msgid "Return ``True`` if the callback was cancelled." msgstr "" -#: ../../library/asyncio-eventloop.rst:1331 +#: ../../library/asyncio-eventloop.rst:1345 msgid "" "A callback wrapper object returned by :meth:`loop.call_later`, and " ":meth:`loop.call_at`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1334 +#: ../../library/asyncio-eventloop.rst:1348 msgid "This class is a subclass of :class:`Handle`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1338 +#: ../../library/asyncio-eventloop.rst:1352 msgid "Return a scheduled callback time as :class:`float` seconds." msgstr "" -#: ../../library/asyncio-eventloop.rst:1340 +#: ../../library/asyncio-eventloop.rst:1354 msgid "" "The time is an absolute timestamp, using the same time reference as " ":meth:`loop.time`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1347 +#: ../../library/asyncio-eventloop.rst:1361 msgid "Server Objects" msgstr "" -#: ../../library/asyncio-eventloop.rst:1349 +#: ../../library/asyncio-eventloop.rst:1363 msgid "" "Server objects are created by :meth:`loop.create_server`, " ":meth:`loop.create_unix_server`, :func:`start_server`, and " ":func:`start_unix_server` functions." msgstr "" -#: ../../library/asyncio-eventloop.rst:1353 +#: ../../library/asyncio-eventloop.rst:1367 msgid "Do not instantiate the class directly." msgstr "" -#: ../../library/asyncio-eventloop.rst:1357 +#: ../../library/asyncio-eventloop.rst:1371 msgid "" "*Server* objects are asynchronous context managers. When used in an ``async" " with`` statement, it's guaranteed that the Server object is closed and not " "accepting new connections when the ``async with`` statement is completed::" msgstr "" -#: ../../library/asyncio-eventloop.rst:1370 +#: ../../library/asyncio-eventloop.rst:1384 msgid "Server object is an asynchronous context manager since Python 3.7." msgstr "" -#: ../../library/asyncio-eventloop.rst:1375 +#: ../../library/asyncio-eventloop.rst:1389 msgid "" "Stop serving: close listening sockets and set the :attr:`sockets` attribute " "to ``None``." msgstr "" -#: ../../library/asyncio-eventloop.rst:1378 +#: ../../library/asyncio-eventloop.rst:1392 msgid "" "The sockets that represent existing incoming client connections are left " "open." msgstr "" -#: ../../library/asyncio-eventloop.rst:1381 +#: ../../library/asyncio-eventloop.rst:1395 msgid "" "The server is closed asynchronously, use the :meth:`wait_closed` coroutine " "to wait until the server is closed." msgstr "" -#: ../../library/asyncio-eventloop.rst:1386 +#: ../../library/asyncio-eventloop.rst:1400 msgid "Return the event loop associated with the server object." msgstr "" -#: ../../library/asyncio-eventloop.rst:1392 +#: ../../library/asyncio-eventloop.rst:1406 msgid "Start accepting connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:1394 +#: ../../library/asyncio-eventloop.rst:1408 msgid "" "This method is idempotent, so it can be called when the server is already " "being serving." msgstr "" -#: ../../library/asyncio-eventloop.rst:1397 +#: ../../library/asyncio-eventloop.rst:1411 msgid "" "The *start_serving* keyword-only parameter to :meth:`loop.create_server` and" " :meth:`asyncio.start_server` allows creating a Server object that is not " @@ -1771,97 +1798,97 @@ msgid "" "accepting connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:1408 +#: ../../library/asyncio-eventloop.rst:1422 msgid "" "Start accepting connections until the coroutine is cancelled. Cancellation " "of ``serve_forever`` task causes the server to be closed." msgstr "" -#: ../../library/asyncio-eventloop.rst:1412 +#: ../../library/asyncio-eventloop.rst:1426 msgid "" "This method can be called if the server is already accepting connections. " "Only one ``serve_forever`` task can exist per one *Server* object." msgstr "" -#: ../../library/asyncio-eventloop.rst:1434 +#: ../../library/asyncio-eventloop.rst:1448 msgid "Return ``True`` if the server is accepting new connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:1440 +#: ../../library/asyncio-eventloop.rst:1454 msgid "Wait until the :meth:`close` method completes." msgstr "" -#: ../../library/asyncio-eventloop.rst:1444 +#: ../../library/asyncio-eventloop.rst:1458 msgid "List of :class:`socket.socket` objects the server is listening on." msgstr "" -#: ../../library/asyncio-eventloop.rst:1446 +#: ../../library/asyncio-eventloop.rst:1460 msgid "" "Prior to Python 3.7 ``Server.sockets`` used to return an internal list of " "server sockets directly. In 3.7 a copy of that list is returned." msgstr "" -#: ../../library/asyncio-eventloop.rst:1455 +#: ../../library/asyncio-eventloop.rst:1469 msgid "Event Loop Implementations" msgstr "" -#: ../../library/asyncio-eventloop.rst:1457 +#: ../../library/asyncio-eventloop.rst:1471 msgid "" "asyncio ships with two different event loop implementations: " ":class:`SelectorEventLoop` and :class:`ProactorEventLoop`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1460 +#: ../../library/asyncio-eventloop.rst:1474 msgid "" "By default asyncio is configured to use :class:`SelectorEventLoop` on Unix " "and :class:`ProactorEventLoop` on Windows." msgstr "" -#: ../../library/asyncio-eventloop.rst:1466 +#: ../../library/asyncio-eventloop.rst:1480 msgid "An event loop based on the :mod:`selectors` module." msgstr "" -#: ../../library/asyncio-eventloop.rst:1468 +#: ../../library/asyncio-eventloop.rst:1482 msgid "" "Uses the most efficient *selector* available for the given platform. It is " "also possible to manually configure the exact selector implementation to be " "used::" msgstr "" -#: ../../library/asyncio-eventloop.rst:1480 +#: ../../library/asyncio-eventloop.rst:1494 msgid ":ref:`Availability `: Unix, Windows." msgstr ":ref:`Availability `: Unix, Windows." -#: ../../library/asyncio-eventloop.rst:1485 +#: ../../library/asyncio-eventloop.rst:1499 msgid "An event loop for Windows that uses \"I/O Completion Ports\" (IOCP)." msgstr "" -#: ../../library/asyncio-eventloop.rst:1488 +#: ../../library/asyncio-eventloop.rst:1502 msgid ":ref:`Availability `: Windows." msgstr ":ref:`Availability `: Windows." -#: ../../library/asyncio-eventloop.rst:1491 +#: ../../library/asyncio-eventloop.rst:1505 msgid "" "`MSDN documentation on I/O Completion Ports `_." msgstr "" -#: ../../library/asyncio-eventloop.rst:1497 +#: ../../library/asyncio-eventloop.rst:1511 msgid "Abstract base class for asyncio-compliant event loops." msgstr "" -#: ../../library/asyncio-eventloop.rst:1499 +#: ../../library/asyncio-eventloop.rst:1513 msgid "" "The :ref:`Event Loop Methods ` section lists all methods" " that an alternative implementation of ``AbstractEventLoop`` should have " "defined." msgstr "" -#: ../../library/asyncio-eventloop.rst:1505 +#: ../../library/asyncio-eventloop.rst:1519 msgid "Examples" msgstr "Contoh-contoh" -#: ../../library/asyncio-eventloop.rst:1507 +#: ../../library/asyncio-eventloop.rst:1521 msgid "" "Note that all examples in this section **purposefully** show how to use the " "low-level event loop APIs, such as :meth:`loop.run_forever` and " @@ -1870,70 +1897,70 @@ msgid "" ":func:`asyncio.run`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1517 +#: ../../library/asyncio-eventloop.rst:1531 msgid "Hello World with call_soon()" msgstr "" -#: ../../library/asyncio-eventloop.rst:1519 +#: ../../library/asyncio-eventloop.rst:1533 msgid "" "An example using the :meth:`loop.call_soon` method to schedule a callback. " "The callback displays ``\"Hello World\"`` and then stops the event loop::" msgstr "" -#: ../../library/asyncio-eventloop.rst:1543 +#: ../../library/asyncio-eventloop.rst:1557 msgid "" "A similar :ref:`Hello World ` example created with a coroutine " "and the :func:`run` function." msgstr "" -#: ../../library/asyncio-eventloop.rst:1550 +#: ../../library/asyncio-eventloop.rst:1564 msgid "Display the current date with call_later()" msgstr "" -#: ../../library/asyncio-eventloop.rst:1552 +#: ../../library/asyncio-eventloop.rst:1566 msgid "" "An example of a callback displaying the current date every second. The " "callback uses the :meth:`loop.call_later` method to reschedule itself after " "5 seconds, and then stops the event loop::" msgstr "" -#: ../../library/asyncio-eventloop.rst:1580 +#: ../../library/asyncio-eventloop.rst:1594 msgid "" "A similar :ref:`current date ` example created with a" " coroutine and the :func:`run` function." msgstr "" -#: ../../library/asyncio-eventloop.rst:1587 +#: ../../library/asyncio-eventloop.rst:1601 msgid "Watch a file descriptor for read events" msgstr "" -#: ../../library/asyncio-eventloop.rst:1589 +#: ../../library/asyncio-eventloop.rst:1603 msgid "" "Wait until a file descriptor received some data using the " ":meth:`loop.add_reader` method and then close the event loop::" msgstr "" -#: ../../library/asyncio-eventloop.rst:1627 +#: ../../library/asyncio-eventloop.rst:1641 msgid "" "A similar :ref:`example ` using " "transports, protocols, and the :meth:`loop.create_connection` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:1631 +#: ../../library/asyncio-eventloop.rst:1645 msgid "" "Another similar :ref:`example ` " "using the high-level :func:`asyncio.open_connection` function and streams." msgstr "" -#: ../../library/asyncio-eventloop.rst:1639 +#: ../../library/asyncio-eventloop.rst:1653 msgid "Set signal handlers for SIGINT and SIGTERM" msgstr "" -#: ../../library/asyncio-eventloop.rst:1641 +#: ../../library/asyncio-eventloop.rst:1655 msgid "(This ``signals`` example only works on Unix.)" msgstr "" -#: ../../library/asyncio-eventloop.rst:1643 +#: ../../library/asyncio-eventloop.rst:1657 msgid "" "Register handlers for signals :py:data:`SIGINT` and :py:data:`SIGTERM` using" " the :meth:`loop.add_signal_handler` method::" diff --git a/library/asyncio-stream.po b/library/asyncio-stream.po index 35fa83a..e9277d2 100644 --- a/library/asyncio-stream.po +++ b/library/asyncio-stream.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-11 11:39+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 17:49+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -294,8 +294,8 @@ msgstr "" #: ../../library/asyncio-stream.rst:266 msgid "" -"Return *True* if the underlying transport supports the :meth:`write_eof` " -"method, *False* otherwise." +"Return ``True`` if the underlying transport supports the :meth:`write_eof` " +"method, ``False`` otherwise." msgstr "" #: ../../library/asyncio-stream.rst:271 diff --git a/library/audit_events.po b/library/audit_events.po index e3ef129..0caeec9 100644 --- a/library/audit_events.po +++ b/library/audit_events.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-27 12:02+0000\n" "PO-Revision-Date: 2019-09-01 14:38+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "" "This table contains all events raised by :func:`sys.audit` or " ":c:func:`PySys_Audit` calls throughout the CPython runtime and the standard " -"library." +"library. These calls were added in 3.8.0 or later." msgstr "" #: ../../library/audit_events.rst:12 diff --git a/library/ctypes.po b/library/ctypes.po index b1cafd8..0f2b6a6 100644 --- a/library/ctypes.po +++ b/library/ctypes.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-31 11:48+0000\n" +"POT-Creation-Date: 2019-11-19 11:59+0000\n" "PO-Revision-Date: 2017-02-16 23:05+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -217,7 +217,7 @@ msgid "" "learn more about :mod:`ctypes` data types." msgstr "" -#: ../../library/ctypes.rst:218 ../../library/ctypes.rst:2099 +#: ../../library/ctypes.rst:218 ../../library/ctypes.rst:2135 msgid "Fundamental data types" msgstr "" @@ -1201,7 +1201,7 @@ msgid "" "If no library can be found, returns ``None``." msgstr "" -#: ../../library/ctypes.rst:1277 ../../library/ctypes.rst:1887 +#: ../../library/ctypes.rst:1277 ../../library/ctypes.rst:1910 msgid "The exact functionality is system dependent." msgstr "" @@ -1493,11 +1493,24 @@ msgid "" "``name`` (the symbol's name as a string or integer)." msgstr "" -#: ../../library/ctypes.rst:1532 +#: ../../library/ctypes.rstNone +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.dlsym/handle`` with " +"arguments ``handle``, ``name``." +msgstr "" + +#: ../../library/ctypes.rst:1531 +msgid "" +"In cases when only the library handle is available rather than the object, " +"accessing a function raises an auditing event ``ctypes.dlsym/handle`` with " +"arguments ``handle`` (the raw library handle) and ``name``." +msgstr "" + +#: ../../library/ctypes.rst:1538 msgid "Foreign functions" msgstr "" -#: ../../library/ctypes.rst:1534 +#: ../../library/ctypes.rst:1540 msgid "" "As explained in the previous section, foreign functions can be accessed as " "attributes of loaded shared libraries. The function objects created in this" @@ -1506,29 +1519,29 @@ msgid "" "library loader. They are instances of a private class:" msgstr "" -#: ../../library/ctypes.rst:1543 +#: ../../library/ctypes.rst:1549 msgid "Base class for C callable foreign functions." msgstr "" -#: ../../library/ctypes.rst:1545 +#: ../../library/ctypes.rst:1551 msgid "" "Instances of foreign functions are also C compatible data types; they " "represent C function pointers." msgstr "" -#: ../../library/ctypes.rst:1548 +#: ../../library/ctypes.rst:1554 msgid "" "This behavior can be customized by assigning to special attributes of the " "foreign function object." msgstr "" -#: ../../library/ctypes.rst:1553 +#: ../../library/ctypes.rst:1559 msgid "" "Assign a ctypes type to specify the result type of the foreign function. Use" " ``None`` for :c:type:`void`, a function not returning anything." msgstr "" -#: ../../library/ctypes.rst:1556 +#: ../../library/ctypes.rst:1562 msgid "" "It is possible to assign a callable Python object that is not a ctypes type," " in this case the function is assumed to return a C :c:type:`int`, and the " @@ -1538,7 +1551,7 @@ msgid "" "callable to the :attr:`errcheck` attribute." msgstr "" -#: ../../library/ctypes.rst:1565 +#: ../../library/ctypes.rst:1571 msgid "" "Assign a tuple of ctypes types to specify the argument types that the " "function accepts. Functions using the ``stdcall`` calling convention can " @@ -1547,7 +1560,7 @@ msgid "" "unspecified arguments as well." msgstr "" -#: ../../library/ctypes.rst:1571 +#: ../../library/ctypes.rst:1577 msgid "" "When a foreign function is called, each actual argument is passed to the " ":meth:`from_param` class method of the items in the :attr:`argtypes` tuple, " @@ -1557,7 +1570,7 @@ msgid "" " object using ctypes conversion rules." msgstr "" -#: ../../library/ctypes.rst:1578 +#: ../../library/ctypes.rst:1584 msgid "" "New: It is now possible to put items in argtypes which are not ctypes types," " but each item must have a :meth:`from_param` method which returns a value " @@ -1565,48 +1578,76 @@ msgid "" " adapters that can adapt custom objects as function parameters." msgstr "" -#: ../../library/ctypes.rst:1585 +#: ../../library/ctypes.rst:1591 msgid "" "Assign a Python function or another callable to this attribute. The callable" " will be called with three or more arguments:" msgstr "" -#: ../../library/ctypes.rst:1592 +#: ../../library/ctypes.rst:1598 msgid "" "*result* is what the foreign function returns, as specified by the " ":attr:`restype` attribute." msgstr "" -#: ../../library/ctypes.rst:1595 +#: ../../library/ctypes.rst:1601 msgid "" "*func* is the foreign function object itself, this allows reusing the same " "callable object to check or post process the results of several functions." msgstr "" -#: ../../library/ctypes.rst:1599 +#: ../../library/ctypes.rst:1605 msgid "" "*arguments* is a tuple containing the parameters originally passed to the " "function call, this allows specializing the behavior on the arguments used." msgstr "" -#: ../../library/ctypes.rst:1603 +#: ../../library/ctypes.rst:1609 msgid "" "The object that this function returns will be returned from the foreign " "function call, but it can also check the result value and raise an exception" " if the foreign function call failed." msgstr "" -#: ../../library/ctypes.rst:1610 +#: ../../library/ctypes.rst:1616 msgid "" "This exception is raised when a foreign function call cannot convert one of " "the passed arguments." msgstr "" -#: ../../library/ctypes.rst:1617 +#: ../../library/ctypes.rstNone +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.seh_exception`` with " +"argument ``code``." +msgstr "" + +#: ../../library/ctypes.rst:1622 +msgid "" +"On Windows, when a foreign function call raises a system exception (for " +"example, due to an access violation), it will be captured and replaced with " +"a suitable Python exception. Further, an auditing event " +"``ctypes.seh_exception`` with argument ``code`` will be raised, allowing an " +"audit hook to replace the exception with its own." +msgstr "" + +#: ../../library/ctypes.rstNone +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.call_function`` with " +"arguments ``func_pointer``, ``arguments``." +msgstr "" + +#: ../../library/ctypes.rst:1630 +msgid "" +"Some ways to invoke foreign function calls may raise an auditing event " +"``ctypes.call_function`` with arguments ``function pointer`` and " +"``arguments``." +msgstr "" + +#: ../../library/ctypes.rst:1636 msgid "Function prototypes" msgstr "" -#: ../../library/ctypes.rst:1619 +#: ../../library/ctypes.rst:1638 msgid "" "Foreign functions can also be created by instantiating function prototypes. " "Function prototypes are similar to function prototypes in C; they describe a" @@ -1617,7 +1658,7 @@ msgid "" "``@wrapper`` syntax. See :ref:`ctypes-callback-functions` for examples." msgstr "" -#: ../../library/ctypes.rst:1630 +#: ../../library/ctypes.rst:1649 msgid "" "The returned function prototype creates functions that use the standard C " "calling convention. The function will release the GIL during the call. If " @@ -1627,7 +1668,7 @@ msgid "" "code." msgstr "" -#: ../../library/ctypes.rst:1640 +#: ../../library/ctypes.rst:1659 msgid "" "Windows only: The returned function prototype creates functions that use the" " ``stdcall`` calling convention, except on Windows CE where " @@ -1636,32 +1677,32 @@ msgid "" "same meaning as above." msgstr "" -#: ../../library/ctypes.rst:1649 +#: ../../library/ctypes.rst:1668 msgid "" "The returned function prototype creates functions that use the Python " "calling convention. The function will *not* release the GIL during the " "call." msgstr "" -#: ../../library/ctypes.rst:1652 +#: ../../library/ctypes.rst:1671 msgid "" "Function prototypes created by these factory functions can be instantiated " "in different ways, depending on the type and number of the parameters in the" " call:" msgstr "" -#: ../../library/ctypes.rst:1660 +#: ../../library/ctypes.rst:1679 msgid "" "Returns a foreign function at the specified address which must be an " "integer." msgstr "" -#: ../../library/ctypes.rst:1667 +#: ../../library/ctypes.rst:1686 msgid "" "Create a C callable function (a callback function) from a Python *callable*." msgstr "" -#: ../../library/ctypes.rst:1674 +#: ../../library/ctypes.rst:1693 msgid "" "Returns a foreign function exported by a shared library. *func_spec* must be" " a 2-tuple ``(name_or_ordinal, library)``. The first item is the name of the" @@ -1669,7 +1710,7 @@ msgid "" "small integer. The second item is the shared library instance." msgstr "" -#: ../../library/ctypes.rst:1684 +#: ../../library/ctypes.rst:1703 msgid "" "Returns a foreign function that will call a COM method. *vtbl_index* is the " "index into the virtual function table, a small non-negative integer. *name* " @@ -1677,85 +1718,85 @@ msgid "" "identifier which is used in extended error reporting." msgstr "" -#: ../../library/ctypes.rst:1689 +#: ../../library/ctypes.rst:1708 msgid "" "COM methods use a special calling convention: They require a pointer to the " "COM interface as first argument, in addition to those parameters that are " "specified in the :attr:`argtypes` tuple." msgstr "" -#: ../../library/ctypes.rst:1693 +#: ../../library/ctypes.rst:1712 msgid "" "The optional *paramflags* parameter creates foreign function wrappers with " "much more functionality than the features described above." msgstr "" -#: ../../library/ctypes.rst:1696 +#: ../../library/ctypes.rst:1715 msgid "*paramflags* must be a tuple of the same length as :attr:`argtypes`." msgstr "" -#: ../../library/ctypes.rst:1698 +#: ../../library/ctypes.rst:1717 msgid "" "Each item in this tuple contains further information about a parameter, it " "must be a tuple containing one, two, or three items." msgstr "" -#: ../../library/ctypes.rst:1701 +#: ../../library/ctypes.rst:1720 msgid "" "The first item is an integer containing a combination of direction flags for" " the parameter:" msgstr "" -#: ../../library/ctypes.rst:1705 +#: ../../library/ctypes.rst:1724 msgid "1" msgstr "1" -#: ../../library/ctypes.rst:1705 +#: ../../library/ctypes.rst:1724 msgid "Specifies an input parameter to the function." msgstr "" -#: ../../library/ctypes.rst:1708 +#: ../../library/ctypes.rst:1727 msgid "2" msgstr "2" -#: ../../library/ctypes.rst:1708 +#: ../../library/ctypes.rst:1727 msgid "Output parameter. The foreign function fills in a value." msgstr "" -#: ../../library/ctypes.rst:1711 +#: ../../library/ctypes.rst:1730 msgid "4" msgstr "4" -#: ../../library/ctypes.rst:1711 +#: ../../library/ctypes.rst:1730 msgid "Input parameter which defaults to the integer zero." msgstr "" -#: ../../library/ctypes.rst:1713 +#: ../../library/ctypes.rst:1732 msgid "" "The optional second item is the parameter name as string. If this is " "specified, the foreign function can be called with named parameters." msgstr "" -#: ../../library/ctypes.rst:1716 +#: ../../library/ctypes.rst:1735 msgid "The optional third item is the default value for this parameter." msgstr "" -#: ../../library/ctypes.rst:1718 +#: ../../library/ctypes.rst:1737 msgid "" "This example demonstrates how to wrap the Windows ``MessageBoxW`` function " "so that it supports default parameters and named arguments. The C " "declaration from the windows header file is this::" msgstr "" -#: ../../library/ctypes.rst:1729 ../../library/ctypes.rst:1752 +#: ../../library/ctypes.rst:1748 ../../library/ctypes.rst:1771 msgid "Here is the wrapping with :mod:`ctypes`::" msgstr "" -#: ../../library/ctypes.rst:1737 +#: ../../library/ctypes.rst:1756 msgid "The ``MessageBox`` foreign function can now be called in these ways::" msgstr "" -#: ../../library/ctypes.rst:1743 +#: ../../library/ctypes.rst:1762 msgid "" "A second example demonstrates output parameters. The win32 " "``GetWindowRect`` function retrieves the dimensions of a specified window by" @@ -1763,7 +1804,7 @@ msgid "" "is the C declaration::" msgstr "" -#: ../../library/ctypes.rst:1761 +#: ../../library/ctypes.rst:1780 msgid "" "Functions with output parameters will automatically return the output " "parameter value if there is a single one, or a tuple containing the output " @@ -1771,7 +1812,7 @@ msgid "" " now returns a RECT instance, when called." msgstr "" -#: ../../library/ctypes.rst:1766 +#: ../../library/ctypes.rst:1785 msgid "" "Output parameters can be combined with the :attr:`errcheck` protocol to do " "further output processing and error checking. The win32 ``GetWindowRect`` " @@ -1780,7 +1821,7 @@ msgid "" "call failed::" msgstr "" -#: ../../library/ctypes.rst:1779 +#: ../../library/ctypes.rst:1798 msgid "" "If the :attr:`errcheck` function returns the argument tuple it receives " "unchanged, :mod:`ctypes` continues the normal processing it does on the " @@ -1789,41 +1830,47 @@ msgid "" "and return them instead, the normal processing will no longer take place::" msgstr "" -#: ../../library/ctypes.rst:1798 +#: ../../library/ctypes.rst:1817 msgid "Utility functions" msgstr "" -#: ../../library/ctypes.rst:1802 +#: ../../library/ctypes.rst:1821 msgid "" "Returns the address of the memory buffer as integer. *obj* must be an " "instance of a ctypes type." msgstr "" -#: ../../library/ctypes.rst:1808 +#: ../../library/ctypes.rst:1824 +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.addressof`` with " +"argument ``obj``." +msgstr "" + +#: ../../library/ctypes.rst:1829 msgid "" "Returns the alignment requirements of a ctypes type. *obj_or_type* must be a" " ctypes type or instance." msgstr "" -#: ../../library/ctypes.rst:1814 +#: ../../library/ctypes.rst:1835 msgid "" "Returns a light-weight pointer to *obj*, which must be an instance of a " "ctypes type. *offset* defaults to zero, and must be an integer that will be" " added to the internal pointer value." msgstr "" -#: ../../library/ctypes.rst:1818 +#: ../../library/ctypes.rst:1839 msgid "``byref(obj, offset)`` corresponds to this C code::" msgstr "" -#: ../../library/ctypes.rst:1822 +#: ../../library/ctypes.rst:1843 msgid "" "The returned object can only be used as a foreign function call parameter. " "It behaves similar to ``pointer(obj)``, but the construction is a lot " "faster." msgstr "" -#: ../../library/ctypes.rst:1828 +#: ../../library/ctypes.rst:1849 msgid "" "This function is similar to the cast operator in C. It returns a new " "instance of *type* which points to the same memory block as *obj*. *type* " @@ -1831,19 +1878,19 @@ msgid "" "as a pointer." msgstr "" -#: ../../library/ctypes.rst:1836 +#: ../../library/ctypes.rst:1857 msgid "" "This function creates a mutable character buffer. The returned object is a " "ctypes array of :class:`c_char`." msgstr "" -#: ../../library/ctypes.rst:1839 +#: ../../library/ctypes.rst:1860 msgid "" "*init_or_size* must be an integer which specifies the size of the array, or " "a bytes object which will be used to initialize the array items." msgstr "" -#: ../../library/ctypes.rst:1842 +#: ../../library/ctypes.rst:1863 msgid "" "If a bytes object is specified as first argument, the buffer is made one " "item larger than its length so that the last element in the array is a NUL " @@ -1852,19 +1899,25 @@ msgid "" "not be used." msgstr "" -#: ../../library/ctypes.rst:1851 +#: ../../library/ctypes.rst:1868 +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.create_string_buffer`` " +"with arguments ``init``, ``size``." +msgstr "" + +#: ../../library/ctypes.rst:1873 msgid "" "This function creates a mutable unicode character buffer. The returned " "object is a ctypes array of :class:`c_wchar`." msgstr "" -#: ../../library/ctypes.rst:1854 +#: ../../library/ctypes.rst:1876 msgid "" "*init_or_size* must be an integer which specifies the size of the array, or " "a string which will be used to initialize the array items." msgstr "" -#: ../../library/ctypes.rst:1857 +#: ../../library/ctypes.rst:1879 msgid "" "If a string is specified as first argument, the buffer is made one item " "larger than the length of the string so that the last element in the array " @@ -1873,21 +1926,27 @@ msgid "" "should not be used." msgstr "" -#: ../../library/ctypes.rst:1867 +#: ../../library/ctypes.rst:1885 +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.create_unicode_buffer`` " +"with arguments ``init``, ``size``." +msgstr "" + +#: ../../library/ctypes.rst:1890 msgid "" "Windows only: This function is a hook which allows implementing in-process " "COM servers with ctypes. It is called from the DllCanUnloadNow function " "that the _ctypes extension dll exports." msgstr "" -#: ../../library/ctypes.rst:1874 +#: ../../library/ctypes.rst:1897 msgid "" "Windows only: This function is a hook which allows implementing in-process " "COM servers with ctypes. It is called from the DllGetClassObject function " "that the ``_ctypes`` extension dll exports." msgstr "" -#: ../../library/ctypes.rst:1882 +#: ../../library/ctypes.rst:1905 msgid "" "Try to find a library and return a pathname. *name* is the library name " "without any prefix like ``lib``, suffix like ``.so``, ``.dylib`` or version " @@ -1895,80 +1954,92 @@ msgid "" "If no library can be found, returns ``None``." msgstr "" -#: ../../library/ctypes.rst:1893 +#: ../../library/ctypes.rst:1916 msgid "" "Windows only: return the filename of the VC runtime library used by Python, " "and by the extension modules. If the name of the library cannot be " "determined, ``None`` is returned." msgstr "" -#: ../../library/ctypes.rst:1897 +#: ../../library/ctypes.rst:1920 msgid "" "If you need to free memory, for example, allocated by an extension module " "with a call to the ``free(void *)``, it is important that you use the " "function in the same library that allocated the memory." msgstr "" -#: ../../library/ctypes.rst:1904 +#: ../../library/ctypes.rst:1927 msgid "" "Windows only: Returns a textual description of the error code *code*. If no" " error code is specified, the last error code is used by calling the Windows" " api function GetLastError." msgstr "" -#: ../../library/ctypes.rst:1911 +#: ../../library/ctypes.rst:1934 msgid "" "Windows only: Returns the last error code set by Windows in the calling " "thread. This function calls the Windows `GetLastError()` function directly, " "it does not return the ctypes-private copy of the error code." msgstr "" -#: ../../library/ctypes.rst:1917 +#: ../../library/ctypes.rst:1940 msgid "" "Returns the current value of the ctypes-private copy of the system " ":data:`errno` variable in the calling thread." msgstr "" -#: ../../library/ctypes.rst:1922 +#: ../../library/ctypes.rst:1943 +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.get_errno`` with no " +"arguments." +msgstr "" + +#: ../../library/ctypes.rst:1947 msgid "" "Windows only: returns the current value of the ctypes-private copy of the " "system :data:`LastError` variable in the calling thread." msgstr "" -#: ../../library/ctypes.rst:1927 +#: ../../library/ctypes.rst:1950 +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.get_last_error`` with no" +" arguments." +msgstr "" + +#: ../../library/ctypes.rst:1954 msgid "" "Same as the standard C memmove library function: copies *count* bytes from " "*src* to *dst*. *dst* and *src* must be integers or ctypes instances that " "can be converted to pointers." msgstr "" -#: ../../library/ctypes.rst:1934 +#: ../../library/ctypes.rst:1961 msgid "" "Same as the standard C memset library function: fills the memory block at " "address *dst* with *count* bytes of value *c*. *dst* must be an integer " "specifying an address, or a ctypes instance." msgstr "" -#: ../../library/ctypes.rst:1941 +#: ../../library/ctypes.rst:1968 msgid "" "This factory function creates and returns a new ctypes pointer type. Pointer" " types are cached and reused internally, so calling this function repeatedly" " is cheap. *type* must be a ctypes type." msgstr "" -#: ../../library/ctypes.rst:1948 +#: ../../library/ctypes.rst:1975 msgid "" "This function creates a new pointer instance, pointing to *obj*. The " "returned object is of the type ``POINTER(type(obj))``." msgstr "" -#: ../../library/ctypes.rst:1951 +#: ../../library/ctypes.rst:1978 msgid "" "Note: If you just want to pass a pointer to an object to a foreign function " "call, you should use ``byref(obj)`` which is much faster." msgstr "" -#: ../../library/ctypes.rst:1957 +#: ../../library/ctypes.rst:1984 msgid "" "This function resizes the internal memory buffer of *obj*, which must be an " "instance of a ctypes type. It is not possible to make the buffer smaller " @@ -1976,33 +2047,51 @@ msgid "" " but it is possible to enlarge the buffer." msgstr "" -#: ../../library/ctypes.rst:1965 +#: ../../library/ctypes.rst:1992 msgid "" "Set the current value of the ctypes-private copy of the system :data:`errno`" " variable in the calling thread to *value* and return the previous value." msgstr "" -#: ../../library/ctypes.rst:1972 +#: ../../library/ctypes.rst:1995 +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.set_errno`` with " +"argument ``errno``." +msgstr "" + +#: ../../library/ctypes.rst:2000 msgid "" "Windows only: set the current value of the ctypes-private copy of the system" " :data:`LastError` variable in the calling thread to *value* and return the " "previous value." msgstr "" -#: ../../library/ctypes.rst:1980 +#: ../../library/ctypes.rst:2004 +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.set_last_error`` with " +"argument ``error``." +msgstr "" + +#: ../../library/ctypes.rst:2009 msgid "" "Returns the size in bytes of a ctypes type or instance memory buffer. Does " "the same as the C ``sizeof`` operator." msgstr "" -#: ../../library/ctypes.rst:1986 +#: ../../library/ctypes.rst:2015 msgid "" "This function returns the C string starting at memory address *address* as a" " bytes object. If size is specified, it is used as size, otherwise the " "string is assumed to be zero-terminated." msgstr "" -#: ../../library/ctypes.rst:1993 +#: ../../library/ctypes.rst:2019 +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.string_at`` with " +"arguments ``address``, ``size``." +msgstr "" + +#: ../../library/ctypes.rst:2024 msgid "" "Windows only: this function is probably the worst-named thing in ctypes. It " "creates an instance of OSError. If *code* is not specified, " @@ -2011,11 +2100,11 @@ msgid "" " error." msgstr "" -#: ../../library/ctypes.rst:1999 +#: ../../library/ctypes.rst:2030 msgid "An instance of :exc:`WindowsError` used to be created." msgstr "" -#: ../../library/ctypes.rst:2005 +#: ../../library/ctypes.rst:2036 msgid "" "This function returns the wide character string starting at memory address " "*address* as a string. If *size* is specified, it is used as the number of " @@ -2023,11 +2112,17 @@ msgid "" "terminated." msgstr "" -#: ../../library/ctypes.rst:2014 +#: ../../library/ctypes.rst:2041 +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.wstring_at`` with " +"arguments ``address``, ``size``." +msgstr "" + +#: ../../library/ctypes.rst:2047 msgid "Data types" msgstr "" -#: ../../library/ctypes.rst:2019 +#: ../../library/ctypes.rst:2052 msgid "" "This non-public class is the common base class of all ctypes data types. " "Among other things, all ctypes type instances contain a memory block that " @@ -2037,13 +2132,13 @@ msgid "" "alive in case the memory block contains pointers." msgstr "" -#: ../../library/ctypes.rst:2026 +#: ../../library/ctypes.rst:2059 msgid "" "Common methods of ctypes data types, these are all class methods (to be " "exact, they are methods of the :term:`metaclass`):" msgstr "" -#: ../../library/ctypes.rst:2031 +#: ../../library/ctypes.rst:2064 msgid "" "This method returns a ctypes instance that shares the buffer of the *source*" " object. The *source* object must support the writeable buffer interface. " @@ -2052,7 +2147,13 @@ msgid "" ":exc:`ValueError` is raised." msgstr "" -#: ../../library/ctypes.rst:2040 +#: ../../library/ctypes.rst:2070 ../../library/ctypes.rst:2080 +msgid "" +"Raises an :ref:`auditing event ` ``ctypes.cdata/buffer`` with " +"arguments ``pointer``, ``size``, ``offset``." +msgstr "" + +#: ../../library/ctypes.rst:2074 msgid "" "This method creates a ctypes instance, copying the buffer from the *source* " "object buffer which must be readable. The optional *offset* parameter " @@ -2060,7 +2161,7 @@ msgid "" "If the source buffer is not large enough a :exc:`ValueError` is raised." msgstr "" -#: ../../library/ctypes.rst:2048 +#: ../../library/ctypes.rst:2084 msgid "" "This method returns a ctypes type instance using the memory specified by " "*address* which must be an integer." @@ -2072,13 +2173,13 @@ msgid "" "``address``." msgstr "" -#: ../../library/ctypes.rst:2053 +#: ../../library/ctypes.rst:2089 msgid "" "This method, and others that indirectly call this method, raises an " ":ref:`auditing event ` ``ctypes.cdata`` with argument ``address``." msgstr "" -#: ../../library/ctypes.rst:2059 +#: ../../library/ctypes.rst:2095 msgid "" "This method adapts *obj* to a ctypes type. It is called with the actual " "object used in a foreign function call when the type is present in the " @@ -2086,25 +2187,25 @@ msgid "" " be used as a function call parameter." msgstr "" -#: ../../library/ctypes.rst:2064 +#: ../../library/ctypes.rst:2100 msgid "" "All ctypes data types have a default implementation of this classmethod that" " normally returns *obj* if that is an instance of the type. Some types " "accept other objects as well." msgstr "" -#: ../../library/ctypes.rst:2070 +#: ../../library/ctypes.rst:2106 msgid "" "This method returns a ctypes type instance exported by a shared library. " "*name* is the name of the symbol that exports the data, *library* is the " "loaded shared library." msgstr "" -#: ../../library/ctypes.rst:2074 +#: ../../library/ctypes.rst:2110 msgid "Common instance variables of ctypes data types:" msgstr "" -#: ../../library/ctypes.rst:2078 +#: ../../library/ctypes.rst:2114 msgid "" "Sometimes ctypes data instances do not own the memory block they contain, " "instead they share part of the memory block of a base object. The " @@ -2112,13 +2213,13 @@ msgid "" "memory block." msgstr "" -#: ../../library/ctypes.rst:2085 +#: ../../library/ctypes.rst:2121 msgid "" "This read-only variable is true when the ctypes data instance has allocated " "the memory block itself, false otherwise." msgstr "" -#: ../../library/ctypes.rst:2090 +#: ../../library/ctypes.rst:2126 msgid "" "This member is either ``None`` or a dictionary containing Python objects " "that need to be kept alive so that the memory block contents is kept valid." @@ -2126,7 +2227,7 @@ msgid "" "this dictionary." msgstr "" -#: ../../library/ctypes.rst:2103 +#: ../../library/ctypes.rst:2139 msgid "" "This non-public class is the base class of all fundamental ctypes data " "types. It is mentioned here because it contains the common attributes of the" @@ -2135,11 +2236,11 @@ msgid "" "types that are not and do not contain pointers can now be pickled." msgstr "" -#: ../../library/ctypes.rst:2109 +#: ../../library/ctypes.rst:2145 msgid "Instances have a single attribute:" msgstr "" -#: ../../library/ctypes.rst:2113 +#: ../../library/ctypes.rst:2149 msgid "" "This attribute contains the actual value of the instance. For integer and " "pointer types, it is an integer, for character types, it is a single " @@ -2147,7 +2248,7 @@ msgid "" " bytes object or string." msgstr "" -#: ../../library/ctypes.rst:2118 +#: ../../library/ctypes.rst:2154 msgid "" "When the ``value`` attribute is retrieved from a ctypes instance, usually a " "new object is returned each time. :mod:`ctypes` does *not* implement " @@ -2155,7 +2256,7 @@ msgid "" "true for all other ctypes object instances." msgstr "" -#: ../../library/ctypes.rst:2124 +#: ../../library/ctypes.rst:2160 msgid "" "Fundamental data types, when returned as foreign function call results, or, " "for example, by retrieving structure field members or array items, are " @@ -2164,7 +2265,7 @@ msgid "" " receive a Python bytes object, *not* a :class:`c_char_p` instance." msgstr "" -#: ../../library/ctypes.rst:2132 +#: ../../library/ctypes.rst:2168 msgid "" "Subclasses of fundamental data types do *not* inherit this behavior. So, if " "a foreign functions :attr:`restype` is a subclass of :class:`c_void_p`, you " @@ -2172,25 +2273,25 @@ msgid "" " you can get the value of the pointer by accessing the ``value`` attribute." msgstr "" -#: ../../library/ctypes.rst:2137 +#: ../../library/ctypes.rst:2173 msgid "These are the fundamental ctypes data types:" msgstr "" -#: ../../library/ctypes.rst:2141 +#: ../../library/ctypes.rst:2177 msgid "" "Represents the C :c:type:`signed char` datatype, and interprets the value as" " small integer. The constructor accepts an optional integer initializer; no" " overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2148 +#: ../../library/ctypes.rst:2184 msgid "" "Represents the C :c:type:`char` datatype, and interprets the value as a " "single character. The constructor accepts an optional string initializer, " "the length of the string must be exactly one character." msgstr "" -#: ../../library/ctypes.rst:2155 +#: ../../library/ctypes.rst:2191 msgid "" "Represents the C :c:type:`char *` datatype when it points to a zero-" "terminated string. For a general character pointer that may also point to " @@ -2198,178 +2299,178 @@ msgid "" "integer address, or a bytes object." msgstr "" -#: ../../library/ctypes.rst:2163 +#: ../../library/ctypes.rst:2199 msgid "" "Represents the C :c:type:`double` datatype. The constructor accepts an " "optional float initializer." msgstr "" -#: ../../library/ctypes.rst:2169 +#: ../../library/ctypes.rst:2205 msgid "" "Represents the C :c:type:`long double` datatype. The constructor accepts an" " optional float initializer. On platforms where ``sizeof(long double) == " "sizeof(double)`` it is an alias to :class:`c_double`." msgstr "" -#: ../../library/ctypes.rst:2175 +#: ../../library/ctypes.rst:2211 msgid "" "Represents the C :c:type:`float` datatype. The constructor accepts an " "optional float initializer." msgstr "" -#: ../../library/ctypes.rst:2181 +#: ../../library/ctypes.rst:2217 msgid "" "Represents the C :c:type:`signed int` datatype. The constructor accepts an " "optional integer initializer; no overflow checking is done. On platforms " "where ``sizeof(int) == sizeof(long)`` it is an alias to :class:`c_long`." msgstr "" -#: ../../library/ctypes.rst:2188 +#: ../../library/ctypes.rst:2224 msgid "" "Represents the C 8-bit :c:type:`signed int` datatype. Usually an alias for " ":class:`c_byte`." msgstr "" -#: ../../library/ctypes.rst:2194 +#: ../../library/ctypes.rst:2230 msgid "" "Represents the C 16-bit :c:type:`signed int` datatype. Usually an alias for" " :class:`c_short`." msgstr "" -#: ../../library/ctypes.rst:2200 +#: ../../library/ctypes.rst:2236 msgid "" "Represents the C 32-bit :c:type:`signed int` datatype. Usually an alias for" " :class:`c_int`." msgstr "" -#: ../../library/ctypes.rst:2206 +#: ../../library/ctypes.rst:2242 msgid "" "Represents the C 64-bit :c:type:`signed int` datatype. Usually an alias for" " :class:`c_longlong`." msgstr "" -#: ../../library/ctypes.rst:2212 +#: ../../library/ctypes.rst:2248 msgid "" "Represents the C :c:type:`signed long` datatype. The constructor accepts an" " optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2218 +#: ../../library/ctypes.rst:2254 msgid "" "Represents the C :c:type:`signed long long` datatype. The constructor " "accepts an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2224 +#: ../../library/ctypes.rst:2260 msgid "" "Represents the C :c:type:`signed short` datatype. The constructor accepts " "an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2230 +#: ../../library/ctypes.rst:2266 msgid "Represents the C :c:type:`size_t` datatype." msgstr "" -#: ../../library/ctypes.rst:2235 +#: ../../library/ctypes.rst:2271 msgid "Represents the C :c:type:`ssize_t` datatype." msgstr "" -#: ../../library/ctypes.rst:2242 +#: ../../library/ctypes.rst:2278 msgid "" "Represents the C :c:type:`unsigned char` datatype, it interprets the value " "as small integer. The constructor accepts an optional integer initializer; " "no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2249 +#: ../../library/ctypes.rst:2285 msgid "" "Represents the C :c:type:`unsigned int` datatype. The constructor accepts " "an optional integer initializer; no overflow checking is done. On platforms" " where ``sizeof(int) == sizeof(long)`` it is an alias for :class:`c_ulong`." msgstr "" -#: ../../library/ctypes.rst:2256 +#: ../../library/ctypes.rst:2292 msgid "" "Represents the C 8-bit :c:type:`unsigned int` datatype. Usually an alias " "for :class:`c_ubyte`." msgstr "" -#: ../../library/ctypes.rst:2262 +#: ../../library/ctypes.rst:2298 msgid "" "Represents the C 16-bit :c:type:`unsigned int` datatype. Usually an alias " "for :class:`c_ushort`." msgstr "" -#: ../../library/ctypes.rst:2268 +#: ../../library/ctypes.rst:2304 msgid "" "Represents the C 32-bit :c:type:`unsigned int` datatype. Usually an alias " "for :class:`c_uint`." msgstr "" -#: ../../library/ctypes.rst:2274 +#: ../../library/ctypes.rst:2310 msgid "" "Represents the C 64-bit :c:type:`unsigned int` datatype. Usually an alias " "for :class:`c_ulonglong`." msgstr "" -#: ../../library/ctypes.rst:2280 +#: ../../library/ctypes.rst:2316 msgid "" "Represents the C :c:type:`unsigned long` datatype. The constructor accepts " "an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2286 +#: ../../library/ctypes.rst:2322 msgid "" "Represents the C :c:type:`unsigned long long` datatype. The constructor " "accepts an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2292 +#: ../../library/ctypes.rst:2328 msgid "" "Represents the C :c:type:`unsigned short` datatype. The constructor accepts" " an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2298 +#: ../../library/ctypes.rst:2334 msgid "" "Represents the C :c:type:`void *` type. The value is represented as " "integer. The constructor accepts an optional integer initializer." msgstr "" -#: ../../library/ctypes.rst:2304 +#: ../../library/ctypes.rst:2340 msgid "" "Represents the C :c:type:`wchar_t` datatype, and interprets the value as a " "single character unicode string. The constructor accepts an optional string" " initializer, the length of the string must be exactly one character." msgstr "" -#: ../../library/ctypes.rst:2311 +#: ../../library/ctypes.rst:2347 msgid "" "Represents the C :c:type:`wchar_t *` datatype, which must be a pointer to a " "zero-terminated wide character string. The constructor accepts an integer " "address, or a string." msgstr "" -#: ../../library/ctypes.rst:2318 +#: ../../library/ctypes.rst:2354 msgid "" "Represent the C :c:type:`bool` datatype (more accurately, :c:type:`_Bool` " "from C99). Its value can be ``True`` or ``False``, and the constructor " "accepts any object that has a truth value." msgstr "" -#: ../../library/ctypes.rst:2325 +#: ../../library/ctypes.rst:2361 msgid "" "Windows only: Represents a :c:type:`HRESULT` value, which contains success " "or error information for a function or method call." msgstr "" -#: ../../library/ctypes.rst:2331 +#: ../../library/ctypes.rst:2367 msgid "" "Represents the C :c:type:`PyObject *` datatype. Calling this without an " "argument creates a ``NULL`` :c:type:`PyObject *` pointer." msgstr "" -#: ../../library/ctypes.rst:2334 +#: ../../library/ctypes.rst:2370 msgid "" "The :mod:`ctypes.wintypes` module provides quite some other Windows specific" " data types, for example :c:type:`HWND`, :c:type:`WPARAM`, or " @@ -2377,33 +2478,33 @@ msgid "" ":c:type:`RECT` are also defined." msgstr "" -#: ../../library/ctypes.rst:2342 +#: ../../library/ctypes.rst:2378 msgid "Structured data types" msgstr "Tipe data terstruktur" -#: ../../library/ctypes.rst:2347 +#: ../../library/ctypes.rst:2383 msgid "Abstract base class for unions in native byte order." msgstr "" -#: ../../library/ctypes.rst:2352 +#: ../../library/ctypes.rst:2388 msgid "Abstract base class for structures in *big endian* byte order." msgstr "" -#: ../../library/ctypes.rst:2357 +#: ../../library/ctypes.rst:2393 msgid "Abstract base class for structures in *little endian* byte order." msgstr "" -#: ../../library/ctypes.rst:2359 +#: ../../library/ctypes.rst:2395 msgid "" "Structures with non-native byte order cannot contain pointer type fields, or" " any other data types containing pointer type fields." msgstr "" -#: ../../library/ctypes.rst:2365 +#: ../../library/ctypes.rst:2401 msgid "Abstract base class for structures in *native* byte order." msgstr "" -#: ../../library/ctypes.rst:2367 +#: ../../library/ctypes.rst:2403 msgid "" "Concrete structure and union types must be created by subclassing one of " "these types, and at least define a :attr:`_fields_` class variable. " @@ -2411,34 +2512,34 @@ msgid "" "writing the fields by direct attribute accesses. These are the" msgstr "" -#: ../../library/ctypes.rst:2375 +#: ../../library/ctypes.rst:2411 msgid "" "A sequence defining the structure fields. The items must be 2-tuples or " "3-tuples. The first item is the name of the field, the second item " "specifies the type of the field; it can be any ctypes data type." msgstr "" -#: ../../library/ctypes.rst:2379 +#: ../../library/ctypes.rst:2415 msgid "" "For integer type fields like :class:`c_int`, a third optional item can be " "given. It must be a small positive integer defining the bit width of the " "field." msgstr "" -#: ../../library/ctypes.rst:2383 +#: ../../library/ctypes.rst:2419 msgid "" "Field names must be unique within one structure or union. This is not " "checked, only one field can be accessed when names are repeated." msgstr "" -#: ../../library/ctypes.rst:2386 +#: ../../library/ctypes.rst:2422 msgid "" "It is possible to define the :attr:`_fields_` class variable *after* the " "class statement that defines the Structure subclass, this allows creating " "data types that directly or indirectly reference themselves::" msgstr "" -#: ../../library/ctypes.rst:2396 +#: ../../library/ctypes.rst:2432 msgid "" "The :attr:`_fields_` class variable must, however, be defined before the " "type is first used (an instance is created, :func:`sizeof` is called on it, " @@ -2446,28 +2547,28 @@ msgid "" "raise an AttributeError." msgstr "" -#: ../../library/ctypes.rst:2401 +#: ../../library/ctypes.rst:2437 msgid "" "It is possible to define sub-subclasses of structure types, they inherit the" " fields of the base class plus the :attr:`_fields_` defined in the sub-" "subclass, if any." msgstr "" -#: ../../library/ctypes.rst:2408 +#: ../../library/ctypes.rst:2444 msgid "" "An optional small integer that allows overriding the alignment of structure " "fields in the instance. :attr:`_pack_` must already be defined when " ":attr:`_fields_` is assigned, otherwise it will have no effect." msgstr "" -#: ../../library/ctypes.rst:2415 +#: ../../library/ctypes.rst:2451 msgid "" "An optional sequence that lists the names of unnamed (anonymous) fields. " ":attr:`_anonymous_` must be already defined when :attr:`_fields_` is " "assigned, otherwise it will have no effect." msgstr "" -#: ../../library/ctypes.rst:2419 +#: ../../library/ctypes.rst:2455 msgid "" "The fields listed in this variable must be structure or union type fields. " ":mod:`ctypes` will create descriptors in the structure type that allows " @@ -2475,11 +2576,11 @@ msgid "" "structure or union field." msgstr "" -#: ../../library/ctypes.rst:2424 +#: ../../library/ctypes.rst:2460 msgid "Here is an example type (Windows)::" msgstr "" -#: ../../library/ctypes.rst:2437 +#: ../../library/ctypes.rst:2473 msgid "" "The ``TYPEDESC`` structure describes a COM data type, the ``vt`` field " "specifies which one of the union fields is valid. Since the ``u`` field is " @@ -2489,7 +2590,7 @@ msgid "" "temporary union instance::" msgstr "" -#: ../../library/ctypes.rst:2449 +#: ../../library/ctypes.rst:2485 msgid "" "It is possible to define sub-subclasses of structures, they inherit the " "fields of the base class. If the subclass definition has a separate " @@ -2497,7 +2598,7 @@ msgid "" "fields of the base class." msgstr "" -#: ../../library/ctypes.rst:2454 +#: ../../library/ctypes.rst:2490 msgid "" "Structure and union constructors accept both positional and keyword " "arguments. Positional arguments are used to initialize member fields in the" @@ -2507,15 +2608,15 @@ msgid "" " names not present in :attr:`_fields_`." msgstr "" -#: ../../library/ctypes.rst:2465 +#: ../../library/ctypes.rst:2501 msgid "Arrays and pointers" msgstr "" -#: ../../library/ctypes.rst:2469 +#: ../../library/ctypes.rst:2505 msgid "Abstract base class for arrays." msgstr "" -#: ../../library/ctypes.rst:2471 +#: ../../library/ctypes.rst:2507 msgid "" "The recommended way to create concrete array types is by multiplying any " ":mod:`ctypes` data type with a positive integer. Alternatively, you can " @@ -2525,34 +2626,34 @@ msgid "" " :class:`Array`." msgstr "" -#: ../../library/ctypes.rst:2481 +#: ../../library/ctypes.rst:2517 msgid "" "A positive integer specifying the number of elements in the array. Out-of-" "range subscripts result in an :exc:`IndexError`. Will be returned by " ":func:`len`." msgstr "" -#: ../../library/ctypes.rst:2488 +#: ../../library/ctypes.rst:2524 msgid "Specifies the type of each element in the array." msgstr "" -#: ../../library/ctypes.rst:2491 +#: ../../library/ctypes.rst:2527 msgid "" "Array subclass constructors accept positional arguments, used to initialize " "the elements in order." msgstr "" -#: ../../library/ctypes.rst:2497 +#: ../../library/ctypes.rst:2533 msgid "Private, abstract base class for pointers." msgstr "" -#: ../../library/ctypes.rst:2499 +#: ../../library/ctypes.rst:2535 msgid "" "Concrete pointer types are created by calling :func:`POINTER` with the type " "that will be pointed to; this is done automatically by :func:`pointer`." msgstr "" -#: ../../library/ctypes.rst:2503 +#: ../../library/ctypes.rst:2539 msgid "" "If a pointer points to an array, its elements can be read and written using " "standard subscript and slice accesses. Pointer objects have no size, so " @@ -2561,11 +2662,11 @@ msgid "" " probably crash with an access violation (if you're lucky)." msgstr "" -#: ../../library/ctypes.rst:2513 +#: ../../library/ctypes.rst:2549 msgid "Specifies the type pointed to." msgstr "" -#: ../../library/ctypes.rst:2517 +#: ../../library/ctypes.rst:2553 msgid "" "Returns the object to which to pointer points. Assigning to this attribute " "changes the pointer to point to the assigned object." diff --git a/library/dataclasses.po b/library/dataclasses.po index b1e6b71..e7dc176 100644 --- a/library/dataclasses.po +++ b/library/dataclasses.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2018-06-29 21:06+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -205,7 +205,7 @@ msgstr "" #: ../../library/dataclasses.rst:156 msgid "" -"``frozen``: If true (the default is False), assigning to fields will " +"``frozen``: If true (the default is ``False``), assigning to fields will " "generate an exception. This emulates read-only frozen instances. If " ":meth:`__setattr__` or :meth:`__delattr__` is defined in the class, then " ":exc:`TypeError` is raised. See the discussion below." @@ -455,8 +455,8 @@ msgstr "" #: ../../library/dataclasses.rst:389 msgid "" -"Returns True if its parameter is a dataclass or an instance of one, " -"otherwise returns False." +"Return ``True`` if its parameter is a dataclass or an instance of one, " +"otherwise return ``False``." msgstr "" #: ../../library/dataclasses.rst:392 diff --git a/library/datetime.po b/library/datetime.po index 449d989..c3de2ba 100644 --- a/library/datetime.po +++ b/library/datetime.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-13 11:25+0000\n" +"POT-Creation-Date: 2019-12-01 12:04+0000\n" "PO-Revision-Date: 2017-02-16 23:06+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -1130,7 +1130,7 @@ msgid "" "Because naive ``datetime`` objects are treated by many ``datetime`` methods " "as local times, it is preferred to use aware datetimes to represent times in" " UTC. As such, the recommended way to create an object representing the " -"current time in UTC by calling ``datetime.now(timezone.utc)``." +"current time in UTC is by calling ``datetime.now(timezone.utc)``." msgstr "" #: ../../library/datetime.rst:889 @@ -1209,7 +1209,7 @@ msgid "" "Because naive ``datetime`` objects are treated by many ``datetime`` methods " "as local times, it is preferred to use aware datetimes to represent times in" " UTC. As such, the recommended way to create an object representing a " -"specific timestamp in UTC by calling ``datetime.fromtimestamp(timestamp, " +"specific timestamp in UTC is by calling ``datetime.fromtimestamp(timestamp, " "tz=timezone.utc)``." msgstr "" diff --git a/library/difflib.po b/library/difflib.po index f9cb26e..7acc2a9 100644 --- a/library/difflib.po +++ b/library/difflib.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-12 11:28+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:06+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -396,16 +396,16 @@ msgstr "" #: ../../library/difflib.rst:341 msgid "" -"Return true for ignorable lines. The line *line* is ignorable if *line* is " -"blank or contains a single ``'#'``, otherwise it is not ignorable. Used as " -"a default for parameter *linejunk* in :func:`ndiff` in older versions." +"Return ``True`` for ignorable lines. The line *line* is ignorable if *line*" +" is blank or contains a single ``'#'``, otherwise it is not ignorable. Used" +" as a default for parameter *linejunk* in :func:`ndiff` in older versions." msgstr "" #: ../../library/difflib.rst:348 msgid "" -"Return true for ignorable characters. The character *ch* is ignorable if " -"*ch* is a space or tab, otherwise it is not ignorable. Used as a default " -"for parameter *charjunk* in :func:`ndiff`." +"Return ``True`` for ignorable characters. The character *ch* is ignorable " +"if *ch* is a space or tab, otherwise it is not ignorable. Used as a default" +" for parameter *charjunk* in :func:`ndiff`." msgstr "" #: ../../library/difflib.rst:356 @@ -434,7 +434,7 @@ msgid "" "Optional argument *isjunk* must be ``None`` (the default) or a one-argument " "function that takes a sequence element and returns true if and only if the " "element is \"junk\" and should be ignored. Passing ``None`` for *isjunk* is " -"equivalent to passing ``lambda x: 0``; in other words, no elements are " +"equivalent to passing ``lambda x: False``; in other words, no elements are " "ignored. For example, pass::" msgstr "" diff --git a/library/doctest.po b/library/doctest.po index f380c75..7145a5a 100644 --- a/library/doctest.po +++ b/library/doctest.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-13 11:25+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:07+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -1721,8 +1721,8 @@ msgid "" "A class used to check the whether the actual output from a doctest example " "matches the expected output. :class:`OutputChecker` defines two methods: " ":meth:`check_output`, which compares a given pair of outputs, and returns " -"true if they match; and :meth:`output_difference`, which returns a string " -"describing the differences between two outputs." +"``True`` if they match; and :meth:`output_difference`, which returns a " +"string describing the differences between two outputs." msgstr "" #: ../../library/doctest.rst:1537 diff --git a/library/email.compat32-message.po b/library/email.compat32-message.po index 4300aad..d6b2998 100644 --- a/library/email.compat32-message.po +++ b/library/email.compat32-message.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:07+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -369,9 +369,9 @@ msgstr "" #: ../../library/email.compat32-message.rst:311 msgid "" -"Return true if the message object has a field named *name*. Matching is done" -" case-insensitively and *name* should not include the trailing colon. Used " -"for the ``in`` operator, e.g.::" +"Return ``True`` if the message object has a field named *name*. Matching is " +"done case-insensitively and *name* should not include the trailing colon. " +"Used for the ``in`` operator, e.g.::" msgstr "" #: ../../library/email.compat32-message.rst:321 diff --git a/library/email.errors.po b/library/email.errors.po index 96579f3..17eceed 100644 --- a/library/email.errors.po +++ b/library/email.errors.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:08+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -147,7 +147,7 @@ msgid "" ":class:`MultipartInvariantViolationDefect` -- A message claimed to be a " ":mimetype:`multipart`, but no subparts were found. Note that when a message" " has this defect, its :meth:`~email.message.Message.is_multipart` method may" -" return false even though its content type claims to be " +" return ``False`` even though its content type claims to be " ":mimetype:`multipart`." msgstr "" diff --git a/library/email.message.po b/library/email.message.po index 27dc02f..7f5eb16 100644 --- a/library/email.message.po +++ b/library/email.message.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:08+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -229,9 +229,9 @@ msgstr "" #: ../../library/email.message.rst:181 msgid "" -"Return true if the message object has a field named *name*. Matching is done" -" without regard to case and *name* does not include the trailing colon. " -"Used for the ``in`` operator. For example::" +"Return ``True`` if the message object has a field named *name*. Matching is " +"done without regard to case and *name* does not include the trailing colon." +" Used for the ``in`` operator. For example::" msgstr "" #: ../../library/email.message.rst:191 diff --git a/library/email_utils.po b/library/email_utils.po index d5b934c..21a9b07 100644 --- a/library/email_utils.po +++ b/library/email_utils.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2018-11-22 01:00+0000\n" "Last-Translator: Ismail Sunni, 2018\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -141,8 +141,8 @@ msgid "" "directly to :func:`time.mktime`, and the tenth is the offset of the date's " "timezone from UTC (which is the official term for Greenwich Mean Time) [#]_." " If the input string has no timezone, the last element of the tuple " -"returned is ``None``. Note that indexes 6, 7, and 8 of the result tuple are" -" not usable." +"returned is ``0``, which represents UTC. Note that indexes 6, 7, and 8 of " +"the result tuple are not usable." msgstr "" #: ../../library/email.utils.rst:126 diff --git a/library/fileinput.po b/library/fileinput.po index 907d371..4477574 100644 --- a/library/fileinput.po +++ b/library/fileinput.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:10+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -150,14 +150,14 @@ msgstr "" #: ../../library/fileinput.rst:112 msgid "" -"Returns true if the line just read is the first line of its file, otherwise " -"returns false." +"Return ``True`` if the line just read is the first line of its file, " +"otherwise return ``False``." msgstr "" #: ../../library/fileinput.rst:118 msgid "" -"Returns true if the last line was read from ``sys.stdin``, otherwise returns" -" false." +"Return ``True`` if the last line was read from ``sys.stdin``, otherwise " +"return ``False``." msgstr "" #: ../../library/fileinput.rst:124 diff --git a/library/functions.po b/library/functions.po index 0db3b54..cd1637e 100644 --- a/library/functions.po +++ b/library/functions.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-26 11:33+0000\n" +"POT-Creation-Date: 2019-11-21 11:59+0000\n" "PO-Revision-Date: 2017-02-16 23:11+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -521,17 +521,11 @@ msgstr "" #: ../../library/functions.rst:183 msgid "" "Return :const:`True` if the *object* argument appears callable, " -":const:`False` if not. If this returns true, it is still possible that a " -"call fails, but if it is false, calling *object* will never succeed. Note " -"that classes are callable (calling a class returns a new instance); " +":const:`False` if not. If this returns ``True``, it is still possible that " +"a call fails, but if it is ``False``, calling *object* will never succeed. " +"Note that classes are callable (calling a class returns a new instance); " "instances are callable if their class has a :meth:`__call__` method." msgstr "" -"Kembalikan :const:`True` jika argumen *object* tampak dapat dipanggil, " -":const:`False` jika tidak. Jika ini mengembalikan nilai benar, masih mungkin" -" bahwa panggilan gagal, tetapi jika itu salah, memanggil *object* tidak akan" -" pernah berhasil. Perhatikan bahwa kelas dapat dipanggil (memanggil kelas " -"mengembalikan *instance* baru); *instance* dapat dipanggil jika kelasnya " -"memiliki metode :meth:`__call__`." #: ../../library/functions.rst:189 msgid "" @@ -1033,21 +1027,9 @@ msgid "" "omitted it defaults to the *globals* dictionary. If both dictionaries are " "omitted, the expression is executed with the *globals* and *locals* in the " "environment where :func:`eval` is called. Note, *eval()* does not have " -"access to the :term:`nested scope`\\s (non-locals) in the enclosing " -"environment." -msgstr "" -"Argumen *expression* diuraikan dan dievaluasi sebagai ekspresi Python " -"(secara teknis, daftar *list* kondisi) menggunakan kamus *globals* dan " -"*locals* sebagai *namespace* global dan lokal. Jika *dictionary* *globals* " -"ada dan tidak mengandung nilai untuk kunci ``__builtins__``, referensi ke " -"*dictionary* modul bawaan :mod:`builtins` dimasukkan di bawah kunci itu " -"sebelum *expression* diurai. Ini berarti bahwa *expression* biasanya " -"memiliki akses penuh ke modul standar :mod:`builtins` dan lingkungan " -"terbatas disebarkan. Jika *dictionary* *locals* dihilangkan, *dictionary* " -"bawaanya adalah *globals*. Jika kedua kamus dihilangkan, ekspresi dieksekusi" -" dengan *globals* dan *lokals* di lingkungan di mana :func:`eval` dipanggil." -" Catatan, *eval()* tidak memiliki akses ke :term:`nested scope`\\s (non-" -"locals) di lingkungan tersebut." +"access to the :term:`nested scopes ` (non-locals) in the " +"enclosing environment." +msgstr "" #: ../../library/functions.rst:477 msgid "" @@ -1640,36 +1622,23 @@ msgstr "" #: ../../library/functions.rst:841 msgid "" -"Return true if the *object* argument is an instance of the *classinfo* " +"Return ``True`` if the *object* argument is an instance of the *classinfo* " "argument, or of a (direct, indirect or :term:`virtual `) subclass thereof. If *object* is not an object of the given type, " -"the function always returns false. If *classinfo* is a tuple of type objects" -" (or recursively, other such tuples), return true if *object* is an instance" -" of any of the types. If *classinfo* is not a type or tuple of types and " -"such tuples, a :exc:`TypeError` exception is raised." -msgstr "" -"Kembalikan nilai true jika argumen *object* adalah turunan dari argumen " -"*classinfo*, atau dari sebuah (*direct*, *indirect* atau :term:`virtual " -"`) subkelasnya. Jika *object* bukan objek dari tipe " -"yang diberikan, fungsi selalu mengembalikan salah. Jika *classinfo* adalah " -"*tuple* dari objek tipe (atau secara rekursif, *tuple* lain semacam itu), " -"kembalikan benar jika *object* adalah turunan dari salah satu tipe. Jika " -"*classinfo* bukan tipe atau tipe *tuple* dan semacam *tuple*, pengecualian " -":exc:`TypeError` dimunculkan." +"the function always returns ``False``. If *classinfo* is a tuple of type " +"objects (or recursively, other such tuples), return ``True`` if *object* is " +"an instance of any of the types. If *classinfo* is not a type or tuple of " +"types and such tuples, a :exc:`TypeError` exception is raised." +msgstr "" #: ../../library/functions.rst:853 msgid "" -"Return true if *class* is a subclass (direct, indirect or :term:`virtual " -"`) of *classinfo*. A class is considered a subclass of" -" itself. *classinfo* may be a tuple of class objects, in which case every " +"Return ``True`` if *class* is a subclass (direct, indirect or :term:`virtual" +" `) of *classinfo*. A class is considered a subclass " +"of itself. *classinfo* may be a tuple of class objects, in which case every " "entry in *classinfo* will be checked. In any other case, a :exc:`TypeError` " "exception is raised." msgstr "" -"Kembalikan true jika *class* adalah sebuah subkelas (*direct*, *indirect* " -"atau :term:`virtual `) dari *classinfo*. Kelas dianggap " -"sebagai subkelas dari dirinya sendiri. *classinfo* mungkin *tuple* objek " -"kelas, dalam hal ini setiap entri dalam *classinfo* akan diperiksa. Dalam " -"kasus lain, pengecualian :exc:`TypeError` dimunculkan." #: ../../library/functions.rst:862 msgid "" @@ -3014,12 +2983,9 @@ msgstr "" #: ../../library/functions.rst:1638 msgid "" "In addition to method lookups, :func:`super` also works for attribute " -"lookups. One possible use case for this is calling :term:`descriptor`\\s in" -" a parent or sibling class." +"lookups. One possible use case for this is calling :term:`descriptors " +"` in a parent or sibling class." msgstr "" -"Selain pencarian metode, :func:`super` juga berfungsi untuk pencarian " -"atribut. Salah satu kemungkinan kasus penggunaan ini adalah pemanggilan " -":term:`descriptor`\\s di kelas induk atau saudara kandung." #: ../../library/functions.rst:1642 msgid "" diff --git a/library/gc.po b/library/gc.po index a862fed..3c5321f 100644 --- a/library/gc.po +++ b/library/gc.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-31 11:48+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:12+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgid "Disable automatic garbage collection." msgstr "" #: ../../library/gc.rst:38 -msgid "Returns true if automatic collection is enabled." +msgid "Return ``True`` if automatic collection is enabled." msgstr "" #: ../../library/gc.rst:43 diff --git a/library/http.client.po b/library/http.client.po index ebb0ec2..b464c84 100644 --- a/library/http.client.po +++ b/library/http.client.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-01 11:49+0000\n" "PO-Revision-Date: 2017-02-16 23:13+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -38,8 +38,8 @@ msgstr "" #: ../../library/http.client.rst:23 msgid "" -"The `Requests package `_ is recommended " -"for a higher-level HTTP client interface." +"The `Requests package `_ is " +"recommended for a higher-level HTTP client interface." msgstr "" #: ../../library/http.client.rst:28 diff --git a/library/http.cookiejar.po b/library/http.cookiejar.po index 3809563..c61bda9 100644 --- a/library/http.cookiejar.po +++ b/library/http.cookiejar.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:13+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -517,7 +517,8 @@ msgid "" msgstr "" #: ../../library/http.cookiejar.rst:381 -msgid "Return false if cookies should not be returned, given cookie domain." +msgid "" +"Return ``False`` if cookies should not be returned, given cookie domain." msgstr "" #: ../../library/http.cookiejar.rst:383 @@ -552,7 +553,7 @@ msgid "The *request* argument is as documented for :meth:`return_ok`." msgstr "" #: ../../library/http.cookiejar.rst:405 -msgid "Return false if cookies should not be returned, given cookie path." +msgid "Return ``False`` if cookies should not be returned, given cookie path." msgstr "" #: ../../library/http.cookiejar.rst:407 @@ -892,7 +893,7 @@ msgid "" msgstr "" #: ../../library/http.cookiejar.rst:714 -msgid "Return true if cookie has the named cookie-attribute." +msgid "Return ``True`` if cookie has the named cookie-attribute." msgstr "" #: ../../library/http.cookiejar.rst:719 diff --git a/library/idle.po b/library/idle.po index 2134d6a..63365f8 100644 --- a/library/idle.po +++ b/library/idle.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-27 12:02+0000\n" "PO-Revision-Date: 2017-02-16 23:14+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -233,28 +233,28 @@ msgstr "Redo" msgid "Redo the last undone change to the current window." msgstr "" -#: ../../library/idle.rst:116 ../../library/idle.rst:362 +#: ../../library/idle.rst:116 ../../library/idle.rst:363 msgid "Cut" msgstr "" -#: ../../library/idle.rst:116 ../../library/idle.rst:362 +#: ../../library/idle.rst:116 ../../library/idle.rst:363 msgid "" "Copy selection into the system-wide clipboard; then delete the selection." msgstr "" -#: ../../library/idle.rst:119 ../../library/idle.rst:365 +#: ../../library/idle.rst:119 ../../library/idle.rst:366 msgid "Copy" msgstr "Copy" -#: ../../library/idle.rst:119 ../../library/idle.rst:365 +#: ../../library/idle.rst:119 ../../library/idle.rst:366 msgid "Copy selection into the system-wide clipboard." msgstr "" -#: ../../library/idle.rst:122 ../../library/idle.rst:368 +#: ../../library/idle.rst:122 ../../library/idle.rst:369 msgid "Paste" msgstr "" -#: ../../library/idle.rst:122 ../../library/idle.rst:368 +#: ../../library/idle.rst:122 ../../library/idle.rst:369 msgid "Insert contents of the system-wide clipboard into the current window." msgstr "" @@ -441,7 +441,7 @@ msgid "" "will be formatted to less than N columns, where N defaults to 72." msgstr "" -#: ../../library/idle.rst:202 +#: ../../library/idle.rst:203 msgid "Strip trailing whitespace" msgstr "" @@ -449,18 +449,19 @@ msgstr "" msgid "" "Remove trailing space and other whitespace characters after the last non-" "whitespace character of a line by applying str.rstrip to each line, " -"including lines within multiline strings." +"including lines within multiline strings. Except for Shell windows, remove " +"extra newlines at the end of the file." msgstr "" -#: ../../library/idle.rst:208 +#: ../../library/idle.rst:209 msgid "Run menu (Editor window only)" msgstr "" -#: ../../library/idle.rst:219 +#: ../../library/idle.rst:220 msgid "Run Module" msgstr "" -#: ../../library/idle.rst:213 +#: ../../library/idle.rst:214 msgid "" "Do :ref:`Check Module `. If no error, restart the shell to " "clean the environment, then execute the module. Output is displayed in the " @@ -470,22 +471,22 @@ msgid "" "similar to executing a file with ``python -i file`` at a command line." msgstr "" -#: ../../library/idle.rst:226 +#: ../../library/idle.rst:227 msgid "Run... Customized" msgstr "" -#: ../../library/idle.rst:224 +#: ../../library/idle.rst:225 msgid "" "Same as :ref:`Run Module `, but run the module with customized " "settings. *Command Line Arguments* extend :data:`sys.argv` as if passed on " "a command line. The module can be run in the Shell without restarting." msgstr "" -#: ../../library/idle.rst:235 +#: ../../library/idle.rst:236 msgid "Check Module" msgstr "" -#: ../../library/idle.rst:231 +#: ../../library/idle.rst:232 msgid "" "Check the syntax of the module currently open in the Editor window. If the " "module has not been saved IDLE will either prompt the user to save or " @@ -494,68 +495,68 @@ msgid "" " window." msgstr "" -#: ../../library/idle.rst:241 +#: ../../library/idle.rst:242 msgid "Python Shell" msgstr "" -#: ../../library/idle.rst:240 +#: ../../library/idle.rst:241 msgid "Open or wake up the Python Shell window." msgstr "" -#: ../../library/idle.rst:244 +#: ../../library/idle.rst:245 msgid "Shell menu (Shell window only)" msgstr "" -#: ../../library/idle.rst:247 +#: ../../library/idle.rst:248 msgid "View Last Restart" msgstr "" -#: ../../library/idle.rst:247 +#: ../../library/idle.rst:248 msgid "Scroll the shell window to the last Shell restart." msgstr "" -#: ../../library/idle.rst:250 +#: ../../library/idle.rst:251 msgid "Restart Shell" msgstr "" -#: ../../library/idle.rst:250 +#: ../../library/idle.rst:251 msgid "Restart the shell to clean the environment." msgstr "" -#: ../../library/idle.rst:253 +#: ../../library/idle.rst:254 msgid "Previous History" msgstr "" -#: ../../library/idle.rst:253 +#: ../../library/idle.rst:254 msgid "" "Cycle through earlier commands in history which match the current entry." msgstr "" -#: ../../library/idle.rst:256 +#: ../../library/idle.rst:257 msgid "Next History" msgstr "" -#: ../../library/idle.rst:256 +#: ../../library/idle.rst:257 msgid "Cycle through later commands in history which match the current entry." msgstr "" -#: ../../library/idle.rst:259 +#: ../../library/idle.rst:260 msgid "Interrupt Execution" msgstr "" -#: ../../library/idle.rst:259 +#: ../../library/idle.rst:260 msgid "Stop a running program." msgstr "" -#: ../../library/idle.rst:262 +#: ../../library/idle.rst:263 msgid "Debug menu (Shell window only)" msgstr "" -#: ../../library/idle.rst:269 +#: ../../library/idle.rst:270 msgid "Go to File/Line" msgstr "" -#: ../../library/idle.rst:265 +#: ../../library/idle.rst:266 msgid "" "Look on the current line. with the cursor, and the line above for a filename" " and line number. If found, open the file if not already open, and show the" @@ -564,45 +565,45 @@ msgid "" "Shell window and Output windows." msgstr "" -#: ../../library/idle.rst:278 +#: ../../library/idle.rst:279 msgid "Debugger (toggle)" msgstr "" -#: ../../library/idle.rst:276 +#: ../../library/idle.rst:277 msgid "" "When activated, code entered in the Shell or run from an Editor will run " "under the debugger. In the Editor, breakpoints can be set with the context " "menu. This feature is still incomplete and somewhat experimental." msgstr "" -#: ../../library/idle.rst:282 +#: ../../library/idle.rst:283 msgid "Stack Viewer" msgstr "" -#: ../../library/idle.rst:281 +#: ../../library/idle.rst:282 msgid "" "Show the stack traceback of the last exception in a tree widget, with access" " to locals and globals." msgstr "" -#: ../../library/idle.rst:285 +#: ../../library/idle.rst:286 msgid "Auto-open Stack Viewer" msgstr "" -#: ../../library/idle.rst:285 +#: ../../library/idle.rst:286 msgid "" "Toggle automatically opening the stack viewer on an unhandled exception." msgstr "" -#: ../../library/idle.rst:288 +#: ../../library/idle.rst:289 msgid "Options menu (Shell and Editor)" msgstr "" -#: ../../library/idle.rst:296 +#: ../../library/idle.rst:297 msgid "Configure IDLE" msgstr "" -#: ../../library/idle.rst:291 +#: ../../library/idle.rst:292 msgid "" "Open a configuration dialog and change preferences for the following: fonts," " indentation, keybindings, text color themes, startup windows and size, " @@ -611,39 +612,39 @@ msgid "" "see :ref:`Setting preferences ` under Help and preferences." msgstr "" -#: ../../library/idle.rst:298 +#: ../../library/idle.rst:299 msgid "" "Most configuration options apply to all windows or all future windows. The " "option items below only apply to the active window." msgstr "" -#: ../../library/idle.rst:305 +#: ../../library/idle.rst:306 msgid "Show/Hide Code Context (Editor Window only)" msgstr "" -#: ../../library/idle.rst:302 +#: ../../library/idle.rst:303 msgid "" "Open a pane at the top of the edit window which shows the block context of " "the code which has scrolled above the top of the window. See :ref:`Code " "Context ` in the Editing and Navigation section below." msgstr "" -#: ../../library/idle.rst:310 +#: ../../library/idle.rst:311 msgid "Show/Hide Line Numbers (Editor Window only)" msgstr "" -#: ../../library/idle.rst:308 +#: ../../library/idle.rst:309 msgid "" "Open a column to the left of the edit window which shows the number of each " "line of text. The default is off, which may be changed in the preferences " "(see :ref:`Setting preferences `)." msgstr "" -#: ../../library/idle.rst:318 +#: ../../library/idle.rst:319 msgid "Zoom/Restore Height" msgstr "" -#: ../../library/idle.rst:313 +#: ../../library/idle.rst:314 msgid "" "Toggles the window between normal size and maximum height. The initial size " "defaults to 40 lines by 80 chars unless changed on the General tab of the " @@ -653,75 +654,75 @@ msgid "" "no effect when a window is maximized." msgstr "" -#: ../../library/idle.rst:321 +#: ../../library/idle.rst:322 msgid "Window menu (Shell and Editor)" msgstr "" -#: ../../library/idle.rst:323 +#: ../../library/idle.rst:324 msgid "" "Lists the names of all open windows; select one to bring it to the " "foreground (deiconifying it if necessary)." msgstr "" -#: ../../library/idle.rst:327 +#: ../../library/idle.rst:328 msgid "Help menu (Shell and Editor)" msgstr "" -#: ../../library/idle.rst:330 +#: ../../library/idle.rst:331 msgid "About IDLE" msgstr "" -#: ../../library/idle.rst:330 +#: ../../library/idle.rst:331 msgid "Display version, copyright, license, credits, and more." msgstr "" -#: ../../library/idle.rst:334 +#: ../../library/idle.rst:335 msgid "IDLE Help" msgstr "" -#: ../../library/idle.rst:333 +#: ../../library/idle.rst:334 msgid "" "Display this IDLE document, detailing the menu options, basic editing and " "navigation, and other tips." msgstr "" -#: ../../library/idle.rst:338 +#: ../../library/idle.rst:339 msgid "Python Docs" msgstr "" -#: ../../library/idle.rst:337 +#: ../../library/idle.rst:338 msgid "" "Access local Python documentation, if installed, or start a web browser and " "open docs.python.org showing the latest Python documentation." msgstr "" -#: ../../library/idle.rst:341 +#: ../../library/idle.rst:342 msgid "Turtle Demo" msgstr "" -#: ../../library/idle.rst:341 +#: ../../library/idle.rst:342 msgid "" "Run the turtledemo module with example Python code and turtle drawings." msgstr "" -#: ../../library/idle.rst:343 +#: ../../library/idle.rst:344 msgid "" "Additional help sources may be added here with the Configure IDLE dialog " "under the General tab. See the :ref:`Help sources ` subsection" " below for more on Help menu choices." msgstr "" -#: ../../library/idle.rst:356 +#: ../../library/idle.rst:357 msgid "Context Menus" msgstr "" -#: ../../library/idle.rst:358 +#: ../../library/idle.rst:359 msgid "" "Open a context menu by right-clicking in a window (Control-click on macOS). " "Context menus have the standard clipboard functions also on the Edit menu." msgstr "" -#: ../../library/idle.rst:370 +#: ../../library/idle.rst:371 msgid "" "Editor windows also have breakpoint functions. Lines with a breakpoint set " "are specially marked. Breakpoints only have an effect when running under " @@ -729,66 +730,66 @@ msgid "" "directory." msgstr "" -#: ../../library/idle.rst:375 +#: ../../library/idle.rst:376 msgid "Set Breakpoint" msgstr "" -#: ../../library/idle.rst:375 +#: ../../library/idle.rst:376 msgid "Set a breakpoint on the current line." msgstr "" -#: ../../library/idle.rst:378 +#: ../../library/idle.rst:379 msgid "Clear Breakpoint" msgstr "" -#: ../../library/idle.rst:378 +#: ../../library/idle.rst:379 msgid "Clear the breakpoint on that line." msgstr "" -#: ../../library/idle.rst:380 +#: ../../library/idle.rst:381 msgid "Shell and Output windows also have the following." msgstr "" -#: ../../library/idle.rst:383 +#: ../../library/idle.rst:384 msgid "Go to file/line" msgstr "" -#: ../../library/idle.rst:383 +#: ../../library/idle.rst:384 msgid "Same as in Debug menu." msgstr "" -#: ../../library/idle.rst:385 +#: ../../library/idle.rst:386 msgid "" "The Shell window also has an output squeezing facility explained in the " "*Python Shell window* subsection below." msgstr "" -#: ../../library/idle.rst:391 +#: ../../library/idle.rst:392 msgid "Squeeze" msgstr "" -#: ../../library/idle.rst:389 +#: ../../library/idle.rst:390 msgid "" "If the cursor is over an output line, squeeze all the output between the " "code above and the prompt below down to a 'Squeezed text' label." msgstr "" -#: ../../library/idle.rst:396 +#: ../../library/idle.rst:397 msgid "Editing and navigation" msgstr "" -#: ../../library/idle.rst:399 +#: ../../library/idle.rst:400 msgid "Editor windows" msgstr "" -#: ../../library/idle.rst:401 +#: ../../library/idle.rst:402 msgid "" "IDLE may open editor windows when it starts, depending on settings and how " "you start IDLE. Thereafter, use the File menu. There can be only one open " "editor window for a given file." msgstr "" -#: ../../library/idle.rst:405 +#: ../../library/idle.rst:406 msgid "" "The title bar contains the name of the file, the full path, and the version " "of Python and IDLE running the window. The status bar contains the line " @@ -796,99 +797,99 @@ msgid "" "numbers with 0." msgstr "" -#: ../../library/idle.rst:410 +#: ../../library/idle.rst:411 msgid "" "IDLE assumes that files with a known .py* extension contain Python code and " "that other files do not. Run Python code with the Run menu." msgstr "" -#: ../../library/idle.rst:414 +#: ../../library/idle.rst:415 msgid "Key bindings" msgstr "" -#: ../../library/idle.rst:416 +#: ../../library/idle.rst:417 msgid "" "In this section, 'C' refers to the :kbd:`Control` key on Windows and Unix " "and the :kbd:`Command` key on macOS." msgstr "" -#: ../../library/idle.rst:419 +#: ../../library/idle.rst:420 msgid ":kbd:`Backspace` deletes to the left; :kbd:`Del` deletes to the right" msgstr "" -#: ../../library/idle.rst:421 +#: ../../library/idle.rst:422 msgid "" ":kbd:`C-Backspace` delete word left; :kbd:`C-Del` delete word to the right" msgstr "" -#: ../../library/idle.rst:423 +#: ../../library/idle.rst:424 msgid "Arrow keys and :kbd:`Page Up`/:kbd:`Page Down` to move around" msgstr "" -#: ../../library/idle.rst:425 +#: ../../library/idle.rst:426 msgid ":kbd:`C-LeftArrow` and :kbd:`C-RightArrow` moves by words" msgstr "" -#: ../../library/idle.rst:427 +#: ../../library/idle.rst:428 msgid ":kbd:`Home`/:kbd:`End` go to begin/end of line" msgstr "" -#: ../../library/idle.rst:429 +#: ../../library/idle.rst:430 msgid ":kbd:`C-Home`/:kbd:`C-End` go to begin/end of file" msgstr "" -#: ../../library/idle.rst:431 +#: ../../library/idle.rst:432 msgid "Some useful Emacs bindings are inherited from Tcl/Tk:" msgstr "" -#: ../../library/idle.rst:433 +#: ../../library/idle.rst:434 msgid ":kbd:`C-a` beginning of line" msgstr "" -#: ../../library/idle.rst:435 +#: ../../library/idle.rst:436 msgid ":kbd:`C-e` end of line" msgstr "" -#: ../../library/idle.rst:437 +#: ../../library/idle.rst:438 msgid ":kbd:`C-k` kill line (but doesn't put it in clipboard)" msgstr "" -#: ../../library/idle.rst:439 +#: ../../library/idle.rst:440 msgid ":kbd:`C-l` center window around the insertion point" msgstr "" -#: ../../library/idle.rst:441 +#: ../../library/idle.rst:442 msgid "" ":kbd:`C-b` go backward one character without deleting (usually you can also " "use the cursor key for this)" msgstr "" -#: ../../library/idle.rst:444 +#: ../../library/idle.rst:445 msgid "" ":kbd:`C-f` go forward one character without deleting (usually you can also " "use the cursor key for this)" msgstr "" -#: ../../library/idle.rst:447 +#: ../../library/idle.rst:448 msgid "" ":kbd:`C-p` go up one line (usually you can also use the cursor key for this)" msgstr "" -#: ../../library/idle.rst:450 +#: ../../library/idle.rst:451 msgid ":kbd:`C-d` delete next character" msgstr "" -#: ../../library/idle.rst:452 +#: ../../library/idle.rst:453 msgid "" "Standard keybindings (like :kbd:`C-c` to copy and :kbd:`C-v` to paste) may " "work. Keybindings are selected in the Configure IDLE dialog." msgstr "" -#: ../../library/idle.rst:456 +#: ../../library/idle.rst:457 msgid "Automatic indentation" msgstr "" -#: ../../library/idle.rst:458 +#: ../../library/idle.rst:459 msgid "" "After a block-opening statement, the next line is indented by 4 spaces (in " "the Python Shell window by one tab). After certain keywords (break, return " @@ -898,23 +899,23 @@ msgid "" "tabs are restricted to four spaces due to Tcl/Tk limitations." msgstr "" -#: ../../library/idle.rst:465 +#: ../../library/idle.rst:466 msgid "" "See also the indent/dedent region commands on the :ref:`Format menu `." msgstr "" -#: ../../library/idle.rst:472 +#: ../../library/idle.rst:473 msgid "Completions" msgstr "" -#: ../../library/idle.rst:474 +#: ../../library/idle.rst:475 msgid "" "Completions are supplied for functions, classes, and attributes of classes, " "both built-in and user-defined. Completions are also provided for filenames." msgstr "" -#: ../../library/idle.rst:478 +#: ../../library/idle.rst:479 msgid "" "The AutoCompleteWindow (ACW) will open after a predefined delay (default is " "two seconds) after a '.' or (in a string) an os.sep is typed. If after one " @@ -922,13 +923,13 @@ msgid "" "ACW will open immediately if a possible continuation is found." msgstr "" -#: ../../library/idle.rst:483 +#: ../../library/idle.rst:484 msgid "" "If there is only one possible completion for the characters entered, a " ":kbd:`Tab` will supply that completion without opening the ACW." msgstr "" -#: ../../library/idle.rst:486 +#: ../../library/idle.rst:487 msgid "" "'Show Completions' will force open a completions window, by default the " ":kbd:`C-space` will open a completions window. In an empty string, this will" @@ -938,7 +939,7 @@ msgid "" " the ACW will attempt to be more specific." msgstr "" -#: ../../library/idle.rst:493 +#: ../../library/idle.rst:494 msgid "" "If a string of characters is typed, the ACW selection will jump to the entry" " most closely matching those characters. Entering a :kbd:`tab` will cause " @@ -948,18 +949,18 @@ msgid "" "the scroll wheel all operate on the ACW." msgstr "" -#: ../../library/idle.rst:500 +#: ../../library/idle.rst:501 msgid "" "\"Hidden\" attributes can be accessed by typing the beginning of hidden name" " after a '.', e.g. '_'. This allows access to modules with ``__all__`` set, " "or to class-private attributes." msgstr "" -#: ../../library/idle.rst:504 +#: ../../library/idle.rst:505 msgid "Completions and the 'Expand Word' facility can save a lot of typing!" msgstr "" -#: ../../library/idle.rst:506 +#: ../../library/idle.rst:507 msgid "" "Completions are currently limited to those in the namespaces. Names in an " "Editor window which are not via ``__main__`` and :data:`sys.modules` will " @@ -968,17 +969,17 @@ msgid "" "so much can be found by default, e.g. the re module." msgstr "" -#: ../../library/idle.rst:512 +#: ../../library/idle.rst:513 msgid "" "If you don't like the ACW popping up unbidden, simply make the delay longer " "or disable the extension." msgstr "" -#: ../../library/idle.rst:518 +#: ../../library/idle.rst:519 msgid "Calltips" msgstr "" -#: ../../library/idle.rst:520 +#: ../../library/idle.rst:521 msgid "" "A calltip is shown when one types :kbd:`(` after the name of an *accessible*" " function. A name expression may include dots and subscripts. A calltip " @@ -987,7 +988,7 @@ msgid "" "definition, the menu or shortcut display a calltip." msgstr "" -#: ../../library/idle.rst:526 +#: ../../library/idle.rst:527 msgid "" "A calltip consists of the function signature and the first line of the " "docstring. For builtins without an accessible signature, the calltip " @@ -995,14 +996,14 @@ msgid "" "details may change." msgstr "" -#: ../../library/idle.rst:531 +#: ../../library/idle.rst:532 msgid "" "The set of *accessible* functions depends on what modules have been imported" " into the user process, including those imported by Idle itself, and what " "definitions have been run, all since the last restart." msgstr "" -#: ../../library/idle.rst:535 +#: ../../library/idle.rst:536 msgid "" "For example, restart the Shell and enter ``itertools.count(``. A calltip " "appears because Idle imports itertools into the user process for its own " @@ -1011,18 +1012,18 @@ msgid "" " ``import turtle`` and then ``turtle.write(`` will work." msgstr "" -#: ../../library/idle.rst:541 +#: ../../library/idle.rst:542 msgid "" "In an editor, import statements have no effect until one runs the file. One" " might want to run a file after writing the import statements at the top, or" " immediately run an existing file before editing." msgstr "" -#: ../../library/idle.rst:548 +#: ../../library/idle.rst:549 msgid "Code Context" msgstr "" -#: ../../library/idle.rst:550 +#: ../../library/idle.rst:551 msgid "" "Within an editor window containing Python code, code context can be toggled " "in order to show or hide a pane at the top of the window. When shown, this " @@ -1036,23 +1037,23 @@ msgid "" "line to the top of the editor." msgstr "" -#: ../../library/idle.rst:561 +#: ../../library/idle.rst:562 msgid "" "The text and background colors for the context pane can be configured under " "the Highlights tab in the Configure IDLE dialog." msgstr "" -#: ../../library/idle.rst:565 +#: ../../library/idle.rst:566 msgid "Python Shell window" msgstr "" -#: ../../library/idle.rst:567 +#: ../../library/idle.rst:568 msgid "" "With IDLE's Shell, one enters, edits, and recalls complete statements. Most " "consoles and terminals only work with a single physical line at a time." msgstr "" -#: ../../library/idle.rst:570 +#: ../../library/idle.rst:571 msgid "" "When one pastes code into Shell, it is not compiled and possibly executed " "until one hits :kbd:`Return`. One may edit pasted code first. If one pastes" @@ -1060,49 +1061,49 @@ msgid "" " when multiple statements are compiled as if they were one." msgstr "" -#: ../../library/idle.rst:575 +#: ../../library/idle.rst:576 msgid "" "The editing features described in previous subsections work when entering " "code interactively. IDLE's Shell window also responds to the following " "keys." msgstr "" -#: ../../library/idle.rst:578 +#: ../../library/idle.rst:579 msgid ":kbd:`C-c` interrupts executing command" msgstr "" -#: ../../library/idle.rst:580 +#: ../../library/idle.rst:581 msgid "" ":kbd:`C-d` sends end-of-file; closes window if typed at a ``>>>`` prompt" msgstr "" -#: ../../library/idle.rst:582 +#: ../../library/idle.rst:583 msgid ":kbd:`Alt-/` (Expand word) is also useful to reduce typing" msgstr "" -#: ../../library/idle.rst:584 +#: ../../library/idle.rst:585 msgid "Command history" msgstr "" -#: ../../library/idle.rst:586 +#: ../../library/idle.rst:587 msgid "" ":kbd:`Alt-p` retrieves previous command matching what you have typed. On " "macOS use :kbd:`C-p`." msgstr "" -#: ../../library/idle.rst:589 +#: ../../library/idle.rst:590 msgid ":kbd:`Alt-n` retrieves next. On macOS use :kbd:`C-n`." msgstr "" -#: ../../library/idle.rst:591 +#: ../../library/idle.rst:592 msgid ":kbd:`Return` while on any previous command retrieves that command" msgstr "" -#: ../../library/idle.rst:594 +#: ../../library/idle.rst:595 msgid "Text colors" msgstr "" -#: ../../library/idle.rst:596 +#: ../../library/idle.rst:597 msgid "" "Idle defaults to black on white text, but colors text with special meanings." " For the shell, these are shell output, shell error, user output, and user " @@ -1112,7 +1113,7 @@ msgid "" "(when present), found text (when possible), and selected text." msgstr "" -#: ../../library/idle.rst:603 +#: ../../library/idle.rst:604 msgid "" "Text coloring is done in the background, so uncolorized text is occasionally" " visible. To change the color scheme, use the Configure IDLE dialog " @@ -1120,11 +1121,11 @@ msgid "" "and text in popups and dialogs is not user-configurable." msgstr "" -#: ../../library/idle.rst:610 +#: ../../library/idle.rst:611 msgid "Startup and code execution" msgstr "" -#: ../../library/idle.rst:612 +#: ../../library/idle.rst:613 msgid "" "Upon startup with the ``-s`` option, IDLE will execute the file referenced " "by the environment variables :envvar:`IDLESTARTUP` or " @@ -1136,7 +1137,7 @@ msgid "" "to import common modules." msgstr "" -#: ../../library/idle.rst:620 +#: ../../library/idle.rst:621 msgid "" "In addition, ``Tk`` also loads a startup file if it is present. Note that " "the Tk file is loaded unconditionally. This additional file is ``.Idle.py``" @@ -1145,15 +1146,15 @@ msgid "" "importing functions to be used from IDLE's Python shell." msgstr "" -#: ../../library/idle.rst:627 +#: ../../library/idle.rst:628 msgid "Command line usage" msgstr "" -#: ../../library/idle.rst:643 +#: ../../library/idle.rst:644 msgid "If there are arguments:" msgstr "" -#: ../../library/idle.rst:645 +#: ../../library/idle.rst:646 msgid "" "If ``-``, ``-c``, or ``r`` is used, all arguments are placed in " "``sys.argv[1:...]`` and ``sys.argv[0]`` is set to ``''``, ``'-c'``, or " @@ -1161,17 +1162,17 @@ msgid "" "the Options dialog." msgstr "" -#: ../../library/idle.rst:650 +#: ../../library/idle.rst:651 msgid "" "Otherwise, arguments are files opened for editing and ``sys.argv`` reflects " "the arguments passed to IDLE itself." msgstr "" -#: ../../library/idle.rst:654 +#: ../../library/idle.rst:655 msgid "Startup failure" msgstr "" -#: ../../library/idle.rst:656 +#: ../../library/idle.rst:657 msgid "" "IDLE uses a socket to communicate between the IDLE GUI process and the user " "code execution process. A connection must be established whenever the Shell" @@ -1181,7 +1182,7 @@ msgid "" " user here. It then exits." msgstr "" -#: ../../library/idle.rst:663 +#: ../../library/idle.rst:664 msgid "" "A common cause of failure is a user-written file with the same name as a " "standard library module, such as *random.py* and *tkinter.py*. When such a " @@ -1190,7 +1191,7 @@ msgid "" "file." msgstr "" -#: ../../library/idle.rst:669 +#: ../../library/idle.rst:670 msgid "" "Though less common than in the past, an antivirus or firewall program may " "stop the connection. If the program cannot be taught to allow the " @@ -1199,7 +1200,7 @@ msgid "" " A similar problem is a network mis-configuration that blocks connections." msgstr "" -#: ../../library/idle.rst:676 +#: ../../library/idle.rst:677 msgid "" "Python installation issues occasionally stop IDLE: multiple versions can " "clash, or a single installation might need admin access. If one undo the " @@ -1207,7 +1208,7 @@ msgid "" "completely remove Python and start over." msgstr "" -#: ../../library/idle.rst:681 +#: ../../library/idle.rst:682 msgid "" "A zombie pythonw.exe process could be a problem. On Windows, use Task " "Manager to detect and stop one. Sometimes a restart initiated by a program " @@ -1215,7 +1216,7 @@ msgid "" " error box or Restart Shell on the Shell menu may fix a temporary problem." msgstr "" -#: ../../library/idle.rst:686 +#: ../../library/idle.rst:687 msgid "" "When IDLE first starts, it attempts to read user configuration files in " "~/.idlerc/ (~ is one's home directory). If there is a problem, an error " @@ -1225,18 +1226,18 @@ msgid "" "be to delete one or more of the configuration files." msgstr "" -#: ../../library/idle.rst:693 +#: ../../library/idle.rst:694 msgid "" "If IDLE quits with no message, and it was not started from a console, try " "starting from a console (``python -m idlelib)`` and see if a message " "appears." msgstr "" -#: ../../library/idle.rst:697 +#: ../../library/idle.rst:698 msgid "Running user code" msgstr "" -#: ../../library/idle.rst:699 +#: ../../library/idle.rst:700 msgid "" "With rare exceptions, the result of executing Python code with IDLE is " "intended to be the same as executing the same code by the default method, " @@ -1246,7 +1247,7 @@ msgid "" "``threading.activeCount()`` returns 2 instead of 1." msgstr "" -#: ../../library/idle.rst:706 +#: ../../library/idle.rst:707 msgid "" "By default, IDLE runs user code in a separate OS process rather than in the " "user interface process that runs the shell and editor. In the execution " @@ -1256,7 +1257,7 @@ msgid "" "``sys.__stderr__`` are not touched, but may be ``None``." msgstr "" -#: ../../library/idle.rst:713 +#: ../../library/idle.rst:714 msgid "" "When Shell has the focus, it controls the keyboard and screen. This is " "normally transparent, but functions that directly access the keyboard and " @@ -1264,7 +1265,7 @@ msgid "" "determine whether a key has been pressed and if so, which." msgstr "" -#: ../../library/idle.rst:718 +#: ../../library/idle.rst:719 msgid "" "IDLE's standard stream replacements are not inherited by subprocesses " "created in the execution process, whether directly by user code or by " @@ -1274,7 +1275,7 @@ msgid "" " attached to that window for input and output." msgstr "" -#: ../../library/idle.rst:725 +#: ../../library/idle.rst:726 msgid "" "The IDLE code running in the execution process adds frames to the call stack" " that would not be there otherwise. IDLE wraps ``sys.getrecursionlimit`` " @@ -1282,24 +1283,24 @@ msgid "" "frames." msgstr "" -#: ../../library/idle.rst:729 +#: ../../library/idle.rst:730 msgid "" "If ``sys`` is reset by user code, such as with ``importlib.reload(sys)``, " "IDLE's changes are lost and input from the keyboard and output to the screen" " will not work correctly." msgstr "" -#: ../../library/idle.rst:733 +#: ../../library/idle.rst:734 msgid "" "When user code raises SystemExit either directly or by calling sys.exit, " "IDLE returns to a Shell prompt instead of exiting." msgstr "" -#: ../../library/idle.rst:737 +#: ../../library/idle.rst:738 msgid "User output in Shell" msgstr "" -#: ../../library/idle.rst:739 +#: ../../library/idle.rst:740 msgid "" "When a program outputs text, the result is determined by the corresponding " "output device. When IDLE executes user code, ``sys.stdout`` and " @@ -1309,7 +1310,7 @@ msgid "" "rather than production runs." msgstr "" -#: ../../library/idle.rst:746 +#: ../../library/idle.rst:747 msgid "" "For instance, Shell never throws away output. A program that sends " "unlimited output to Shell will eventually fill memory, resulting in a memory" @@ -1318,7 +1319,7 @@ msgid "" "lines, with 300 the default." msgstr "" -#: ../../library/idle.rst:752 +#: ../../library/idle.rst:753 msgid "" "A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) " "in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters " @@ -1332,7 +1333,7 @@ msgid "" "spacing behavior.) ::" msgstr "" -#: ../../library/idle.rst:770 +#: ../../library/idle.rst:771 msgid "" "The ``repr`` function is used for interactive echo of expression values. It" " returns an altered version of the input string in which control codes, some" @@ -1341,13 +1342,13 @@ msgid "" " regardless of how they are displayed." msgstr "" -#: ../../library/idle.rst:776 +#: ../../library/idle.rst:777 msgid "" "Normal and error output are generally kept separate (on separate lines) from" " code input and each other. They each get different highlight colors." msgstr "" -#: ../../library/idle.rst:779 +#: ../../library/idle.rst:780 msgid "" "For SyntaxError tracebacks, the normal '^' marking where the error was " "detected is replaced by coloring the text with an error highlight. When code" @@ -1356,7 +1357,7 @@ msgid "" "opened if necessary." msgstr "" -#: ../../library/idle.rst:785 +#: ../../library/idle.rst:786 msgid "" "Shell has a special facility for squeezing output lines down to a 'Squeezed " "text' label. This is done automatically for output over N lines (N = 50 by " @@ -1366,18 +1367,18 @@ msgid "" "scrolling." msgstr "" -#: ../../library/idle.rst:793 +#: ../../library/idle.rst:794 msgid "" "Squeezed output is expanded in place by double-clicking the label. It can " "also be sent to the clipboard or a separate view window by right-clicking " "the label." msgstr "" -#: ../../library/idle.rst:798 +#: ../../library/idle.rst:799 msgid "Developing tkinter applications" msgstr "" -#: ../../library/idle.rst:800 +#: ../../library/idle.rst:801 msgid "" "IDLE is intentionally different from standard Python in order to facilitate " "development of tkinter programs. Enter ``import tkinter as tk; root = " @@ -1389,7 +1390,7 @@ msgid "" " visibly changes in standard Python until one enters ``root.update()``." msgstr "" -#: ../../library/idle.rst:809 +#: ../../library/idle.rst:810 msgid "" "Most tkinter programs run ``root.mainloop()``, which usually does not return" " until the tk app is destroyed. If the program is run with ``python -i`` or" @@ -1398,7 +1399,7 @@ msgid "" "with." msgstr "" -#: ../../library/idle.rst:815 +#: ../../library/idle.rst:816 msgid "" "When running a tkinter program from an IDLE editor, one can comment out the " "mainloop call. One then gets a shell prompt immediately and can interact " @@ -1406,11 +1407,11 @@ msgid "" "mainloop call when running in standard Python." msgstr "" -#: ../../library/idle.rst:821 +#: ../../library/idle.rst:822 msgid "Running without a subprocess" msgstr "" -#: ../../library/idle.rst:823 +#: ../../library/idle.rst:824 msgid "" "By default, IDLE executes user code in a separate subprocess via a socket, " "which uses the internal loopback interface. This connection is not " @@ -1418,7 +1419,7 @@ msgid "" "firewall software complains anyway, you can ignore it." msgstr "" -#: ../../library/idle.rst:828 +#: ../../library/idle.rst:829 msgid "" "If the attempt to make the socket connection fails, Idle will notify you. " "Such failures are sometimes transient, but if persistent, the problem may be" @@ -1427,7 +1428,7 @@ msgid "" " command line switch." msgstr "" -#: ../../library/idle.rst:834 +#: ../../library/idle.rst:835 msgid "" "If IDLE is started with the -n command line switch it will run in a single " "process and will not create the subprocess which runs the RPC Python " @@ -1441,15 +1442,15 @@ msgid "" "at all possible." msgstr "" -#: ../../library/idle.rst:849 +#: ../../library/idle.rst:850 msgid "Help and preferences" msgstr "" -#: ../../library/idle.rst:854 +#: ../../library/idle.rst:855 msgid "Help sources" msgstr "" -#: ../../library/idle.rst:856 +#: ../../library/idle.rst:857 msgid "" "Help menu entry \"IDLE Help\" displays a formatted html version of the IDLE " "chapter of the Library Reference. The result, in a read-only tkinter text " @@ -1459,7 +1460,7 @@ msgid "" "the opened box." msgstr "" -#: ../../library/idle.rst:864 +#: ../../library/idle.rst:865 msgid "" "Help menu entry \"Python Docs\" opens the extensive sources of help, " "including tutorials, available at docs.python.org/x.y, where 'x.y' is the " @@ -1467,17 +1468,17 @@ msgid "" "the docs (this may be an installation option), that will be opened instead." msgstr "" -#: ../../library/idle.rst:870 +#: ../../library/idle.rst:871 msgid "" "Selected URLs can be added or removed from the help menu at any time using " "the General tab of the Configure IDLE dialog ." msgstr "" -#: ../../library/idle.rst:876 +#: ../../library/idle.rst:877 msgid "Setting preferences" msgstr "" -#: ../../library/idle.rst:878 +#: ../../library/idle.rst:879 msgid "" "The font preferences, highlighting, keys, and general preferences can be " "changed via Configure IDLE on the Option menu. Non-default user settings are" @@ -1486,7 +1487,7 @@ msgid "" "more of the files in .idlerc." msgstr "" -#: ../../library/idle.rst:884 +#: ../../library/idle.rst:885 msgid "" "On the Font tab, see the text sample for the effect of font face and size on" " multiple characters in multiple languages. Edit the sample to add other " @@ -1495,7 +1496,7 @@ msgid "" "the top of the sample and try changing first size and then font." msgstr "" -#: ../../library/idle.rst:891 +#: ../../library/idle.rst:892 msgid "" "On the Highlights and Keys tab, select a built-in or custom color theme and " "key set. To use a newer built-in color theme or key set with older IDLEs, " @@ -1503,22 +1504,22 @@ msgid "" "IDLEs." msgstr "" -#: ../../library/idle.rst:897 +#: ../../library/idle.rst:898 msgid "IDLE on macOS" msgstr "" -#: ../../library/idle.rst:899 +#: ../../library/idle.rst:900 msgid "" "Under System Preferences: Dock, one can set \"Prefer tabs when opening " "documents\" to \"Always\". This setting is not compatible with the " "tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features." msgstr "" -#: ../../library/idle.rst:904 +#: ../../library/idle.rst:905 msgid "Extensions" msgstr "" -#: ../../library/idle.rst:906 +#: ../../library/idle.rst:907 msgid "" "IDLE contains an extension facility. Preferences for extensions can be " "changed with the Extensions tab of the preferences dialog. See the beginning" diff --git a/library/importlib.po b/library/importlib.po index c76c5d2..1d29ccd 100644 --- a/library/importlib.po +++ b/library/importlib.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-11 00:37+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:15+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -1424,7 +1424,7 @@ msgid "The path to the source file." msgstr "" #: ../../library/importlib.rst:1171 -msgid "Return true if :attr:`path` appears to be for a package." +msgid "Return ``True`` if :attr:`path` appears to be for a package." msgstr "" #: ../../library/importlib.rst:1175 diff --git a/library/importlib_metadata.po b/library/importlib_metadata.po index 6fe2756..ba3a39d 100644 --- a/library/importlib_metadata.po +++ b/library/importlib_metadata.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-11 00:37+0000\n" +"POT-Creation-Date: 2019-12-11 12:09+0000\n" "PO-Revision-Date: 2019-09-01 14:41+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -225,9 +225,9 @@ msgstr "" #: ../../library/importlib.metadata.rst:219 msgid "" -"By default ``importlib.metadata`` installs a finder for distribution " -"packages found on the file system. This finder doesn't actually find any " -"*packages*, but it can find the packages' metadata." +"The default ``PathFinder`` for Python includes a hook that calls into " +"``importlib.metadata.MetadataPathFinder`` for finding distributions loaded " +"from typical file-system-based paths." msgstr "" #: ../../library/importlib.metadata.rst:223 @@ -250,10 +250,10 @@ msgstr "" #: ../../library/importlib.metadata.rst:241 msgid "" "What this means in practice is that to support finding distribution package " -"metadata in locations other than the file system, you should derive from " -"``Distribution`` and implement the ``load_metadata()`` method. Then from " -"your finder, return instances of this derived ``Distribution`` in the " -"``find_distributions()`` method." +"metadata in locations other than the file system, subclass ``Distribution`` " +"and implement the abstract methods. Then from a custom finder, return " +"instances of this derived ``Distribution`` in the ``find_distributions()`` " +"method." msgstr "" #: ../../library/importlib.metadata.rst:260 diff --git a/library/inspect.po b/library/inspect.po index a2e88cf..6f73d0b 100644 --- a/library/inspect.po +++ b/library/inspect.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-16 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:15+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -566,59 +566,60 @@ msgid "The function is based directly on :mod:`importlib`." msgstr "" #: ../../library/inspect.rst:280 -msgid "Return true if the object is a module." +msgid "Return ``True`` if the object is a module." msgstr "" #: ../../library/inspect.rst:285 msgid "" -"Return true if the object is a class, whether built-in or created in Python " -"code." +"Return ``True`` if the object is a class, whether built-in or created in " +"Python code." msgstr "" #: ../../library/inspect.rst:291 -msgid "Return true if the object is a bound method written in Python." +msgid "Return ``True`` if the object is a bound method written in Python." msgstr "" #: ../../library/inspect.rst:296 msgid "" -"Return true if the object is a Python function, which includes functions " -"created by a :term:`lambda` expression." +"Return ``True`` if the object is a Python function, which includes functions" +" created by a :term:`lambda` expression." msgstr "" #: ../../library/inspect.rst:302 -msgid "Return true if the object is a Python generator function." +msgid "Return ``True`` if the object is a Python generator function." msgstr "" #: ../../library/inspect.rst:304 msgid "" -"Functions wrapped in :func:`functools.partial` now return true if the " +"Functions wrapped in :func:`functools.partial` now return ``True`` if the " "wrapped function is a Python generator function." msgstr "" #: ../../library/inspect.rst:311 -msgid "Return true if the object is a generator." +msgid "Return ``True`` if the object is a generator." msgstr "" #: ../../library/inspect.rst:316 msgid "" -"Return true if the object is a :term:`coroutine function` (a function " +"Return ``True`` if the object is a :term:`coroutine function` (a function " "defined with an :keyword:`async def` syntax)." msgstr "" #: ../../library/inspect.rst:321 msgid "" -"Functions wrapped in :func:`functools.partial` now return true if the " +"Functions wrapped in :func:`functools.partial` now return ``True`` if the " "wrapped function is a :term:`coroutine function`." msgstr "" #: ../../library/inspect.rst:328 msgid "" -"Return true if the object is a :term:`coroutine` created by an " +"Return ``True`` if the object is a :term:`coroutine` created by an " ":keyword:`async def` function." msgstr "" #: ../../library/inspect.rst:336 -msgid "Return true if the object can be used in :keyword:`await` expression." +msgid "" +"Return ``True`` if the object can be used in :keyword:`await` expression." msgstr "" #: ../../library/inspect.rst:338 @@ -629,51 +630,53 @@ msgstr "" #: ../../library/inspect.rst:355 msgid "" -"Return true if the object is an :term:`asynchronous generator` function, for" -" example::" +"Return ``True`` if the object is an :term:`asynchronous generator` function," +" for example::" msgstr "" #: ../../library/inspect.rst:366 msgid "" -"Functions wrapped in :func:`functools.partial` now return true if the " +"Functions wrapped in :func:`functools.partial` now return ``True`` if the " "wrapped function is a :term:`asynchronous generator` function." msgstr "" #: ../../library/inspect.rst:373 msgid "" -"Return true if the object is an :term:`asynchronous generator iterator` " +"Return ``True`` if the object is an :term:`asynchronous generator iterator` " "created by an :term:`asynchronous generator` function." msgstr "" #: ../../library/inspect.rst:380 -msgid "Return true if the object is a traceback." +msgid "Return ``True`` if the object is a traceback." msgstr "" #: ../../library/inspect.rst:385 -msgid "Return true if the object is a frame." +msgid "Return ``True`` if the object is a frame." msgstr "" #: ../../library/inspect.rst:390 -msgid "Return true if the object is a code." +msgid "Return ``True`` if the object is a code." msgstr "" #: ../../library/inspect.rst:395 msgid "" -"Return true if the object is a built-in function or a bound built-in method." +"Return ``True`` if the object is a built-in function or a bound built-in " +"method." msgstr "" #: ../../library/inspect.rst:400 msgid "" -"Return true if the object is a user-defined or built-in function or method." +"Return ``True`` if the object is a user-defined or built-in function or " +"method." msgstr "" #: ../../library/inspect.rst:405 -msgid "Return true if the object is an abstract base class." +msgid "Return ``True`` if the object is an abstract base class." msgstr "" #: ../../library/inspect.rst:410 msgid "" -"Return true if the object is a method descriptor, but not if " +"Return ``True`` if the object is a method descriptor, but not if " ":func:`ismethod`, :func:`isclass`, :func:`isfunction` or :func:`isbuiltin` " "are true." msgstr "" @@ -690,29 +693,29 @@ msgstr "" #: ../../library/inspect.rst:420 msgid "" "Methods implemented via descriptors that also pass one of the other tests " -"return false from the :func:`ismethoddescriptor` test, simply because the " -"other tests promise more -- you can, e.g., count on having the " +"return ``False`` from the :func:`ismethoddescriptor` test, simply because " +"the other tests promise more -- you can, e.g., count on having the " ":attr:`__func__` attribute (etc) when an object passes :func:`ismethod`." msgstr "" #: ../../library/inspect.rst:428 -msgid "Return true if the object is a data descriptor." +msgid "Return ``True`` if the object is a data descriptor." msgstr "" #: ../../library/inspect.rst:430 msgid "" -"Data descriptors have both a :attr:`~object.__get__` and a " -":attr:`~object.__set__` method. Examples are properties (defined in Python)," -" getsets, and members. The latter two are defined in C and there are more " -"specific tests available for those types, which is robust across Python " -"implementations. Typically, data descriptors will also have " +"Data descriptors have a :attr:`~object.__set__` or a " +":attr:`~object.__delete__` method. Examples are properties (defined in " +"Python), getsets, and members. The latter two are defined in C and there " +"are more specific tests available for those types, which is robust across " +"Python implementations. Typically, data descriptors will also have " ":attr:`~definition.__name__` and :attr:`__doc__` attributes (properties, " "getsets, and members have both of these attributes), but this is not " "guaranteed." msgstr "" #: ../../library/inspect.rst:441 -msgid "Return true if the object is a getset descriptor." +msgid "Return ``True`` if the object is a getset descriptor." msgstr "" #: ../../library/inspect.rst:445 @@ -723,7 +726,7 @@ msgid "" msgstr "" #: ../../library/inspect.rst:452 -msgid "Return true if the object is a member descriptor." +msgid "Return ``True`` if the object is a member descriptor." msgstr "" #: ../../library/inspect.rst:456 diff --git a/library/ipaddress.po b/library/ipaddress.po index c35cf5b..5e7d4d0 100644 --- a/library/ipaddress.po +++ b/library/ipaddress.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:15+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -577,11 +577,11 @@ msgid "" msgstr "" #: ../../library/ipaddress.rst:560 -msgid "Returns *True* if this network is a subnet of *other*." +msgid "Return ``True`` if this network is a subnet of *other*." msgstr "" #: ../../library/ipaddress.rst:571 -msgid "Returns *True* if this network is a supernet of *other*." +msgid "Return ``True`` if this network is a supernet of *other*." msgstr "" #: ../../library/ipaddress.rst:582 diff --git a/library/keyword.po b/library/keyword.po index de191e4..4937696 100644 --- a/library/keyword.po +++ b/library/keyword.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:16+0000\n" "Last-Translator: oon arfiandwi , 2018\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -37,8 +37,8 @@ msgstr "" "adalah kata kunci." #: ../../library/keyword.rst:16 -msgid "Return true if *s* is a Python keyword." -msgstr "Mengembalikan nilai true jika *s* adalah kata kunci Python." +msgid "Return ``True`` if *s* is a Python keyword." +msgstr "" #: ../../library/keyword.rst:21 msgid "" diff --git a/library/logging.handlers.po b/library/logging.handlers.po index da92041..730026b 100644 --- a/library/logging.handlers.po +++ b/library/logging.handlers.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-11 11:23+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:17+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -1226,8 +1226,8 @@ msgstr "" #: ../../library/logging.handlers.rst:849 msgid "" -"Appends the record to the buffer. If :meth:`shouldFlush` returns true, calls" -" :meth:`flush` to process the buffer." +"Append the record to the buffer. If :meth:`shouldFlush` returns true, call " +":meth:`flush` to process the buffer." msgstr "" #: ../../library/logging.handlers.rst:855 @@ -1238,8 +1238,8 @@ msgstr "" #: ../../library/logging.handlers.rst:861 msgid "" -"Returns true if the buffer is up to capacity. This method can be overridden " -"to implement custom flushing strategies." +"Return ``True`` if the buffer is up to capacity. This method can be " +"overridden to implement custom flushing strategies." msgstr "" #: ../../library/logging.handlers.rst:867 diff --git a/library/logging.po b/library/logging.po index 9c6d81b..cfb866e 100644 --- a/library/logging.po +++ b/library/logging.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-04 11:35+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:17+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -399,11 +399,11 @@ msgstr "" #: ../../library/logging.rst:297 msgid "" -"Applies this logger's filters to the record and returns a true value if the " -"record is to be processed. The filters are consulted in turn, until one of " -"them returns a false value. If none of them return a false value, the record" -" will be processed (passed to handlers). If one returns a false value, no " -"further processing of the record occurs." +"Apply this logger's filters to the record and return ``True`` if the record " +"is to be processed. The filters are consulted in turn, until one of them " +"returns a false value. If none of them return a false value, the record will" +" be processed (passed to handlers). If one returns a false value, no further" +" processing of the record occurs." msgstr "" #: ../../library/logging.rst:306 @@ -589,11 +589,11 @@ msgstr "" #: ../../library/logging.rst:450 msgid "" -"Applies this handler's filters to the record and returns a true value if the" -" record is to be processed. The filters are consulted in turn, until one of " -"them returns a false value. If none of them return a false value, the record" -" will be emitted. If one returns a false value, the handler will not emit " -"the record." +"Apply this handler's filters to the record and return ``True`` if the record" +" is to be processed. The filters are consulted in turn, until one of them " +"returns a false value. If none of them return a false value, the record will" +" be emitted. If one returns a false value, the handler will not emit the " +"record." msgstr "" #: ../../library/logging.rst:459 diff --git a/library/lzma.po b/library/lzma.po index bc60cef..98f7186 100644 --- a/library/lzma.po +++ b/library/lzma.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:17+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -461,7 +461,8 @@ msgid "Miscellaneous" msgstr "" #: ../../library/lzma.rst:316 -msgid "Returns true if the given integrity check is supported on this system." +msgid "" +"Return ``True`` if the given integrity check is supported on this system." msgstr "" #: ../../library/lzma.rst:318 diff --git a/library/msvcrt.po b/library/msvcrt.po index 8f1d170..f8cbb23 100644 --- a/library/msvcrt.po +++ b/library/msvcrt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:19+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -107,7 +107,7 @@ msgid "Console I/O" msgstr "" #: ../../library/msvcrt.rst:95 -msgid "Return true if a keypress is waiting to be read." +msgid "Return ``True`` if a keypress is waiting to be read." msgstr "" #: ../../library/msvcrt.rst:100 diff --git a/library/multiprocessing.po b/library/multiprocessing.po index 8f3e973..2d3188c 100644 --- a/library/multiprocessing.po +++ b/library/multiprocessing.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-12-04 12:06+0000\n" "PO-Revision-Date: 2017-02-16 23:19+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -2346,7 +2346,7 @@ msgid "A variant of the :meth:`apply` method which returns a result object." msgstr "" #: ../../library/multiprocessing.rst:2157 -#: ../../library/multiprocessing.rst:2186 +#: ../../library/multiprocessing.rst:2187 msgid "" "If *callback* is specified then it should be a callable which accepts a " "single argument. When the result becomes ready *callback* is applied to it," @@ -2355,7 +2355,7 @@ msgid "" msgstr "" #: ../../library/multiprocessing.rst:2162 -#: ../../library/multiprocessing.rst:2191 +#: ../../library/multiprocessing.rst:2192 msgid "" "If *error_callback* is specified then it should be a callable which accepts " "a single argument. If the target function fails, then the *error_callback* " @@ -2363,7 +2363,7 @@ msgid "" msgstr "" #: ../../library/multiprocessing.rst:2166 -#: ../../library/multiprocessing.rst:2195 +#: ../../library/multiprocessing.rst:2196 msgid "" "Callbacks should complete immediately since otherwise the thread which " "handles the results will get blocked." @@ -2372,39 +2372,40 @@ msgstr "" #: ../../library/multiprocessing.rst:2171 msgid "" "A parallel equivalent of the :func:`map` built-in function (it supports only" -" one *iterable* argument though). It blocks until the result is ready." +" one *iterable* argument though, for multiple iterables see " +":meth:`starmap`). It blocks until the result is ready." msgstr "" -#: ../../library/multiprocessing.rst:2174 +#: ../../library/multiprocessing.rst:2175 msgid "" "This method chops the iterable into a number of chunks which it submits to " "the process pool as separate tasks. The (approximate) size of these chunks " "can be specified by setting *chunksize* to a positive integer." msgstr "" -#: ../../library/multiprocessing.rst:2178 +#: ../../library/multiprocessing.rst:2179 msgid "" "Note that it may cause high memory usage for very long iterables. Consider " "using :meth:`imap` or :meth:`imap_unordered` with explicit *chunksize* " "option for better efficiency." msgstr "" -#: ../../library/multiprocessing.rst:2184 +#: ../../library/multiprocessing.rst:2185 msgid "A variant of the :meth:`.map` method which returns a result object." msgstr "" -#: ../../library/multiprocessing.rst:2200 +#: ../../library/multiprocessing.rst:2201 msgid "A lazier version of :meth:`.map`." msgstr "" -#: ../../library/multiprocessing.rst:2202 +#: ../../library/multiprocessing.rst:2203 msgid "" "The *chunksize* argument is the same as the one used by the :meth:`.map` " "method. For very long iterables using a large value for *chunksize* can " "make the job complete **much** faster than using the default value of ``1``." msgstr "" -#: ../../library/multiprocessing.rst:2207 +#: ../../library/multiprocessing.rst:2208 msgid "" "Also if *chunksize* is ``1`` then the :meth:`!next` method of the iterator " "returned by the :meth:`imap` method has an optional *timeout* parameter: " @@ -2412,65 +2413,65 @@ msgid "" "result cannot be returned within *timeout* seconds." msgstr "" -#: ../../library/multiprocessing.rst:2214 +#: ../../library/multiprocessing.rst:2215 msgid "" "The same as :meth:`imap` except that the ordering of the results from the " "returned iterator should be considered arbitrary. (Only when there is only " "one worker process is the order guaranteed to be \"correct\".)" msgstr "" -#: ../../library/multiprocessing.rst:2220 +#: ../../library/multiprocessing.rst:2221 msgid "" "Like :meth:`map` except that the elements of the *iterable* are expected to " "be iterables that are unpacked as arguments." msgstr "" -#: ../../library/multiprocessing.rst:2223 +#: ../../library/multiprocessing.rst:2224 msgid "" "Hence an *iterable* of ``[(1,2), (3, 4)]`` results in ``[func(1,2), " "func(3,4)]``." msgstr "" -#: ../../library/multiprocessing.rst:2230 +#: ../../library/multiprocessing.rst:2231 msgid "" "A combination of :meth:`starmap` and :meth:`map_async` that iterates over " "*iterable* of iterables and calls *func* with the iterables unpacked. " "Returns a result object." msgstr "" -#: ../../library/multiprocessing.rst:2238 +#: ../../library/multiprocessing.rst:2239 msgid "" "Prevents any more tasks from being submitted to the pool. Once all the " "tasks have been completed the worker processes will exit." msgstr "" -#: ../../library/multiprocessing.rst:2243 +#: ../../library/multiprocessing.rst:2244 msgid "" "Stops the worker processes immediately without completing outstanding work." " When the pool object is garbage collected :meth:`terminate` will be called" " immediately." msgstr "" -#: ../../library/multiprocessing.rst:2249 +#: ../../library/multiprocessing.rst:2250 msgid "" "Wait for the worker processes to exit. One must call :meth:`close` or " ":meth:`terminate` before using :meth:`join`." msgstr "" -#: ../../library/multiprocessing.rst:2252 +#: ../../library/multiprocessing.rst:2253 msgid "" "Pool objects now support the context management protocol -- see " ":ref:`typecontextmanager`. :meth:`~contextmanager.__enter__` returns the " "pool object, and :meth:`~contextmanager.__exit__` calls :meth:`terminate`." msgstr "" -#: ../../library/multiprocessing.rst:2260 +#: ../../library/multiprocessing.rst:2261 msgid "" "The class of the result returned by :meth:`Pool.apply_async` and " ":meth:`Pool.map_async`." msgstr "" -#: ../../library/multiprocessing.rst:2265 +#: ../../library/multiprocessing.rst:2266 msgid "" "Return the result when it arrives. If *timeout* is not ``None`` and the " "result does not arrive within *timeout* seconds then " @@ -2478,41 +2479,41 @@ msgid "" " exception then that exception will be reraised by :meth:`get`." msgstr "" -#: ../../library/multiprocessing.rst:2272 +#: ../../library/multiprocessing.rst:2273 msgid "Wait until the result is available or until *timeout* seconds pass." msgstr "" -#: ../../library/multiprocessing.rst:2276 +#: ../../library/multiprocessing.rst:2277 msgid "Return whether the call has completed." msgstr "" -#: ../../library/multiprocessing.rst:2280 +#: ../../library/multiprocessing.rst:2281 msgid "" "Return whether the call completed without raising an exception. Will raise " ":exc:`AssertionError` if the result is not ready." msgstr "" -#: ../../library/multiprocessing.rst:2283 +#: ../../library/multiprocessing.rst:2284 msgid "" "If the result is not ready, :exc:`ValueError` is raised instead of " ":exc:`AssertionError`." msgstr "" -#: ../../library/multiprocessing.rst:2287 +#: ../../library/multiprocessing.rst:2288 msgid "The following example demonstrates the use of a pool::" msgstr "" -#: ../../library/multiprocessing.rst:2314 +#: ../../library/multiprocessing.rst:2315 msgid "Listeners and Clients" msgstr "" -#: ../../library/multiprocessing.rst:2319 +#: ../../library/multiprocessing.rst:2320 msgid "" "Usually message passing between processes is done using queues or by using " ":class:`~Connection` objects returned by :func:`~multiprocessing.Pipe`." msgstr "" -#: ../../library/multiprocessing.rst:2323 +#: ../../library/multiprocessing.rst:2324 msgid "" "However, the :mod:`multiprocessing.connection` module allows some extra " "flexibility. It basically gives a high level message oriented API for " @@ -2521,46 +2522,46 @@ msgid "" "multiple connections at the same time." msgstr "" -#: ../../library/multiprocessing.rst:2332 +#: ../../library/multiprocessing.rst:2333 msgid "" "Send a randomly generated message to the other end of the connection and " "wait for a reply." msgstr "" -#: ../../library/multiprocessing.rst:2335 +#: ../../library/multiprocessing.rst:2336 msgid "" "If the reply matches the digest of the message using *authkey* as the key " "then a welcome message is sent to the other end of the connection. " "Otherwise :exc:`~multiprocessing.AuthenticationError` is raised." msgstr "" -#: ../../library/multiprocessing.rst:2341 +#: ../../library/multiprocessing.rst:2342 msgid "" "Receive a message, calculate the digest of the message using *authkey* as " "the key, and then send the digest back." msgstr "" -#: ../../library/multiprocessing.rst:2344 +#: ../../library/multiprocessing.rst:2345 msgid "" "If a welcome message is not received, then " ":exc:`~multiprocessing.AuthenticationError` is raised." msgstr "" -#: ../../library/multiprocessing.rst:2349 +#: ../../library/multiprocessing.rst:2350 msgid "" "Attempt to set up a connection to the listener which is using address " "*address*, returning a :class:`~Connection`." msgstr "" -#: ../../library/multiprocessing.rst:2352 +#: ../../library/multiprocessing.rst:2353 msgid "" "The type of the connection is determined by *family* argument, but this can " "generally be omitted since it can usually be inferred from the format of " "*address*. (See :ref:`multiprocessing-address-formats`)" msgstr "" -#: ../../library/multiprocessing.rst:2356 -#: ../../library/multiprocessing.rst:2391 +#: ../../library/multiprocessing.rst:2357 +#: ../../library/multiprocessing.rst:2392 msgid "" "If *authkey* is given and not None, it should be a byte string and will be " "used as the secret key for an HMAC-based authentication challenge. No " @@ -2569,26 +2570,26 @@ msgid "" "fails. See :ref:`multiprocessing-auth-keys`." msgstr "" -#: ../../library/multiprocessing.rst:2364 +#: ../../library/multiprocessing.rst:2365 msgid "" "A wrapper for a bound socket or Windows named pipe which is 'listening' for " "connections." msgstr "" -#: ../../library/multiprocessing.rst:2367 +#: ../../library/multiprocessing.rst:2368 msgid "" "*address* is the address to be used by the bound socket or named pipe of the" " listener object." msgstr "" -#: ../../library/multiprocessing.rst:2372 +#: ../../library/multiprocessing.rst:2373 msgid "" "If an address of '0.0.0.0' is used, the address will not be a connectable " "end point on Windows. If you require a connectable end-point, you should use" " '127.0.0.1'." msgstr "" -#: ../../library/multiprocessing.rst:2376 +#: ../../library/multiprocessing.rst:2377 msgid "" "*family* is the type of socket (or named pipe) to use. This can be one of " "the strings ``'AF_INET'`` (for a TCP socket), ``'AF_UNIX'`` (for a Unix " @@ -2602,49 +2603,49 @@ msgid "" "using :func:`tempfile.mkstemp`." msgstr "" -#: ../../library/multiprocessing.rst:2387 +#: ../../library/multiprocessing.rst:2388 msgid "" "If the listener object uses a socket then *backlog* (1 by default) is passed" " to the :meth:`~socket.socket.listen` method of the socket once it has been " "bound." msgstr "" -#: ../../library/multiprocessing.rst:2399 +#: ../../library/multiprocessing.rst:2400 msgid "" "Accept a connection on the bound socket or named pipe of the listener object" " and return a :class:`~Connection` object. If authentication is attempted " "and fails, then :exc:`~multiprocessing.AuthenticationError` is raised." msgstr "" -#: ../../library/multiprocessing.rst:2406 +#: ../../library/multiprocessing.rst:2407 msgid "" "Close the bound socket or named pipe of the listener object. This is called" " automatically when the listener is garbage collected. However it is " "advisable to call it explicitly." msgstr "" -#: ../../library/multiprocessing.rst:2410 +#: ../../library/multiprocessing.rst:2411 msgid "Listener objects have the following read-only properties:" msgstr "" -#: ../../library/multiprocessing.rst:2414 +#: ../../library/multiprocessing.rst:2415 msgid "The address which is being used by the Listener object." msgstr "" -#: ../../library/multiprocessing.rst:2418 +#: ../../library/multiprocessing.rst:2419 msgid "" "The address from which the last accepted connection came. If this is " "unavailable then it is ``None``." msgstr "" -#: ../../library/multiprocessing.rst:2421 +#: ../../library/multiprocessing.rst:2422 msgid "" "Listener objects now support the context management protocol -- see " ":ref:`typecontextmanager`. :meth:`~contextmanager.__enter__` returns the " "listener object, and :meth:`~contextmanager.__exit__` calls :meth:`close`." msgstr "" -#: ../../library/multiprocessing.rst:2428 +#: ../../library/multiprocessing.rst:2429 msgid "" "Wait till an object in *object_list* is ready. Returns the list of those " "objects in *object_list* which are ready. If *timeout* is a float then the " @@ -2653,32 +2654,32 @@ msgid "" "zero timeout." msgstr "" -#: ../../library/multiprocessing.rst:2434 +#: ../../library/multiprocessing.rst:2435 msgid "" "For both Unix and Windows, an object can appear in *object_list* if it is" msgstr "" -#: ../../library/multiprocessing.rst:2437 +#: ../../library/multiprocessing.rst:2438 msgid "a readable :class:`~multiprocessing.connection.Connection` object;" msgstr "" -#: ../../library/multiprocessing.rst:2438 +#: ../../library/multiprocessing.rst:2439 msgid "a connected and readable :class:`socket.socket` object; or" msgstr "" -#: ../../library/multiprocessing.rst:2439 +#: ../../library/multiprocessing.rst:2440 msgid "" "the :attr:`~multiprocessing.Process.sentinel` attribute of a " ":class:`~multiprocessing.Process` object." msgstr "" -#: ../../library/multiprocessing.rst:2442 +#: ../../library/multiprocessing.rst:2443 msgid "" "A connection or socket object is ready when there is data available to be " "read from it, or the other end has been closed." msgstr "" -#: ../../library/multiprocessing.rst:2445 +#: ../../library/multiprocessing.rst:2446 msgid "" "**Unix**: ``wait(object_list, timeout)`` almost equivalent " "``select.select(object_list, [], [], timeout)``. The difference is that, if" @@ -2687,7 +2688,7 @@ msgid "" "not." msgstr "" -#: ../../library/multiprocessing.rst:2451 +#: ../../library/multiprocessing.rst:2452 msgid "" "**Windows**: An item in *object_list* must either be an integer handle which" " is waitable (according to the definition used by the documentation of the " @@ -2696,50 +2697,50 @@ msgid "" "that pipe handles and socket handles are **not** waitable handles.)" msgstr "" -#: ../../library/multiprocessing.rst:2461 +#: ../../library/multiprocessing.rst:2462 msgid "**Examples**" msgstr "**Examples**" -#: ../../library/multiprocessing.rst:2463 +#: ../../library/multiprocessing.rst:2464 msgid "" "The following server code creates a listener which uses ``'secret " "password'`` as an authentication key. It then waits for a connection and " "sends some data to the client::" msgstr "" -#: ../../library/multiprocessing.rst:2482 +#: ../../library/multiprocessing.rst:2483 msgid "" "The following code connects to the server and receives some data from the " "server::" msgstr "" -#: ../../library/multiprocessing.rst:2499 +#: ../../library/multiprocessing.rst:2500 msgid "" "The following code uses :func:`~multiprocessing.connection.wait` to wait for" " messages from multiple processes at once::" msgstr "" -#: ../../library/multiprocessing.rst:2538 +#: ../../library/multiprocessing.rst:2539 msgid "Address Formats" msgstr "" -#: ../../library/multiprocessing.rst:2540 +#: ../../library/multiprocessing.rst:2541 msgid "" "An ``'AF_INET'`` address is a tuple of the form ``(hostname, port)`` where " "*hostname* is a string and *port* is an integer." msgstr "" -#: ../../library/multiprocessing.rst:2543 +#: ../../library/multiprocessing.rst:2544 msgid "" "An ``'AF_UNIX'`` address is a string representing a filename on the " "filesystem." msgstr "" -#: ../../library/multiprocessing.rst:2549 +#: ../../library/multiprocessing.rst:2550 msgid "An ``'AF_PIPE'`` address is a string of the form" msgstr "" -#: ../../library/multiprocessing.rst:2547 +#: ../../library/multiprocessing.rst:2548 msgid "" ":samp:`r'\\\\\\\\.\\\\pipe\\\\{PipeName}'`. To use :func:`Client` to " "connect to a named pipe on a remote computer called *ServerName* one should " @@ -2747,17 +2748,17 @@ msgid "" ":samp:`r'\\\\\\\\{ServerName}\\\\pipe\\\\{PipeName}'` instead." msgstr "" -#: ../../library/multiprocessing.rst:2551 +#: ../../library/multiprocessing.rst:2552 msgid "" "Note that any string beginning with two backslashes is assumed by default to" " be an ``'AF_PIPE'`` address rather than an ``'AF_UNIX'`` address." msgstr "" -#: ../../library/multiprocessing.rst:2558 +#: ../../library/multiprocessing.rst:2559 msgid "Authentication keys" msgstr "" -#: ../../library/multiprocessing.rst:2560 +#: ../../library/multiprocessing.rst:2561 msgid "" "When one uses :meth:`Connection.recv `, the data received " "is automatically unpickled. Unfortunately unpickling data from an untrusted " @@ -2765,7 +2766,7 @@ msgid "" "use the :mod:`hmac` module to provide digest authentication." msgstr "" -#: ../../library/multiprocessing.rst:2566 +#: ../../library/multiprocessing.rst:2567 msgid "" "An authentication key is a byte string which can be thought of as a " "password: once a connection is established both ends will demand proof that " @@ -2774,7 +2775,7 @@ msgid "" "connection.)" msgstr "" -#: ../../library/multiprocessing.rst:2572 +#: ../../library/multiprocessing.rst:2573 msgid "" "If authentication is requested but no authentication key is specified then " "the return value of ``current_process().authkey`` is used (see " @@ -2785,17 +2786,17 @@ msgid "" "when setting up connections between themselves." msgstr "" -#: ../../library/multiprocessing.rst:2580 +#: ../../library/multiprocessing.rst:2581 msgid "" "Suitable authentication keys can also be generated by using " ":func:`os.urandom`." msgstr "" -#: ../../library/multiprocessing.rst:2584 +#: ../../library/multiprocessing.rst:2585 msgid "Logging" msgstr "Pencatatan *Logging*" -#: ../../library/multiprocessing.rst:2586 +#: ../../library/multiprocessing.rst:2587 msgid "" "Some support for logging is available. Note, however, that the " ":mod:`logging` package does not use process shared locks so it is possible " @@ -2803,27 +2804,27 @@ msgid "" " mixed up." msgstr "" -#: ../../library/multiprocessing.rst:2593 +#: ../../library/multiprocessing.rst:2594 msgid "" "Returns the logger used by :mod:`multiprocessing`. If necessary, a new one " "will be created." msgstr "" -#: ../../library/multiprocessing.rst:2596 +#: ../../library/multiprocessing.rst:2597 msgid "" "When first created the logger has level :data:`logging.NOTSET` and no " "default handler. Messages sent to this logger will not by default propagate " "to the root logger." msgstr "" -#: ../../library/multiprocessing.rst:2600 +#: ../../library/multiprocessing.rst:2601 msgid "" "Note that on Windows child processes will only inherit the level of the " "parent process's logger -- any other customization of the logger will not be" " inherited." msgstr "" -#: ../../library/multiprocessing.rst:2607 +#: ../../library/multiprocessing.rst:2608 msgid "" "This function performs a call to :func:`get_logger` but in addition to " "returning the logger created by get_logger, it adds a handler which sends " @@ -2831,87 +2832,87 @@ msgid "" " %(message)s'``." msgstr "" -#: ../../library/multiprocessing.rst:2612 +#: ../../library/multiprocessing.rst:2613 msgid "Below is an example session with logging turned on::" msgstr "" -#: ../../library/multiprocessing.rst:2627 +#: ../../library/multiprocessing.rst:2628 msgid "For a full table of logging levels, see the :mod:`logging` module." msgstr "" -#: ../../library/multiprocessing.rst:2631 +#: ../../library/multiprocessing.rst:2632 msgid "The :mod:`multiprocessing.dummy` module" msgstr "" -#: ../../library/multiprocessing.rst:2636 +#: ../../library/multiprocessing.rst:2637 msgid "" ":mod:`multiprocessing.dummy` replicates the API of :mod:`multiprocessing` " "but is no more than a wrapper around the :mod:`threading` module." msgstr "" -#: ../../library/multiprocessing.rst:2643 +#: ../../library/multiprocessing.rst:2644 msgid "Programming guidelines" msgstr "" -#: ../../library/multiprocessing.rst:2645 +#: ../../library/multiprocessing.rst:2646 msgid "" "There are certain guidelines and idioms which should be adhered to when " "using :mod:`multiprocessing`." msgstr "" -#: ../../library/multiprocessing.rst:2650 +#: ../../library/multiprocessing.rst:2651 msgid "All start methods" msgstr "" -#: ../../library/multiprocessing.rst:2652 +#: ../../library/multiprocessing.rst:2653 msgid "The following applies to all start methods." msgstr "" -#: ../../library/multiprocessing.rst:2654 +#: ../../library/multiprocessing.rst:2655 msgid "Avoid shared state" msgstr "" -#: ../../library/multiprocessing.rst:2656 +#: ../../library/multiprocessing.rst:2657 msgid "" "As far as possible one should try to avoid shifting large amounts of data " "between processes." msgstr "" -#: ../../library/multiprocessing.rst:2659 +#: ../../library/multiprocessing.rst:2660 msgid "" "It is probably best to stick to using queues or pipes for communication " "between processes rather than using the lower level synchronization " "primitives." msgstr "" -#: ../../library/multiprocessing.rst:2663 +#: ../../library/multiprocessing.rst:2664 msgid "Picklability" msgstr "" -#: ../../library/multiprocessing.rst:2665 +#: ../../library/multiprocessing.rst:2666 msgid "Ensure that the arguments to the methods of proxies are picklable." msgstr "" -#: ../../library/multiprocessing.rst:2667 +#: ../../library/multiprocessing.rst:2668 msgid "Thread safety of proxies" msgstr "" -#: ../../library/multiprocessing.rst:2669 +#: ../../library/multiprocessing.rst:2670 msgid "" "Do not use a proxy object from more than one thread unless you protect it " "with a lock." msgstr "" -#: ../../library/multiprocessing.rst:2672 +#: ../../library/multiprocessing.rst:2673 msgid "" "(There is never a problem with different processes using the *same* proxy.)" msgstr "" -#: ../../library/multiprocessing.rst:2674 +#: ../../library/multiprocessing.rst:2675 msgid "Joining zombie processes" msgstr "" -#: ../../library/multiprocessing.rst:2676 +#: ../../library/multiprocessing.rst:2677 msgid "" "On Unix when a process finishes but has not been joined it becomes a zombie." " There should never be very many because each time a new process starts (or " @@ -2922,11 +2923,11 @@ msgid "" "all the processes that you start." msgstr "" -#: ../../library/multiprocessing.rst:2684 +#: ../../library/multiprocessing.rst:2685 msgid "Better to inherit than pickle/unpickle" msgstr "" -#: ../../library/multiprocessing.rst:2686 +#: ../../library/multiprocessing.rst:2687 msgid "" "When using the *spawn* or *forkserver* start methods many types from " ":mod:`multiprocessing` need to be picklable so that child processes can use " @@ -2936,11 +2937,11 @@ msgid "" " inherit it from an ancestor process." msgstr "" -#: ../../library/multiprocessing.rst:2694 +#: ../../library/multiprocessing.rst:2695 msgid "Avoid terminating processes" msgstr "" -#: ../../library/multiprocessing.rst:2696 +#: ../../library/multiprocessing.rst:2697 msgid "" "Using the :meth:`Process.terminate ` " "method to stop a process is liable to cause any shared resources (such as " @@ -2948,18 +2949,18 @@ msgid "" "become broken or unavailable to other processes." msgstr "" -#: ../../library/multiprocessing.rst:2702 +#: ../../library/multiprocessing.rst:2703 msgid "" "Therefore it is probably best to only consider using " ":meth:`Process.terminate ` on processes " "which never use any shared resources." msgstr "" -#: ../../library/multiprocessing.rst:2706 +#: ../../library/multiprocessing.rst:2707 msgid "Joining processes that use queues" msgstr "" -#: ../../library/multiprocessing.rst:2708 +#: ../../library/multiprocessing.rst:2709 msgid "" "Bear in mind that a process that has put items in a queue will wait before " "terminating until all the buffered items are fed by the \"feeder\" thread to" @@ -2968,7 +2969,7 @@ msgid "" "method of the queue to avoid this behaviour.)" msgstr "" -#: ../../library/multiprocessing.rst:2714 +#: ../../library/multiprocessing.rst:2715 msgid "" "This means that whenever you use a queue you need to make sure that all " "items which have been put on the queue will eventually be removed before the" @@ -2977,21 +2978,21 @@ msgid "" "processes will be joined automatically." msgstr "" -#: ../../library/multiprocessing.rst:2720 +#: ../../library/multiprocessing.rst:2721 msgid "An example which will deadlock is the following::" msgstr "" -#: ../../library/multiprocessing.rst:2734 +#: ../../library/multiprocessing.rst:2735 msgid "" "A fix here would be to swap the last two lines (or simply remove the " "``p.join()`` line)." msgstr "" -#: ../../library/multiprocessing.rst:2737 +#: ../../library/multiprocessing.rst:2738 msgid "Explicitly pass resources to child processes" msgstr "" -#: ../../library/multiprocessing.rst:2739 +#: ../../library/multiprocessing.rst:2740 msgid "" "On Unix using the *fork* start method, a child process can make use of a " "shared resource created in a parent process using a global resource. " @@ -2999,7 +3000,7 @@ msgid "" "for the child process." msgstr "" -#: ../../library/multiprocessing.rst:2744 +#: ../../library/multiprocessing.rst:2745 msgid "" "Apart from making the code (potentially) compatible with Windows and the " "other start methods this also ensures that as long as the child process is " @@ -3008,29 +3009,29 @@ msgid "" "garbage collected in the parent process." msgstr "" -#: ../../library/multiprocessing.rst:2751 +#: ../../library/multiprocessing.rst:2752 msgid "So for instance ::" msgstr "" -#: ../../library/multiprocessing.rst:2763 +#: ../../library/multiprocessing.rst:2764 msgid "should be rewritten as ::" msgstr "" -#: ../../library/multiprocessing.rst:2775 +#: ../../library/multiprocessing.rst:2776 msgid "Beware of replacing :data:`sys.stdin` with a \"file like object\"" msgstr "" -#: ../../library/multiprocessing.rst:2777 +#: ../../library/multiprocessing.rst:2778 msgid ":mod:`multiprocessing` originally unconditionally called::" msgstr "" -#: ../../library/multiprocessing.rst:2781 +#: ../../library/multiprocessing.rst:2782 msgid "" "in the :meth:`multiprocessing.Process._bootstrap` method --- this resulted " "in issues with processes-in-processes. This has been changed to::" msgstr "" -#: ../../library/multiprocessing.rst:2787 +#: ../../library/multiprocessing.rst:2788 msgid "" "Which solves the fundamental issue of processes colliding with each other " "resulting in a bad file descriptor error, but introduces a potential danger " @@ -3041,33 +3042,33 @@ msgid "" "corruption." msgstr "" -#: ../../library/multiprocessing.rst:2794 +#: ../../library/multiprocessing.rst:2795 msgid "" "If you write a file-like object and implement your own caching, you can make" " it fork-safe by storing the pid whenever you append to the cache, and " "discarding the cache when the pid changes. For example::" msgstr "" -#: ../../library/multiprocessing.rst:2806 +#: ../../library/multiprocessing.rst:2807 msgid "" "For more information, see :issue:`5155`, :issue:`5313` and :issue:`5331`" msgstr "" -#: ../../library/multiprocessing.rst:2809 +#: ../../library/multiprocessing.rst:2810 msgid "The *spawn* and *forkserver* start methods" msgstr "" -#: ../../library/multiprocessing.rst:2811 +#: ../../library/multiprocessing.rst:2812 msgid "" "There are a few extra restriction which don't apply to the *fork* start " "method." msgstr "" -#: ../../library/multiprocessing.rst:2814 +#: ../../library/multiprocessing.rst:2815 msgid "More picklability" msgstr "" -#: ../../library/multiprocessing.rst:2816 +#: ../../library/multiprocessing.rst:2817 msgid "" "Ensure that all arguments to :meth:`Process.__init__` are picklable. Also, " "if you subclass :class:`~multiprocessing.Process` then make sure that " @@ -3075,11 +3076,11 @@ msgid "" "` method is called." msgstr "" -#: ../../library/multiprocessing.rst:2821 +#: ../../library/multiprocessing.rst:2822 msgid "Global variables" msgstr "" -#: ../../library/multiprocessing.rst:2823 +#: ../../library/multiprocessing.rst:2824 msgid "" "Bear in mind that if code run in a child process tries to access a global " "variable, then the value it sees (if any) may not be the same as the value " @@ -3087,67 +3088,67 @@ msgid "" "` was called." msgstr "" -#: ../../library/multiprocessing.rst:2828 +#: ../../library/multiprocessing.rst:2829 msgid "" "However, global variables which are just module level constants cause no " "problems." msgstr "" -#: ../../library/multiprocessing.rst:2831 +#: ../../library/multiprocessing.rst:2832 msgid "Safe importing of main module" msgstr "" -#: ../../library/multiprocessing.rst:2833 +#: ../../library/multiprocessing.rst:2834 msgid "" "Make sure that the main module can be safely imported by a new Python " "interpreter without causing unintended side effects (such a starting a new " "process)." msgstr "" -#: ../../library/multiprocessing.rst:2837 +#: ../../library/multiprocessing.rst:2838 msgid "" "For example, using the *spawn* or *forkserver* start method running the " "following module would fail with a :exc:`RuntimeError`::" msgstr "" -#: ../../library/multiprocessing.rst:2849 +#: ../../library/multiprocessing.rst:2850 msgid "" "Instead one should protect the \"entry point\" of the program by using ``if " "__name__ == '__main__':`` as follows::" msgstr "" -#: ../../library/multiprocessing.rst:2863 +#: ../../library/multiprocessing.rst:2864 msgid "" "(The ``freeze_support()`` line can be omitted if the program will be run " "normally instead of frozen.)" msgstr "" -#: ../../library/multiprocessing.rst:2866 +#: ../../library/multiprocessing.rst:2867 msgid "" "This allows the newly spawned Python interpreter to safely import the module" " and then run the module's ``foo()`` function." msgstr "" -#: ../../library/multiprocessing.rst:2869 +#: ../../library/multiprocessing.rst:2870 msgid "" "Similar restrictions apply if a pool or manager is created in the main " "module." msgstr "" -#: ../../library/multiprocessing.rst:2876 +#: ../../library/multiprocessing.rst:2877 msgid "Examples" msgstr "Contoh-contoh" -#: ../../library/multiprocessing.rst:2878 +#: ../../library/multiprocessing.rst:2879 msgid "" "Demonstration of how to create and use customized managers and proxies:" msgstr "" -#: ../../library/multiprocessing.rst:2884 +#: ../../library/multiprocessing.rst:2885 msgid "Using :class:`~multiprocessing.pool.Pool`:" msgstr "" -#: ../../library/multiprocessing.rst:2890 +#: ../../library/multiprocessing.rst:2891 msgid "" "An example showing how to use queues to feed tasks to a collection of worker" " processes and collect the results:" diff --git a/library/optparse.po b/library/optparse.po index 1464cf4..6d6d7e5 100644 --- a/library/optparse.po +++ b/library/optparse.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:20+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -1114,7 +1114,7 @@ msgid "``\"store_true\"``" msgstr "" #: ../../library/optparse.rst:931 -msgid "store a true value" +msgid "store ``True``" msgstr "" #: ../../library/optparse.rst:934 @@ -1122,7 +1122,7 @@ msgid "``\"store_false\"``" msgstr "" #: ../../library/optparse.rst:934 -msgid "store a false value" +msgid "store ``False``" msgstr "" #: ../../library/optparse.rst:940 @@ -1370,7 +1370,7 @@ msgstr "" #: ../../library/optparse.rst:1138 msgid "" -"A special case of ``\"store_const\"`` that stores a true value to " +"A special case of ``\"store_const\"`` that stores ``True`` to " ":attr:`~Option.dest`." msgstr "" @@ -1379,7 +1379,7 @@ msgid "``\"store_false\"`` [relevant: :attr:`~Option.dest`]" msgstr "" #: ../../library/optparse.rst:1143 -msgid "Like ``\"store_true\"``, but stores a false value." +msgid "Like ``\"store_true\"``, but stores ``False``." msgstr "" #: ../../library/optparse.rst:1150 @@ -1702,8 +1702,8 @@ msgstr "" #: ../../library/optparse.rst:1399 msgid "" -"Return true if the OptionParser has an option with option string *opt_str* " -"(e.g., ``-q`` or ``--verbose``)." +"Return ``True`` if the OptionParser has an option with option string " +"*opt_str* (e.g., ``-q`` or ``--verbose``)." msgstr "" #: ../../library/optparse.rst:1404 diff --git a/library/os.po b/library/os.po index e41156f..c4d670f 100644 --- a/library/os.po +++ b/library/os.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-07 11:22+0000\n" +"POT-Creation-Date: 2019-11-16 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:20+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -181,20 +181,20 @@ msgstr "" #: ../../library/os.rst:3430 ../../library/os.rst:3439 #: ../../library/os.rst:3447 ../../library/os.rst:3455 #: ../../library/os.rst:3462 ../../library/os.rst:3469 -#: ../../library/os.rst:3484 ../../library/os.rst:3529 -#: ../../library/os.rst:3536 ../../library/os.rst:3544 -#: ../../library/os.rst:3653 ../../library/os.rst:3699 -#: ../../library/os.rst:3903 ../../library/os.rst:3919 -#: ../../library/os.rst:3930 ../../library/os.rst:3941 -#: ../../library/os.rst:3954 ../../library/os.rst:4000 -#: ../../library/os.rst:4011 ../../library/os.rst:4019 -#: ../../library/os.rst:4035 ../../library/os.rst:4047 -#: ../../library/os.rst:4055 ../../library/os.rst:4063 -#: ../../library/os.rst:4071 ../../library/os.rst:4079 -#: ../../library/os.rst:4087 ../../library/os.rst:4094 -#: ../../library/os.rst:4101 ../../library/os.rst:4247 -#: ../../library/os.rst:4256 ../../library/os.rst:4277 -#: ../../library/os.rst:4287 ../../library/os.rst:4296 +#: ../../library/os.rst:3488 ../../library/os.rst:3537 +#: ../../library/os.rst:3544 ../../library/os.rst:3552 +#: ../../library/os.rst:3661 ../../library/os.rst:3707 +#: ../../library/os.rst:3911 ../../library/os.rst:3927 +#: ../../library/os.rst:3938 ../../library/os.rst:3949 +#: ../../library/os.rst:3962 ../../library/os.rst:4008 +#: ../../library/os.rst:4019 ../../library/os.rst:4027 +#: ../../library/os.rst:4043 ../../library/os.rst:4055 +#: ../../library/os.rst:4063 ../../library/os.rst:4071 +#: ../../library/os.rst:4079 ../../library/os.rst:4087 +#: ../../library/os.rst:4095 ../../library/os.rst:4102 +#: ../../library/os.rst:4109 ../../library/os.rst:4255 +#: ../../library/os.rst:4264 ../../library/os.rst:4285 +#: ../../library/os.rst:4295 ../../library/os.rst:4304 msgid ":ref:`Availability `: Unix." msgstr ":ref:`Availability `: Unix." @@ -266,7 +266,7 @@ msgstr "" #: ../../library/os.rst:150 msgid "" ":data:`environb` is only available if :data:`supports_bytes_environ` is " -"True." +"``True``." msgstr "" #: ../../library/os.rst:161 @@ -354,7 +354,8 @@ msgstr "" #: ../../library/os.rst:238 msgid "" -":func:`getenvb` is only available if :data:`supports_bytes_environ` is True." +":func:`getenvb` is only available if :data:`supports_bytes_environ` is " +"``True``." msgstr "" #: ../../library/os.rst:242 @@ -427,8 +428,8 @@ msgstr "" #: ../../library/os.rst:1416 ../../library/os.rst:1787 #: ../../library/os.rst:2053 ../../library/os.rst:2824 #: ../../library/os.rst:2858 ../../library/os.rst:3317 -#: ../../library/os.rst:3782 ../../library/os.rst:3793 -#: ../../library/os.rst:3863 ../../library/os.rst:3889 +#: ../../library/os.rst:3790 ../../library/os.rst:3801 +#: ../../library/os.rst:3871 ../../library/os.rst:3897 msgid ":ref:`Availability `: Unix, Windows." msgstr ":ref:`Availability `: Unix, Windows." @@ -665,7 +666,7 @@ msgstr "" msgid ":ref:`Availability `: recent flavors of Unix." msgstr "" -#: ../../library/os.rst:628 ../../library/os.rst:3890 +#: ../../library/os.rst:628 ../../library/os.rst:3898 msgid "" "Return type changed from a tuple to a tuple-like object with named " "attributes." @@ -1009,7 +1010,7 @@ msgid "The *dir_fd* argument." msgstr "" #: ../../library/os.rst:956 ../../library/os.rst:1248 -#: ../../library/os.rst:1371 ../../library/os.rst:3985 +#: ../../library/os.rst:1371 ../../library/os.rst:3993 msgid "" "If the system call is interrupted and the signal handler does not raise an " "exception, the function now retries the system call instead of raising an " @@ -1033,7 +1034,7 @@ msgstr "" #: ../../library/os.rst:2864 ../../library/os.rst:2878 #: ../../library/os.rst:2916 ../../library/os.rst:3009 #: ../../library/os.rst:3068 ../../library/os.rst:3151 -#: ../../library/os.rst:3322 ../../library/os.rst:3770 +#: ../../library/os.rst:3322 ../../library/os.rst:3778 msgid "Accepts a :term:`path-like object`." msgstr "Menerima sebuah :term:`path-like object`." @@ -1084,7 +1085,7 @@ msgid "" msgstr "" #: ../../library/os.rst:1035 ../../library/os.rst:1061 -#: ../../library/os.rst:3495 +#: ../../library/os.rst:3503 msgid ":ref:`Availability `: some flavors of Unix." msgstr "" @@ -1491,8 +1492,8 @@ msgid "Get the \"inheritable\" flag of the specified handle (a boolean)." msgstr "" #: ../../library/os.rst:1465 ../../library/os.rst:1471 -#: ../../library/os.rst:3251 ../../library/os.rst:3805 -#: ../../library/os.rst:3834 +#: ../../library/os.rst:3251 ../../library/os.rst:3813 +#: ../../library/os.rst:3842 msgid ":ref:`Availability `: Windows." msgstr ":ref:`Availability `: Windows." @@ -3623,14 +3624,20 @@ msgstr "" #: ../../library/os.rst:3477 msgid "" "Note that some platforms including FreeBSD <= 6.3 and Cygwin have known " -"issues when using fork() from a thread." +"issues when using ``fork()`` from a thread." msgstr "" -#: ../../library/os.rst:3482 +#: ../../library/os.rst:3480 +msgid "" +"Calling ``fork()`` in a subinterpreter is no longer supported " +"(:exc:`RuntimeError` is raised)." +msgstr "" + +#: ../../library/os.rst:3486 msgid "See :mod:`ssl` for applications that use the SSL module with fork()." msgstr "" -#: ../../library/os.rst:3489 +#: ../../library/os.rst:3493 msgid "" "Fork a child process, using a new pseudo-terminal as the child's controlling" " terminal. Return a pair of ``(pid, fd)``, where *pid* is ``0`` in the " @@ -3640,13 +3647,19 @@ msgid "" "raised." msgstr "" -#: ../../library/os.rst:3504 +#: ../../library/os.rst:3499 +msgid "" +"Calling ``forkpty()`` in a subinterpreter is no longer supported " +"(:exc:`RuntimeError` is raised)." +msgstr "" + +#: ../../library/os.rst:3512 msgid "" "Send signal *sig* to the process *pid*. Constants for the specific signals " "available on the host platform are defined in the :mod:`signal` module." msgstr "" -#: ../../library/os.rst:3507 +#: ../../library/os.rst:3515 msgid "" "Windows: The :data:`signal.CTRL_C_EVENT` and :data:`signal.CTRL_BREAK_EVENT`" " signals are special signals which can only be sent to console processes " @@ -3656,29 +3669,29 @@ msgid "" "version of :func:`kill` additionally takes process handles to be killed." msgstr "" -#: ../../library/os.rst:3515 +#: ../../library/os.rst:3523 msgid "See also :func:`signal.pthread_kill`." msgstr "" -#: ../../library/os.rst:3517 +#: ../../library/os.rst:3525 msgid "Windows support." msgstr "" -#: ../../library/os.rst:3527 +#: ../../library/os.rst:3535 msgid "Send the signal *sig* to the process group *pgid*." msgstr "" -#: ../../library/os.rst:3534 +#: ../../library/os.rst:3542 msgid "Add *increment* to the process's \"niceness\". Return the new niceness." msgstr "" -#: ../../library/os.rst:3541 +#: ../../library/os.rst:3549 msgid "" "Lock program segments into memory. The value of *op* (defined in " "````) determines which segments are locked." msgstr "" -#: ../../library/os.rst:3549 +#: ../../library/os.rst:3557 msgid "" "Open a pipe to or from command *cmd*. The return value is an open file " "object connected to the pipe, which can be read or written depending on " @@ -3688,7 +3701,7 @@ msgid "" " bytes." msgstr "" -#: ../../library/os.rst:3556 +#: ../../library/os.rst:3564 msgid "" "The ``close`` method returns :const:`None` if the subprocess exited " "successfully, or the subprocess's return code if there was an error. On " @@ -3700,36 +3713,36 @@ msgid "" "contains the signed integer return code from the child process." msgstr "" -#: ../../library/os.rst:3566 +#: ../../library/os.rst:3574 msgid "" "This is implemented using :class:`subprocess.Popen`; see that class's " "documentation for more powerful ways to manage and communicate with " "subprocesses." msgstr "" -#: ../../library/os.rst:3575 +#: ../../library/os.rst:3583 msgid "Wraps the :c:func:`posix_spawn` C library API for use from Python." msgstr "" -#: ../../library/os.rst:3577 +#: ../../library/os.rst:3585 msgid "" "Most users should use :func:`subprocess.run` instead of :func:`posix_spawn`." msgstr "" -#: ../../library/os.rst:3579 +#: ../../library/os.rst:3587 msgid "" "The positional-only arguments *path*, *args*, and *env* are similar to " ":func:`execve`." msgstr "" -#: ../../library/os.rst:3582 +#: ../../library/os.rst:3590 msgid "" "The *path* parameter is the path to the executable file.The *path* should " "contain a directory.Use :func:`posix_spawnp` to pass an executable file " "without directory." msgstr "" -#: ../../library/os.rst:3586 +#: ../../library/os.rst:3594 msgid "" "The *file_actions* argument may be a sequence of tuples describing actions " "to take on specific file descriptors in the child process between the C " @@ -3738,31 +3751,31 @@ msgid "" "describing the remaining tuple elements:" msgstr "" -#: ../../library/os.rst:3594 +#: ../../library/os.rst:3602 msgid "(``os.POSIX_SPAWN_OPEN``, *fd*, *path*, *flags*, *mode*)" msgstr "" -#: ../../library/os.rst:3596 +#: ../../library/os.rst:3604 msgid "Performs ``os.dup2(os.open(path, flags, mode), fd)``." msgstr "" -#: ../../library/os.rst:3600 +#: ../../library/os.rst:3608 msgid "(``os.POSIX_SPAWN_CLOSE``, *fd*)" msgstr "" -#: ../../library/os.rst:3602 +#: ../../library/os.rst:3610 msgid "Performs ``os.close(fd)``." msgstr "" -#: ../../library/os.rst:3606 +#: ../../library/os.rst:3614 msgid "(``os.POSIX_SPAWN_DUP2``, *fd*, *new_fd*)" msgstr "" -#: ../../library/os.rst:3608 +#: ../../library/os.rst:3616 msgid "Performs ``os.dup2(fd, new_fd)``." msgstr "" -#: ../../library/os.rst:3610 +#: ../../library/os.rst:3618 msgid "" "These tuples correspond to the C library " ":c:func:`posix_spawn_file_actions_addopen`, " @@ -3771,7 +3784,7 @@ msgid "" " :c:func:`posix_spawn` call itself." msgstr "" -#: ../../library/os.rst:3616 +#: ../../library/os.rst:3624 msgid "" "The *setpgroup* argument will set the process group of the child to the " "value specified. If the value specified is 0, the child's process group ID " @@ -3780,7 +3793,7 @@ msgid "" "corresponds to the C library :c:data:`POSIX_SPAWN_SETPGROUP` flag." msgstr "" -#: ../../library/os.rst:3622 +#: ../../library/os.rst:3630 msgid "" "If the *resetids* argument is ``True`` it will reset the effective UID and " "GID of the child to the real UID and GID of the parent process. If the " @@ -3791,7 +3804,7 @@ msgid "" "library :c:data:`POSIX_SPAWN_RESETIDS` flag." msgstr "" -#: ../../library/os.rst:3630 +#: ../../library/os.rst:3638 msgid "" "If the *setsid* argument is ``True``, it will create a new session ID for " "`posix_spawn`. *setsid* requires :c:data:`POSIX_SPAWN_SETSID` or " @@ -3799,7 +3812,7 @@ msgid "" "is raised." msgstr "" -#: ../../library/os.rst:3635 +#: ../../library/os.rst:3643 msgid "" "The *setsigmask* argument will set the signal mask to the signal set " "specified. If the parameter is not used, then the child inherits the " @@ -3807,14 +3820,14 @@ msgid "" ":c:data:`POSIX_SPAWN_SETSIGMASK` flag." msgstr "" -#: ../../library/os.rst:3640 +#: ../../library/os.rst:3648 msgid "" "The *sigdef* argument will reset the disposition of all signals in the set " "specified. This argument corresponds to the C library " ":c:data:`POSIX_SPAWN_SETSIGDEF` flag." msgstr "" -#: ../../library/os.rst:3644 +#: ../../library/os.rst:3652 msgid "" "The *scheduler* argument must be a tuple containing the (optional) scheduler" " policy and an instance of :class:`sched_param` with the scheduler " @@ -3824,73 +3837,73 @@ msgid "" ":c:data:`POSIX_SPAWN_SETSCHEDULER` flags." msgstr "" -#: ../../library/os.rst:3659 +#: ../../library/os.rst:3667 msgid "Wraps the :c:func:`posix_spawnp` C library API for use from Python." msgstr "" -#: ../../library/os.rst:3661 +#: ../../library/os.rst:3669 msgid "" "Similar to :func:`posix_spawn` except that the system searches for the " "*executable* file in the list of directories specified by the :envvar:`PATH`" " environment variable (in the same way as for ``execvp(3)``)." msgstr "" -#: ../../library/os.rst:3667 +#: ../../library/os.rst:3675 msgid "" ":ref:`Availability `: See :func:`posix_spawn` documentation." msgstr "" -#: ../../library/os.rst:3673 +#: ../../library/os.rst:3681 msgid "" "Register callables to be executed when a new child process is forked using " ":func:`os.fork` or similar process cloning APIs. The parameters are optional" " and keyword-only. Each specifies a different call point." msgstr "" -#: ../../library/os.rst:3678 +#: ../../library/os.rst:3686 msgid "*before* is a function called before forking a child process." msgstr "" -#: ../../library/os.rst:3679 +#: ../../library/os.rst:3687 msgid "" "*after_in_parent* is a function called from the parent process after forking" " a child process." msgstr "" -#: ../../library/os.rst:3681 +#: ../../library/os.rst:3689 msgid "*after_in_child* is a function called from the child process." msgstr "" -#: ../../library/os.rst:3683 +#: ../../library/os.rst:3691 msgid "" "These calls are only made if control is expected to return to the Python " "interpreter. A typical :mod:`subprocess` launch will not trigger them as " "the child is not going to re-enter the interpreter." msgstr "" -#: ../../library/os.rst:3687 +#: ../../library/os.rst:3695 msgid "" "Functions registered for execution before forking are called in reverse " "registration order. Functions registered for execution after forking " "(either in the parent or in the child) are called in registration order." msgstr "" -#: ../../library/os.rst:3692 +#: ../../library/os.rst:3700 msgid "" "Note that :c:func:`fork` calls made by third-party C code may not call those" " functions, unless it explicitly calls :c:func:`PyOS_BeforeFork`, " ":c:func:`PyOS_AfterFork_Parent` and :c:func:`PyOS_AfterFork_Child`." msgstr "" -#: ../../library/os.rst:3696 +#: ../../library/os.rst:3704 msgid "There is no way to unregister a function." msgstr "" -#: ../../library/os.rst:3712 +#: ../../library/os.rst:3720 msgid "Execute the program *path* in a new process." msgstr "" -#: ../../library/os.rst:3714 +#: ../../library/os.rst:3722 msgid "" "(Note that the :mod:`subprocess` module provides more powerful facilities " "for spawning new processes and retrieving their results; using that module " @@ -3898,7 +3911,7 @@ msgid "" ":`subprocess-replacements` section.)" msgstr "" -#: ../../library/os.rst:3719 +#: ../../library/os.rst:3727 msgid "" "If *mode* is :const:`P_NOWAIT`, this function returns the process id of the " "new process; if *mode* is :const:`P_WAIT`, returns the process's exit code " @@ -3907,13 +3920,13 @@ msgid "" " handle, so can be used with the :func:`waitpid` function." msgstr "" -#: ../../library/os.rst:3725 +#: ../../library/os.rst:3733 msgid "" "Note on VxWorks, this function doesn't return ``-signal`` when the new " "process is killed. Instead it raises OSError exception." msgstr "" -#: ../../library/os.rst:3728 +#: ../../library/os.rst:3736 msgid "" "The \"l\" and \"v\" variants of the :func:`spawn\\* ` functions " "differ in how command-line arguments are passed. The \"l\" variants are " @@ -3925,7 +3938,7 @@ msgid "" "to the child process must start with the name of the command being run." msgstr "" -#: ../../library/os.rst:3737 +#: ../../library/os.rst:3745 msgid "" "The variants which include a second \"p\" near the end (:func:`spawnlp`, " ":func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the " @@ -3938,7 +3951,7 @@ msgid "" "contain an appropriate absolute or relative path." msgstr "" -#: ../../library/os.rst:3747 +#: ../../library/os.rst:3755 msgid "" "For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe`" " (note that these all end in \"e\"), the *env* parameter must be a mapping " @@ -3951,13 +3964,13 @@ msgid "" "``127``." msgstr "" -#: ../../library/os.rst:3756 +#: ../../library/os.rst:3764 msgid "" "As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` " "are equivalent::" msgstr "" -#: ../../library/os.rst:3769 +#: ../../library/os.rst:3777 msgid "" ":ref:`Availability `: Unix, Windows. :func:`spawnlp`, " ":func:`spawnlpe`, :func:`spawnvp` and :func:`spawnvpe` are not available on " @@ -3965,7 +3978,7 @@ msgid "" "Windows; we advise you to use the :mod:`subprocess` module instead." msgstr "" -#: ../../library/os.rst:3777 +#: ../../library/os.rst:3785 msgid "" "Possible values for the *mode* parameter to the :func:`spawn\\* ` " "family of functions. If either of these values is given, the " @@ -3973,7 +3986,7 @@ msgid "" "created, with the process id as the return value." msgstr "" -#: ../../library/os.rst:3787 +#: ../../library/os.rst:3795 msgid "" "Possible value for the *mode* parameter to the :func:`spawn\\* ` " "family of functions. If this is given as *mode*, the :func:`spawn\\*` " @@ -3982,7 +3995,7 @@ msgid "" "``-signal`` if a signal kills the process." msgstr "" -#: ../../library/os.rst:3799 +#: ../../library/os.rst:3807 msgid "" "Possible values for the *mode* parameter to the :func:`spawn\\* ` " "family of functions. These are less portable than those listed above. " @@ -3992,11 +4005,11 @@ msgid "" "function will not return." msgstr "" -#: ../../library/os.rst:3810 +#: ../../library/os.rst:3818 msgid "Start a file with its associated application." msgstr "" -#: ../../library/os.rst:3812 +#: ../../library/os.rst:3820 msgid "" "When *operation* is not specified or ``'open'``, this acts like double-" "clicking the file in Windows Explorer, or giving the file name as an " @@ -4005,7 +4018,7 @@ msgid "" "associated." msgstr "" -#: ../../library/os.rst:3817 +#: ../../library/os.rst:3825 msgid "" "When another *operation* is given, it must be a \"command verb\" that " "specifies what should be done with the file. Common verbs documented by " @@ -4013,7 +4026,7 @@ msgid "" "``'explore'`` and ``'find'`` (to be used on directories)." msgstr "" -#: ../../library/os.rst:3822 +#: ../../library/os.rst:3830 msgid "" ":func:`startfile` returns as soon as the associated application is launched." " There is no option to wait for the application to close, and no way to " @@ -4025,14 +4038,14 @@ msgid "" "encoded for Win32." msgstr "" -#: ../../library/os.rst:3830 +#: ../../library/os.rst:3838 msgid "" "To reduce interpreter startup overhead, the Win32 :c:func:`ShellExecute` " "function is not resolved until this function is first called. If the " "function cannot be resolved, :exc:`NotImplementedError` will be raised." msgstr "" -#: ../../library/os.rst:3839 +#: ../../library/os.rst:3847 msgid "" "Execute the command (a string) in a subshell. This is implemented by " "calling the Standard C function :c:func:`system`, and has the same " @@ -4041,7 +4054,7 @@ msgid "" "will be sent to the interpreter standard output stream." msgstr "" -#: ../../library/os.rst:3845 +#: ../../library/os.rst:3853 msgid "" "On Unix, the return value is the exit status of the process encoded in the " "format specified for :func:`wait`. Note that POSIX does not specify the " @@ -4049,7 +4062,7 @@ msgid "" "return value of the Python function is system-dependent." msgstr "" -#: ../../library/os.rst:3850 +#: ../../library/os.rst:3858 msgid "" "On Windows, the return value is that returned by the system shell after " "running *command*. The shell is given by the Windows environment variable " @@ -4058,7 +4071,7 @@ msgid "" " shell documentation." msgstr "" -#: ../../library/os.rst:3856 +#: ../../library/os.rst:3864 msgid "" "The :mod:`subprocess` module provides more powerful facilities for spawning " "new processes and retrieving their results; using that module is preferable " @@ -4066,46 +4079,46 @@ msgid "" "the :mod:`subprocess` documentation for some helpful recipes." msgstr "" -#: ../../library/os.rst:3862 +#: ../../library/os.rst:3870 msgid "" "Raises an :ref:`auditing event ` ``os.system`` with argument " "``command``." msgstr "" -#: ../../library/os.rst:3868 +#: ../../library/os.rst:3876 msgid "" "Returns the current global process times. The return value is an object with" " five attributes:" msgstr "" -#: ../../library/os.rst:3871 +#: ../../library/os.rst:3879 msgid ":attr:`user` - user time" msgstr "" -#: ../../library/os.rst:3872 +#: ../../library/os.rst:3880 msgid ":attr:`system` - system time" msgstr "" -#: ../../library/os.rst:3873 +#: ../../library/os.rst:3881 msgid ":attr:`children_user` - user time of all child processes" msgstr "" -#: ../../library/os.rst:3874 +#: ../../library/os.rst:3882 msgid ":attr:`children_system` - system time of all child processes" msgstr "" -#: ../../library/os.rst:3875 +#: ../../library/os.rst:3883 msgid ":attr:`elapsed` - elapsed real time since a fixed point in the past" msgstr "" -#: ../../library/os.rst:3877 +#: ../../library/os.rst:3885 msgid "" "For backwards compatibility, this object also behaves like a five-tuple " "containing :attr:`user`, :attr:`system`, :attr:`children_user`, " ":attr:`children_system`, and :attr:`elapsed` in that order." msgstr "" -#: ../../library/os.rst:3881 +#: ../../library/os.rst:3889 msgid "" "See the Unix manual page :manpage:`times(2)` and :manpage:`times(3)` manual " "page on Unix or `the GetProcessTimes MSDN " @@ -4114,7 +4127,7 @@ msgid "" ":attr:`user` and :attr:`system` are known; the other attributes are zero." msgstr "" -#: ../../library/os.rst:3897 +#: ../../library/os.rst:3905 msgid "" "Wait for completion of a child process, and return a tuple containing its " "pid and exit status indication: a 16-bit number, whose low byte is the " @@ -4123,7 +4136,7 @@ msgid "" "if a core file was produced." msgstr "" -#: ../../library/os.rst:3907 +#: ../../library/os.rst:3915 msgid "" "Wait for the completion of one or more child processes. *idtype* can be " ":data:`P_PID`, :data:`P_PGID` or :data:`P_ALL`. *id* specifies the pid to " @@ -4136,29 +4149,29 @@ msgid "" "specified and there are no children in a waitable state." msgstr "" -#: ../../library/os.rst:3926 +#: ../../library/os.rst:3934 msgid "" "These are the possible values for *idtype* in :func:`waitid`. They affect " "how *id* is interpreted." msgstr "" -#: ../../library/os.rst:3937 +#: ../../library/os.rst:3945 msgid "" "Flags that can be used in *options* in :func:`waitid` that specify what " "child signal to wait for." msgstr "" -#: ../../library/os.rst:3950 +#: ../../library/os.rst:3958 msgid "" "These are the possible values for :attr:`si_code` in the result returned by " ":func:`waitid`." msgstr "" -#: ../../library/os.rst:3960 +#: ../../library/os.rst:3968 msgid "The details of this function differ on Unix and Windows." msgstr "" -#: ../../library/os.rst:3962 +#: ../../library/os.rst:3970 msgid "" "On Unix: Wait for completion of a child process given by process id *pid*, " "and return a tuple containing its process id and exit status indication " @@ -4167,7 +4180,7 @@ msgid "" "operation." msgstr "" -#: ../../library/os.rst:3967 +#: ../../library/os.rst:3975 msgid "" "If *pid* is greater than ``0``, :func:`waitpid` requests status information " "for that specific process. If *pid* is ``0``, the request is for the status" @@ -4177,13 +4190,13 @@ msgid "" "group ``-pid`` (the absolute value of *pid*)." msgstr "" -#: ../../library/os.rst:3974 +#: ../../library/os.rst:3982 msgid "" "An :exc:`OSError` is raised with the value of errno when the syscall returns" " -1." msgstr "" -#: ../../library/os.rst:3977 +#: ../../library/os.rst:3985 msgid "" "On Windows: Wait for completion of a process given by process handle *pid*, " "and return a tuple containing *pid*, and its exit status shifted left by 8 " @@ -4195,7 +4208,7 @@ msgid "" "suitable process handles." msgstr "" -#: ../../library/os.rst:3993 +#: ../../library/os.rst:4001 msgid "" "Similar to :func:`waitpid`, except no process id argument is given and a " "3-element tuple containing the child's process id, exit status indication, " @@ -4205,7 +4218,7 @@ msgid "" ":func:`wait4`." msgstr "" -#: ../../library/os.rst:4005 +#: ../../library/os.rst:4013 msgid "" "Similar to :func:`waitpid`, except a 3-element tuple, containing the child's" " process id, exit status indication, and resource usage information is " @@ -4214,210 +4227,210 @@ msgid "" "the same as those provided to :func:`waitpid`." msgstr "" -#: ../../library/os.rst:4016 +#: ../../library/os.rst:4024 msgid "" "The option for :func:`waitpid` to return immediately if no child process " "status is available immediately. The function returns ``(0, 0)`` in this " "case." msgstr "" -#: ../../library/os.rst:4024 +#: ../../library/os.rst:4032 msgid "" "This option causes child processes to be reported if they have been " "continued from a job control stop since their status was last reported." msgstr "" -#: ../../library/os.rst:4027 +#: ../../library/os.rst:4035 msgid ":ref:`Availability `: some Unix systems." msgstr "" -#: ../../library/os.rst:4032 +#: ../../library/os.rst:4040 msgid "" "This option causes child processes to be reported if they have been stopped " "but their current state has not been reported since they were stopped." msgstr "" -#: ../../library/os.rst:4038 +#: ../../library/os.rst:4046 msgid "" "The following functions take a process status code as returned by " ":func:`system`, :func:`wait`, or :func:`waitpid` as a parameter. They may " "be used to determine the disposition of a process." msgstr "" -#: ../../library/os.rst:4044 +#: ../../library/os.rst:4052 msgid "" "Return ``True`` if a core dump was generated for the process, otherwise " "return ``False``." msgstr "" -#: ../../library/os.rst:4052 +#: ../../library/os.rst:4060 msgid "" "Return ``True`` if the process has been continued from a job control stop, " "otherwise return ``False``." msgstr "" -#: ../../library/os.rst:4060 +#: ../../library/os.rst:4068 msgid "" "Return ``True`` if the process has been stopped, otherwise return ``False``." msgstr "" -#: ../../library/os.rst:4068 +#: ../../library/os.rst:4076 msgid "" "Return ``True`` if the process exited due to a signal, otherwise return " "``False``." msgstr "" -#: ../../library/os.rst:4076 +#: ../../library/os.rst:4084 msgid "" "Return ``True`` if the process exited using the :manpage:`exit(2)` system " "call, otherwise return ``False``." msgstr "" -#: ../../library/os.rst:4084 +#: ../../library/os.rst:4092 msgid "" "If ``WIFEXITED(status)`` is true, return the integer parameter to the " ":manpage:`exit(2)` system call. Otherwise, the return value is meaningless." msgstr "" -#: ../../library/os.rst:4092 +#: ../../library/os.rst:4100 msgid "Return the signal which caused the process to stop." msgstr "" -#: ../../library/os.rst:4099 +#: ../../library/os.rst:4107 msgid "Return the signal which caused the process to exit." msgstr "" -#: ../../library/os.rst:4105 +#: ../../library/os.rst:4113 msgid "Interface to the scheduler" msgstr "" -#: ../../library/os.rst:4107 +#: ../../library/os.rst:4115 msgid "" "These functions control how a process is allocated CPU time by the operating" " system. They are only available on some Unix platforms. For more detailed " "information, consult your Unix manpages." msgstr "" -#: ../../library/os.rst:4113 +#: ../../library/os.rst:4121 msgid "" "The following scheduling policies are exposed if they are supported by the " "operating system." msgstr "" -#: ../../library/os.rst:4118 +#: ../../library/os.rst:4126 msgid "The default scheduling policy." msgstr "" -#: ../../library/os.rst:4122 +#: ../../library/os.rst:4130 msgid "" "Scheduling policy for CPU-intensive processes that tries to preserve " "interactivity on the rest of the computer." msgstr "" -#: ../../library/os.rst:4127 +#: ../../library/os.rst:4135 msgid "Scheduling policy for extremely low priority background tasks." msgstr "" -#: ../../library/os.rst:4131 +#: ../../library/os.rst:4139 msgid "Scheduling policy for sporadic server programs." msgstr "" -#: ../../library/os.rst:4135 +#: ../../library/os.rst:4143 msgid "A First In First Out scheduling policy." msgstr "" -#: ../../library/os.rst:4139 +#: ../../library/os.rst:4147 msgid "A round-robin scheduling policy." msgstr "" -#: ../../library/os.rst:4143 +#: ../../library/os.rst:4151 msgid "" "This flag can be OR'ed with any other scheduling policy. When a process with" " this flag set forks, its child's scheduling policy and priority are reset " "to the default." msgstr "" -#: ../../library/os.rst:4150 +#: ../../library/os.rst:4158 msgid "" "This class represents tunable scheduling parameters used in " ":func:`sched_setparam`, :func:`sched_setscheduler`, and " ":func:`sched_getparam`. It is immutable." msgstr "" -#: ../../library/os.rst:4154 +#: ../../library/os.rst:4162 msgid "At the moment, there is only one possible parameter:" msgstr "" -#: ../../library/os.rst:4158 +#: ../../library/os.rst:4166 msgid "The scheduling priority for a scheduling policy." msgstr "" -#: ../../library/os.rst:4163 +#: ../../library/os.rst:4171 msgid "" "Get the minimum priority value for *policy*. *policy* is one of the " "scheduling policy constants above." msgstr "" -#: ../../library/os.rst:4169 +#: ../../library/os.rst:4177 msgid "" "Get the maximum priority value for *policy*. *policy* is one of the " "scheduling policy constants above." msgstr "" -#: ../../library/os.rst:4175 +#: ../../library/os.rst:4183 msgid "" "Set the scheduling policy for the process with PID *pid*. A *pid* of 0 means" " the calling process. *policy* is one of the scheduling policy constants " "above. *param* is a :class:`sched_param` instance." msgstr "" -#: ../../library/os.rst:4182 +#: ../../library/os.rst:4190 msgid "" "Return the scheduling policy for the process with PID *pid*. A *pid* of 0 " "means the calling process. The result is one of the scheduling policy " "constants above." msgstr "" -#: ../../library/os.rst:4189 +#: ../../library/os.rst:4197 msgid "" "Set a scheduling parameters for the process with PID *pid*. A *pid* of 0 " "means the calling process. *param* is a :class:`sched_param` instance." msgstr "" -#: ../../library/os.rst:4195 +#: ../../library/os.rst:4203 msgid "" "Return the scheduling parameters as a :class:`sched_param` instance for the " "process with PID *pid*. A *pid* of 0 means the calling process." msgstr "" -#: ../../library/os.rst:4201 +#: ../../library/os.rst:4209 msgid "" "Return the round-robin quantum in seconds for the process with PID *pid*. A " "*pid* of 0 means the calling process." msgstr "" -#: ../../library/os.rst:4207 +#: ../../library/os.rst:4215 msgid "Voluntarily relinquish the CPU." msgstr "" -#: ../../library/os.rst:4212 +#: ../../library/os.rst:4220 msgid "" "Restrict the process with PID *pid* (or the current process if zero) to a " "set of CPUs. *mask* is an iterable of integers representing the set of CPUs" " to which the process should be restricted." msgstr "" -#: ../../library/os.rst:4219 +#: ../../library/os.rst:4227 msgid "" "Return the set of CPUs the process with PID *pid* (or the current process if" " zero) is restricted to." msgstr "" -#: ../../library/os.rst:4226 +#: ../../library/os.rst:4234 msgid "Miscellaneous System Information" msgstr "" -#: ../../library/os.rst:4231 +#: ../../library/os.rst:4239 msgid "" "Return string-valued system configuration values. *name* specifies the " "configuration value to retrieve; it may be a string which is the name of a " @@ -4428,13 +4441,13 @@ msgid "" "included in that mapping, passing an integer for *name* is also accepted." msgstr "" -#: ../../library/os.rst:4239 +#: ../../library/os.rst:4247 msgid "" "If the configuration value specified by *name* isn't defined, ``None`` is " "returned." msgstr "" -#: ../../library/os.rst:4242 +#: ../../library/os.rst:4250 msgid "" "If *name* is a string and is not known, :exc:`ValueError` is raised. If a " "specific value for *name* is not supported by the host system, even if it is" @@ -4442,33 +4455,33 @@ msgid "" ":const:`errno.EINVAL` for the error number." msgstr "" -#: ../../library/os.rst:4252 +#: ../../library/os.rst:4260 msgid "" "Dictionary mapping names accepted by :func:`confstr` to the integer values " "defined for those names by the host operating system. This can be used to " "determine the set of names known to the system." msgstr "" -#: ../../library/os.rst:4261 +#: ../../library/os.rst:4269 msgid "" "Return the number of CPUs in the system. Returns ``None`` if undetermined." msgstr "" -#: ../../library/os.rst:4263 +#: ../../library/os.rst:4271 msgid "" "This number is not equivalent to the number of CPUs the current process can " "use. The number of usable CPUs can be obtained with " "``len(os.sched_getaffinity(0))``" msgstr "" -#: ../../library/os.rst:4273 +#: ../../library/os.rst:4281 msgid "" "Return the number of processes in the system run queue averaged over the " "last 1, 5, and 15 minutes or raises :exc:`OSError` if the load average was " "unobtainable." msgstr "" -#: ../../library/os.rst:4282 +#: ../../library/os.rst:4290 msgid "" "Return integer-valued system configuration values. If the configuration " "value specified by *name* isn't defined, ``-1`` is returned. The comments " @@ -4477,40 +4490,40 @@ msgid "" "``sysconf_names``." msgstr "" -#: ../../library/os.rst:4292 +#: ../../library/os.rst:4300 msgid "" "Dictionary mapping names accepted by :func:`sysconf` to the integer values " "defined for those names by the host operating system. This can be used to " "determine the set of names known to the system." msgstr "" -#: ../../library/os.rst:4298 +#: ../../library/os.rst:4306 msgid "" "The following data values are used to support path manipulation operations." " These are defined for all platforms." msgstr "" -#: ../../library/os.rst:4301 +#: ../../library/os.rst:4309 msgid "" "Higher-level operations on pathnames are defined in the :mod:`os.path` " "module." msgstr "" -#: ../../library/os.rst:4307 +#: ../../library/os.rst:4315 msgid "" "The constant string used by the operating system to refer to the current " "directory. This is ``'.'`` for Windows and POSIX. Also available via " ":mod:`os.path`." msgstr "" -#: ../../library/os.rst:4315 +#: ../../library/os.rst:4323 msgid "" "The constant string used by the operating system to refer to the parent " "directory. This is ``'..'`` for Windows and POSIX. Also available via " ":mod:`os.path`." msgstr "" -#: ../../library/os.rst:4324 +#: ../../library/os.rst:4332 msgid "" "The character used by the operating system to separate pathname components. " "This is ``'/'`` for POSIX and ``'\\\\'`` for Windows. Note that knowing " @@ -4519,7 +4532,7 @@ msgid "" "useful. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:4334 +#: ../../library/os.rst:4342 msgid "" "An alternative character used by the operating system to separate pathname " "components, or ``None`` if only one separator character exists. This is set" @@ -4527,27 +4540,27 @@ msgid "" "via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:4343 +#: ../../library/os.rst:4351 msgid "" "The character which separates the base filename from the extension; for " "example, the ``'.'`` in :file:`os.py`. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:4351 +#: ../../library/os.rst:4359 msgid "" "The character conventionally used by the operating system to separate search" " path components (as in :envvar:`PATH`), such as ``':'`` for POSIX or " "``';'`` for Windows. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:4358 +#: ../../library/os.rst:4366 msgid "" "The default search path used by :func:`exec\\*p\\* ` and " ":func:`spawn\\*p\\* ` if the environment doesn't have a ``'PATH'`` " "key. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:4365 +#: ../../library/os.rst:4373 msgid "" "The string used to separate (or, rather, terminate) lines on the current " "platform. This may be a single character, such as ``'\\n'`` for POSIX, or " @@ -4556,36 +4569,36 @@ msgid "" "(the default); use a single ``'\\n'`` instead, on all platforms." msgstr "" -#: ../../library/os.rst:4374 +#: ../../library/os.rst:4382 msgid "" "The file path of the null device. For example: ``'/dev/null'`` for POSIX, " "``'nul'`` for Windows. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:4385 +#: ../../library/os.rst:4393 msgid "" "Flags for use with the :func:`~sys.setdlopenflags` and " ":func:`~sys.getdlopenflags` functions. See the Unix manual page " ":manpage:`dlopen(3)` for what the different flags mean." msgstr "" -#: ../../library/os.rst:4393 +#: ../../library/os.rst:4401 msgid "Random numbers" msgstr "" -#: ../../library/os.rst:4398 +#: ../../library/os.rst:4406 msgid "" "Get up to *size* random bytes. The function can return less bytes than " "requested." msgstr "" -#: ../../library/os.rst:4401 +#: ../../library/os.rst:4409 msgid "" "These bytes can be used to seed user-space random number generators or for " "cryptographic purposes." msgstr "" -#: ../../library/os.rst:4404 +#: ../../library/os.rst:4412 msgid "" "``getrandom()`` relies on entropy gathered from device drivers and other " "sources of environmental noise. Unnecessarily reading large quantities of " @@ -4593,35 +4606,35 @@ msgid "" " ``/dev/urandom`` devices." msgstr "" -#: ../../library/os.rst:4409 +#: ../../library/os.rst:4417 msgid "" "The flags argument is a bit mask that can contain zero or more of the " "following values ORed together: :py:data:`os.GRND_RANDOM` and " ":py:data:`GRND_NONBLOCK`." msgstr "" -#: ../../library/os.rst:4413 +#: ../../library/os.rst:4421 msgid "" "See also the `Linux getrandom() manual page `_." msgstr "" -#: ../../library/os.rst:4417 +#: ../../library/os.rst:4425 msgid ":ref:`Availability `: Linux 3.17 and newer." msgstr "" -#: ../../library/os.rst:4422 +#: ../../library/os.rst:4430 msgid "Return a string of *size* random bytes suitable for cryptographic use." msgstr "" -#: ../../library/os.rst:4424 +#: ../../library/os.rst:4432 msgid "" "This function returns random bytes from an OS-specific randomness source. " "The returned data should be unpredictable enough for cryptographic " "applications, though its exact quality depends on the OS implementation." msgstr "" -#: ../../library/os.rst:4428 +#: ../../library/os.rst:4436 msgid "" "On Linux, if the ``getrandom()`` syscall is available, it is used in " "blocking mode: block until the system urandom entropy pool is initialized " @@ -4631,58 +4644,58 @@ msgid "" "to poll until the system urandom entropy pool is initialized." msgstr "" -#: ../../library/os.rst:4435 +#: ../../library/os.rst:4443 msgid "" "On a Unix-like system, random bytes are read from the ``/dev/urandom`` " "device. If the ``/dev/urandom`` device is not available or not readable, the" " :exc:`NotImplementedError` exception is raised." msgstr "" -#: ../../library/os.rst:4439 +#: ../../library/os.rst:4447 msgid "On Windows, it will use ``CryptGenRandom()``." msgstr "" -#: ../../library/os.rst:4442 +#: ../../library/os.rst:4450 msgid "" "The :mod:`secrets` module provides higher level functions. For an easy-to-" "use interface to the random number generator provided by your platform, " "please see :class:`random.SystemRandom`." msgstr "" -#: ../../library/os.rst:4446 +#: ../../library/os.rst:4454 msgid "" "On Linux, ``getrandom()`` is now used in blocking mode to increase the " "security." msgstr "" -#: ../../library/os.rst:4450 +#: ../../library/os.rst:4458 msgid "" "On Linux, if the ``getrandom()`` syscall blocks (the urandom entropy pool is" " not initialized yet), fall back on reading ``/dev/urandom``." msgstr "" -#: ../../library/os.rst:4454 +#: ../../library/os.rst:4462 msgid "" "On Linux 3.17 and newer, the ``getrandom()`` syscall is now used when " "available. On OpenBSD 5.6 and newer, the C ``getentropy()`` function is now" " used. These functions avoid the usage of an internal file descriptor." msgstr "" -#: ../../library/os.rst:4462 +#: ../../library/os.rst:4470 msgid "" "By default, when reading from ``/dev/random``, :func:`getrandom` blocks if " "no random bytes are available, and when reading from ``/dev/urandom``, it " "blocks if the entropy pool has not yet been initialized." msgstr "" -#: ../../library/os.rst:4466 +#: ../../library/os.rst:4474 msgid "" "If the :py:data:`GRND_NONBLOCK` flag is set, then :func:`getrandom` does not" " block in these cases, but instead immediately raises " ":exc:`BlockingIOError`." msgstr "" -#: ../../library/os.rst:4473 +#: ../../library/os.rst:4481 msgid "" "If this bit is set, then random bytes are drawn from the " "``/dev/random`` pool instead of the ``/dev/urandom`` pool." diff --git a/library/parser.po b/library/parser.po index 9e1345e..d7e41d4 100644 --- a/library/parser.po +++ b/library/parser.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-21 11:30+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:21+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -279,9 +279,9 @@ msgstr "" #: ../../library/parser.rst:237 msgid "" -"When *st* represents an ``'eval'`` form, this function returns true, " -"otherwise it returns false. This is useful, since code objects normally " -"cannot be queried for this information using existing built-in functions. " +"When *st* represents an ``'eval'`` form, this function returns ``True``, " +"otherwise it returns ``False``. This is useful, since code objects normally" +" cannot be queried for this information using existing built-in functions. " "Note that the code objects created by :func:`compilest` cannot be queried " "like this either, and are identical to those created by the built-in " ":func:`compile` function." diff --git a/library/pdb.po b/library/pdb.po index 7e871d1..e94aece 100644 --- a/library/pdb.po +++ b/library/pdb.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-21 11:59+0000\n" "PO-Revision-Date: 2017-02-16 23:21+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -621,10 +621,17 @@ msgid "Quit from the debugger. The program being executed is aborted." msgstr "" #: ../../library/pdb.rst:536 +msgid "" +"Enter a recursive debugger that steps through the code argument (which is an" +" arbitrary expression or statement to be executed in the current " +"environment)." +msgstr "" + +#: ../../library/pdb.rst:544 msgid "Footnotes" msgstr "Catatan kaki" -#: ../../library/pdb.rst:537 +#: ../../library/pdb.rst:545 msgid "" "Whether a frame is considered to originate in a certain module is determined" " by the ``__name__`` in the frame globals." diff --git a/library/pickle.po b/library/pickle.po index e61d1f3..641ba3e 100644 --- a/library/pickle.po +++ b/library/pickle.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-12 11:28+0000\n" +"POT-Creation-Date: 2019-11-04 11:51+0000\n" "PO-Revision-Date: 2017-02-16 23:22+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -204,7 +204,7 @@ msgstr "" #: ../../library/pickle.rst:139 msgid "" -"There are currently 5 different protocols which can be used for pickling. " +"There are currently 6 different protocols which can be used for pickling. " "The higher the protocol used, the more recent the version of Python needed " "to read the pickle produced." msgstr "" @@ -243,7 +243,14 @@ msgid "" "for information about improvements brought by protocol 4." msgstr "" -#: ../../library/pickle.rst:164 +#: ../../library/pickle.rst:163 +msgid "" +"Protocol version 5 was added in Python 3.8. It adds support for out-of-band" +" data and speedup for in-band data. Refer to :pep:`574` for information " +"about improvements brought by protocol 5." +msgstr "" + +#: ../../library/pickle.rst:168 msgid "" "Serialization is a more primitive notion than persistence; although " ":mod:`pickle` reads and writes file objects, it does not handle the issue of" @@ -257,11 +264,11 @@ msgid "" "and unpickle objects on DBM-style database files." msgstr "" -#: ../../library/pickle.rst:177 +#: ../../library/pickle.rst:181 msgid "Module Interface" msgstr "" -#: ../../library/pickle.rst:179 +#: ../../library/pickle.rst:183 msgid "" "To serialize an object hierarchy, you simply call the :func:`dumps` " "function. Similarly, to de-serialize a data stream, you call the " @@ -270,18 +277,18 @@ msgid "" ":class:`Unpickler` object, respectively." msgstr "" -#: ../../library/pickle.rst:184 +#: ../../library/pickle.rst:188 msgid "The :mod:`pickle` module provides the following constants:" msgstr "" -#: ../../library/pickle.rst:189 +#: ../../library/pickle.rst:193 msgid "" "An integer, the highest :ref:`protocol version ` " "available. This value can be passed as a *protocol* value to functions " ":func:`dump` and :func:`dumps` as well as the :class:`Pickler` constructor." msgstr "" -#: ../../library/pickle.rst:196 +#: ../../library/pickle.rst:200 msgid "" "An integer, the default :ref:`protocol version ` used for " "pickling. May be less than :data:`HIGHEST_PROTOCOL`. Currently the default" @@ -289,127 +296,127 @@ msgid "" "previous versions." msgstr "" -#: ../../library/pickle.rst:203 +#: ../../library/pickle.rst:207 msgid "The default protocol is 3." msgstr "" -#: ../../library/pickle.rst:207 +#: ../../library/pickle.rst:211 msgid "The default protocol is 4." msgstr "" -#: ../../library/pickle.rst:209 +#: ../../library/pickle.rst:213 msgid "" "The :mod:`pickle` module provides the following functions to make the " "pickling process more convenient:" msgstr "" -#: ../../library/pickle.rst:214 +#: ../../library/pickle.rst:218 msgid "" "Write the pickled representation of the object *obj* to the open :term:`file" " object` *file*. This is equivalent to ``Pickler(file, " "protocol).dump(obj)``." msgstr "" -#: ../../library/pickle.rst:218 +#: ../../library/pickle.rst:222 msgid "" "Arguments *file*, *protocol*, *fix_imports* and *buffer_callback* have the " "same meaning as in the :class:`Pickler` constructor." msgstr "" -#: ../../library/pickle.rst:221 ../../library/pickle.rst:232 -#: ../../library/pickle.rst:324 +#: ../../library/pickle.rst:225 ../../library/pickle.rst:236 +#: ../../library/pickle.rst:328 msgid "The *buffer_callback* argument was added." msgstr "" -#: ../../library/pickle.rst:226 +#: ../../library/pickle.rst:230 msgid "" "Return the pickled representation of the object *obj* as a :class:`bytes` " "object, instead of writing it to a file." msgstr "" -#: ../../library/pickle.rst:229 +#: ../../library/pickle.rst:233 msgid "" "Arguments *protocol*, *fix_imports* and *buffer_callback* have the same " "meaning as in the :class:`Pickler` constructor." msgstr "" -#: ../../library/pickle.rst:237 +#: ../../library/pickle.rst:241 msgid "" "Read the pickled representation of an object from the open :term:`file " "object` *file* and return the reconstituted object hierarchy specified " "therein. This is equivalent to ``Unpickler(file).load()``." msgstr "" -#: ../../library/pickle.rst:241 ../../library/pickle.rst:256 +#: ../../library/pickle.rst:245 ../../library/pickle.rst:260 msgid "" "The protocol version of the pickle is detected automatically, so no protocol" " argument is needed. Bytes past the pickled representation of the object " "are ignored." msgstr "" -#: ../../library/pickle.rst:245 ../../library/pickle.rst:260 +#: ../../library/pickle.rst:249 ../../library/pickle.rst:264 msgid "" "Arguments *file*, *fix_imports*, *encoding*, *errors*, *strict* and " "*buffers* have the same meaning as in the :class:`Unpickler` constructor." msgstr "" -#: ../../library/pickle.rst:248 ../../library/pickle.rst:263 -#: ../../library/pickle.rst:425 +#: ../../library/pickle.rst:252 ../../library/pickle.rst:267 +#: ../../library/pickle.rst:429 msgid "The *buffers* argument was added." msgstr "" -#: ../../library/pickle.rst:253 +#: ../../library/pickle.rst:257 msgid "" "Return the reconstituted object hierarchy of the pickled representation " "*bytes_object* of an object." msgstr "" -#: ../../library/pickle.rst:267 +#: ../../library/pickle.rst:271 msgid "The :mod:`pickle` module defines three exceptions:" msgstr "" -#: ../../library/pickle.rst:271 +#: ../../library/pickle.rst:275 msgid "" "Common base class for the other pickling exceptions. It inherits " ":exc:`Exception`." msgstr "" -#: ../../library/pickle.rst:276 +#: ../../library/pickle.rst:280 msgid "" "Error raised when an unpicklable object is encountered by :class:`Pickler`. " "It inherits :exc:`PickleError`." msgstr "" -#: ../../library/pickle.rst:279 +#: ../../library/pickle.rst:283 msgid "" "Refer to :ref:`pickle-picklable` to learn what kinds of objects can be " "pickled." msgstr "" -#: ../../library/pickle.rst:284 +#: ../../library/pickle.rst:288 msgid "" "Error raised when there is a problem unpickling an object, such as a data " "corruption or a security violation. It inherits :exc:`PickleError`." msgstr "" -#: ../../library/pickle.rst:287 +#: ../../library/pickle.rst:291 msgid "" "Note that other exceptions may also be raised during unpickling, including " "(but not necessarily limited to) AttributeError, EOFError, ImportError, and " "IndexError." msgstr "" -#: ../../library/pickle.rst:292 +#: ../../library/pickle.rst:296 msgid "" "The :mod:`pickle` module exports three classes, :class:`Pickler`, " ":class:`Unpickler` and :class:`PickleBuffer`:" msgstr "" -#: ../../library/pickle.rst:297 +#: ../../library/pickle.rst:301 msgid "This takes a binary file for writing a pickle data stream." msgstr "" -#: ../../library/pickle.rst:299 +#: ../../library/pickle.rst:303 msgid "" "The optional *protocol* argument, an integer, tells the pickler to use the " "given protocol; supported protocols are 0 to :data:`HIGHEST_PROTOCOL`. If " @@ -417,7 +424,7 @@ msgid "" "number is specified, :data:`HIGHEST_PROTOCOL` is selected." msgstr "" -#: ../../library/pickle.rst:304 +#: ../../library/pickle.rst:308 msgid "" "The *file* argument must have a write() method that accepts a single bytes " "argument. It can thus be an on-disk file opened for binary writing, an " @@ -425,20 +432,20 @@ msgid "" "interface." msgstr "" -#: ../../library/pickle.rst:309 +#: ../../library/pickle.rst:313 msgid "" "If *fix_imports* is true and *protocol* is less than 3, pickle will try to " "map the new Python 3 names to the old module names used in Python 2, so that" " the pickle data stream is readable with Python 2." msgstr "" -#: ../../library/pickle.rst:313 +#: ../../library/pickle.rst:317 msgid "" "If *buffer_callback* is None (the default), buffer views are serialized into" " *file* as part of the pickle stream." msgstr "" -#: ../../library/pickle.rst:316 +#: ../../library/pickle.rst:320 msgid "" "If *buffer_callback* is not None, then it can be called any number of times " "with a buffer view. If the callback returns a false value (such as None), " @@ -446,23 +453,23 @@ msgid "" " serialized in-band, i.e. inside the pickle stream." msgstr "" -#: ../../library/pickle.rst:321 +#: ../../library/pickle.rst:325 msgid "" "It is an error if *buffer_callback* is not None and *protocol* is None or " "smaller than 5." msgstr "" -#: ../../library/pickle.rst:329 +#: ../../library/pickle.rst:333 msgid "" "Write the pickled representation of *obj* to the open file object given in " "the constructor." msgstr "" -#: ../../library/pickle.rst:334 +#: ../../library/pickle.rst:338 msgid "Do nothing by default. This exists so a subclass can override it." msgstr "" -#: ../../library/pickle.rst:336 +#: ../../library/pickle.rst:340 msgid "" "If :meth:`persistent_id` returns ``None``, *obj* is pickled as usual. Any " "other value causes :class:`Pickler` to emit the returned value as a " @@ -471,11 +478,11 @@ msgid "" "by :meth:`persistent_id` cannot itself have a persistent ID." msgstr "" -#: ../../library/pickle.rst:342 ../../library/pickle.rst:443 +#: ../../library/pickle.rst:346 ../../library/pickle.rst:447 msgid "See :ref:`pickle-persistent` for details and examples of uses." msgstr "" -#: ../../library/pickle.rst:346 +#: ../../library/pickle.rst:350 msgid "" "A pickler object's dispatch table is a registry of *reduction functions* of " "the kind which can be declared using :func:`copyreg.pickle`. It is a " @@ -484,7 +491,7 @@ msgid "" "should conform to the same interface as a :meth:`__reduce__` method." msgstr "" -#: ../../library/pickle.rst:354 +#: ../../library/pickle.rst:358 msgid "" "By default, a pickler object will not have a :attr:`dispatch_table` " "attribute, and it will instead use the global dispatch table managed by the " @@ -495,11 +502,11 @@ msgid "" "dispatch table for instances of that class." msgstr "" -#: ../../library/pickle.rst:363 +#: ../../library/pickle.rst:367 msgid "See :ref:`pickle-dispatch` for usage examples." msgstr "" -#: ../../library/pickle.rst:369 +#: ../../library/pickle.rst:373 msgid "" "Special reducer that can be defined in :class:`Pickler` subclasses. This " "method has priority over any reducer in the :attr:`dispatch_table`. It " @@ -508,11 +515,11 @@ msgid "" ":attr:`dispatch_table`-registered reducers to pickle ``obj``." msgstr "" -#: ../../library/pickle.rst:375 +#: ../../library/pickle.rst:379 msgid "For a detailed example, see :ref:`reducer_override`." msgstr "" -#: ../../library/pickle.rst:381 +#: ../../library/pickle.rst:385 msgid "" "Deprecated. Enable fast mode if set to a true value. The fast mode disables" " the usage of memo, therefore speeding the pickling process by not " @@ -521,21 +528,21 @@ msgid "" "infinitely." msgstr "" -#: ../../library/pickle.rst:387 +#: ../../library/pickle.rst:391 msgid "Use :func:`pickletools.optimize` if you need more compact pickles." msgstr "" -#: ../../library/pickle.rst:392 +#: ../../library/pickle.rst:396 msgid "This takes a binary file for reading a pickle data stream." msgstr "" -#: ../../library/pickle.rst:394 +#: ../../library/pickle.rst:398 msgid "" "The protocol version of the pickle is detected automatically, so no protocol" " argument is needed." msgstr "" -#: ../../library/pickle.rst:397 +#: ../../library/pickle.rst:401 msgid "" "The argument *file* must have three methods, a read() method that takes an " "integer argument, a readinto() method that takes a buffer argument and a " @@ -545,7 +552,7 @@ msgid "" "custom object that meets this interface." msgstr "" -#: ../../library/pickle.rst:404 +#: ../../library/pickle.rst:408 msgid "" "The optional arguments *fix_imports*, *encoding* and *errors* are used to " "control compatibility support for pickle stream generated by Python 2. If " @@ -559,7 +566,7 @@ msgid "" ":class:`~datetime.time` pickled by Python 2." msgstr "" -#: ../../library/pickle.rst:415 +#: ../../library/pickle.rst:419 msgid "" "If *buffers* is None (the default), then all data necessary for " "deserialization must be contained in the pickle stream. This means that the" @@ -567,7 +574,7 @@ msgid "" "instantiated (or when :func:`dump` or :func:`dumps` was called)." msgstr "" -#: ../../library/pickle.rst:420 +#: ../../library/pickle.rst:424 msgid "" "If *buffers* is not None, it should be an iterable of buffer-enabled objects" " that is consumed each time the pickle stream references an :ref:`out-of-" @@ -575,25 +582,25 @@ msgid "" "the *buffer_callback* of a Pickler object." msgstr "" -#: ../../library/pickle.rst:430 +#: ../../library/pickle.rst:434 msgid "" "Read the pickled representation of an object from the open file object given" " in the constructor, and return the reconstituted object hierarchy specified" " therein. Bytes past the pickled representation of the object are ignored." msgstr "" -#: ../../library/pickle.rst:437 +#: ../../library/pickle.rst:441 msgid "Raise an :exc:`UnpicklingError` by default." msgstr "" -#: ../../library/pickle.rst:439 +#: ../../library/pickle.rst:443 msgid "" "If defined, :meth:`persistent_load` should return the object specified by " "the persistent ID *pid*. If an invalid persistent ID is encountered, an " ":exc:`UnpicklingError` should be raised." msgstr "" -#: ../../library/pickle.rst:447 +#: ../../library/pickle.rst:451 msgid "" "Import *module* if necessary and return the object called *name* from it, " "where the *module* and *name* arguments are :class:`str` objects. Note, " @@ -601,41 +608,41 @@ msgid "" "functions." msgstr "" -#: ../../library/pickle.rst:452 +#: ../../library/pickle.rst:456 msgid "" "Subclasses may override this to gain control over what type of objects and " "how they can be loaded, potentially reducing security risks. Refer to :ref" ":`pickle-restrict` for details." msgstr "" -#: ../../library/pickle.rst:456 +#: ../../library/pickle.rst:460 msgid "" "Raises an :ref:`auditing event ` ``pickle.find_class`` with " "arguments ``module``, ``name``." msgstr "" -#: ../../library/pickle.rst:460 +#: ../../library/pickle.rst:464 msgid "" "A wrapper for a buffer representing picklable data. *buffer* must be a :ref" ":`buffer-providing ` object, such as a :term:`bytes-like " "object` or a N-dimensional array." msgstr "" -#: ../../library/pickle.rst:464 +#: ../../library/pickle.rst:468 msgid "" ":class:`PickleBuffer` is itself a buffer provider, therefore it is possible " "to pass it to other APIs expecting a buffer-providing object, such as " ":class:`memoryview`." msgstr "" -#: ../../library/pickle.rst:468 +#: ../../library/pickle.rst:472 msgid "" ":class:`PickleBuffer` objects can only be serialized using pickle protocol 5" " or higher. They are eligible for :ref:`out-of-band serialization `." msgstr "" -#: ../../library/pickle.rst:476 +#: ../../library/pickle.rst:480 msgid "" "Return a :class:`memoryview` of the memory area underlying this buffer. The " "returned object is a one-dimensional, C-contiguous memoryview with format " @@ -643,57 +650,57 @@ msgid "" "neither C- nor Fortran-contiguous." msgstr "" -#: ../../library/pickle.rst:483 +#: ../../library/pickle.rst:487 msgid "Release the underlying buffer exposed by the PickleBuffer object." msgstr "" -#: ../../library/pickle.rst:489 +#: ../../library/pickle.rst:493 msgid "What can be pickled and unpickled?" msgstr "" -#: ../../library/pickle.rst:491 +#: ../../library/pickle.rst:495 msgid "The following types can be pickled:" msgstr "" -#: ../../library/pickle.rst:493 +#: ../../library/pickle.rst:497 msgid "``None``, ``True``, and ``False``" msgstr "" -#: ../../library/pickle.rst:495 +#: ../../library/pickle.rst:499 msgid "integers, floating point numbers, complex numbers" msgstr "" -#: ../../library/pickle.rst:497 +#: ../../library/pickle.rst:501 msgid "strings, bytes, bytearrays" msgstr "" -#: ../../library/pickle.rst:499 +#: ../../library/pickle.rst:503 msgid "" "tuples, lists, sets, and dictionaries containing only picklable objects" msgstr "" -#: ../../library/pickle.rst:501 +#: ../../library/pickle.rst:505 msgid "" "functions defined at the top level of a module (using :keyword:`def`, not " ":keyword:`lambda`)" msgstr "" -#: ../../library/pickle.rst:504 +#: ../../library/pickle.rst:508 msgid "built-in functions defined at the top level of a module" msgstr "" -#: ../../library/pickle.rst:506 +#: ../../library/pickle.rst:510 msgid "classes that are defined at the top level of a module" msgstr "" -#: ../../library/pickle.rst:508 +#: ../../library/pickle.rst:512 msgid "" "instances of such classes whose :attr:`~object.__dict__` or the result of " "calling :meth:`__getstate__` is picklable (see section :ref:`pickle-inst` " "for details)." msgstr "" -#: ../../library/pickle.rst:512 +#: ../../library/pickle.rst:516 msgid "" "Attempts to pickle unpicklable objects will raise the :exc:`PicklingError` " "exception; when this happens, an unspecified number of bytes may have " @@ -703,7 +710,7 @@ msgid "" "this limit with :func:`sys.setrecursionlimit`." msgstr "" -#: ../../library/pickle.rst:519 +#: ../../library/pickle.rst:523 msgid "" "Note that functions (built-in and user-defined) are pickled by \"fully " "qualified\" name reference, not by value. [#]_ This means that only the " @@ -714,7 +721,7 @@ msgid "" "exception will be raised. [#]_" msgstr "" -#: ../../library/pickle.rst:526 +#: ../../library/pickle.rst:530 msgid "" "Similarly, classes are pickled by named reference, so the same restrictions " "in the unpickling environment apply. Note that none of the class's code or " @@ -722,13 +729,13 @@ msgid "" " not restored in the unpickling environment::" msgstr "" -#: ../../library/pickle.rst:536 +#: ../../library/pickle.rst:540 msgid "" "These restrictions are why picklable functions and classes must be defined " "in the top level of a module." msgstr "" -#: ../../library/pickle.rst:539 +#: ../../library/pickle.rst:543 msgid "" "Similarly, when class instances are pickled, their class's code and data are" " not pickled along with them. Only the instance data are pickled. This is " @@ -740,18 +747,18 @@ msgid "" "method." msgstr "" -#: ../../library/pickle.rst:551 +#: ../../library/pickle.rst:555 msgid "Pickling Class Instances" msgstr "" -#: ../../library/pickle.rst:555 +#: ../../library/pickle.rst:559 msgid "" "In this section, we describe the general mechanisms available to you to " "define, customize, and control how class instances are pickled and " "unpickled." msgstr "" -#: ../../library/pickle.rst:558 +#: ../../library/pickle.rst:562 msgid "" "In most cases, no additional code is needed to make instances picklable. By" " default, pickle will retrieve the class and the attributes of an instance " @@ -761,13 +768,13 @@ msgid "" "following code shows an implementation of this behaviour::" msgstr "" -#: ../../library/pickle.rst:573 +#: ../../library/pickle.rst:577 msgid "" "Classes can alter the default behaviour by providing one or several special " "methods:" msgstr "" -#: ../../library/pickle.rst:578 +#: ../../library/pickle.rst:582 msgid "" "In protocols 2 and newer, classes that implements the " ":meth:`__getnewargs_ex__` method can dictate the values passed to the " @@ -777,37 +784,37 @@ msgid "" " will be passed to the :meth:`__new__` method upon unpickling." msgstr "" -#: ../../library/pickle.rst:586 +#: ../../library/pickle.rst:590 msgid "" "You should implement this method if the :meth:`__new__` method of your class" " requires keyword-only arguments. Otherwise, it is recommended for " "compatibility to implement :meth:`__getnewargs__`." msgstr "" -#: ../../library/pickle.rst:590 +#: ../../library/pickle.rst:594 msgid ":meth:`__getnewargs_ex__` is now used in protocols 2 and 3." msgstr "" -#: ../../library/pickle.rst:596 +#: ../../library/pickle.rst:600 msgid "" "This method serves a similar purpose as :meth:`__getnewargs_ex__`, but " "supports only positional arguments. It must return a tuple of arguments " "``args`` which will be passed to the :meth:`__new__` method upon unpickling." msgstr "" -#: ../../library/pickle.rst:600 +#: ../../library/pickle.rst:604 msgid "" ":meth:`__getnewargs__` will not be called if :meth:`__getnewargs_ex__` is " "defined." msgstr "" -#: ../../library/pickle.rst:603 +#: ../../library/pickle.rst:607 msgid "" "Before Python 3.6, :meth:`__getnewargs__` was called instead of " ":meth:`__getnewargs_ex__` in protocols 2 and 3." msgstr "" -#: ../../library/pickle.rst:610 +#: ../../library/pickle.rst:614 msgid "" "Classes can further influence how their instances are pickled; if the class " "defines the method :meth:`__getstate__`, it is called and the returned " @@ -816,7 +823,7 @@ msgid "" " the instance's :attr:`~object.__dict__` is pickled as usual." msgstr "" -#: ../../library/pickle.rst:619 +#: ../../library/pickle.rst:623 msgid "" "Upon unpickling, if the class defines :meth:`__setstate__`, it is called " "with the unpickled state. In that case, there is no requirement for the " @@ -824,19 +831,19 @@ msgid "" "dictionary and its items are assigned to the new instance's dictionary." msgstr "" -#: ../../library/pickle.rst:626 +#: ../../library/pickle.rst:630 msgid "" "If :meth:`__getstate__` returns a false value, the :meth:`__setstate__` " "method will not be called upon unpickling." msgstr "" -#: ../../library/pickle.rst:630 +#: ../../library/pickle.rst:634 msgid "" "Refer to the section :ref:`pickle-state` for more information about how to " "use the methods :meth:`__getstate__` and :meth:`__setstate__`." msgstr "" -#: ../../library/pickle.rst:635 +#: ../../library/pickle.rst:639 msgid "" "At unpickling time, some methods like :meth:`__getattr__`, " ":meth:`__getattribute__`, or :meth:`__setattr__` may be called upon the " @@ -846,7 +853,7 @@ msgid "" " :meth:`__new__` nor :meth:`__init__` will be called." msgstr "" -#: ../../library/pickle.rst:644 +#: ../../library/pickle.rst:648 msgid "" "As we shall see, pickle does not use directly the methods described above. " "In fact, these methods are part of the copy protocol which implements the " @@ -855,7 +862,7 @@ msgid "" "objects. [#]_" msgstr "" -#: ../../library/pickle.rst:650 +#: ../../library/pickle.rst:654 msgid "" "Although powerful, implementing :meth:`__reduce__` directly in your classes " "is error prone. For this reason, class designers should use the high-level " @@ -865,14 +872,14 @@ msgid "" "pickling or both." msgstr "" -#: ../../library/pickle.rst:659 +#: ../../library/pickle.rst:663 msgid "" "The interface is currently defined as follows. The :meth:`__reduce__` " "method takes no argument and shall return either a string or preferably a " "tuple (the returned object is often referred to as the \"reduce value\")." msgstr "" -#: ../../library/pickle.rst:663 +#: ../../library/pickle.rst:667 msgid "" "If a string is returned, the string should be interpreted as the name of a " "global variable. It should be the object's local name relative to its " @@ -880,26 +887,26 @@ msgid "" "object's module. This behaviour is typically useful for singletons." msgstr "" -#: ../../library/pickle.rst:668 +#: ../../library/pickle.rst:672 msgid "" "When a tuple is returned, it must be between two and six items long. " "Optional items can either be omitted, or ``None`` can be provided as their " "value. The semantics of each item are in order:" msgstr "" -#: ../../library/pickle.rst:674 +#: ../../library/pickle.rst:678 msgid "" "A callable object that will be called to create the initial version of the " "object." msgstr "" -#: ../../library/pickle.rst:677 +#: ../../library/pickle.rst:681 msgid "" "A tuple of arguments for the callable object. An empty tuple must be given " "if the callable does not accept any argument." msgstr "" -#: ../../library/pickle.rst:680 +#: ../../library/pickle.rst:684 msgid "" "Optionally, the object's state, which will be passed to the object's " ":meth:`__setstate__` method as previously described. If the object has no " @@ -907,7 +914,7 @@ msgid "" " object's :attr:`~object.__dict__` attribute." msgstr "" -#: ../../library/pickle.rst:685 +#: ../../library/pickle.rst:689 msgid "" "Optionally, an iterator (and not a sequence) yielding successive items. " "These items will be appended to the object either using ``obj.append(item)``" @@ -919,7 +926,7 @@ msgid "" "must be supported.)" msgstr "" -#: ../../library/pickle.rst:694 +#: ../../library/pickle.rst:698 msgid "" "Optionally, an iterator (not a sequence) yielding successive key-value " "pairs. These items will be stored to the object using ``obj[key] = value``." @@ -927,7 +934,7 @@ msgid "" " classes as long as they implement :meth:`__setitem__`." msgstr "" -#: ../../library/pickle.rst:699 +#: ../../library/pickle.rst:703 msgid "" "Optionally, a callable with a ``(obj, state)`` signature. This callable " "allows the user to programmatically control the state-updating behavior of a" @@ -936,11 +943,11 @@ msgid "" ":meth:`__setstate__`." msgstr "" -#: ../../library/pickle.rst:705 +#: ../../library/pickle.rst:709 msgid "The optional sixth tuple item, ``(obj, state)``, was added." msgstr "" -#: ../../library/pickle.rst:711 +#: ../../library/pickle.rst:715 msgid "" "Alternatively, a :meth:`__reduce_ex__` method may be defined. The only " "difference is this method should take a single integer argument, the " @@ -950,11 +957,11 @@ msgid "" " to provide backwards-compatible reduce values for older Python releases." msgstr "" -#: ../../library/pickle.rst:723 +#: ../../library/pickle.rst:727 msgid "Persistence of External Objects" msgstr "" -#: ../../library/pickle.rst:729 +#: ../../library/pickle.rst:733 msgid "" "For the benefit of object persistence, the :mod:`pickle` module supports the" " notion of a reference to an object outside the pickled data stream. Such " @@ -963,7 +970,7 @@ msgid "" " (for any newer protocol)." msgstr "" -#: ../../library/pickle.rst:735 +#: ../../library/pickle.rst:739 msgid "" "The resolution of such persistent IDs is not defined by the :mod:`pickle` " "module; it will delegate this resolution to the user-defined methods on the " @@ -971,7 +978,7 @@ msgid "" ":meth:`~Unpickler.persistent_load` respectively." msgstr "" -#: ../../library/pickle.rst:740 +#: ../../library/pickle.rst:744 msgid "" "To pickle objects that have an external persistent ID, the pickler must have" " a custom :meth:`~Pickler.persistent_id` method that takes an object as an " @@ -982,60 +989,60 @@ msgid "" "persistent ID." msgstr "" -#: ../../library/pickle.rst:747 +#: ../../library/pickle.rst:751 msgid "" "To unpickle external objects, the unpickler must have a custom " ":meth:`~Unpickler.persistent_load` method that takes a persistent ID object " "and returns the referenced object." msgstr "" -#: ../../library/pickle.rst:751 +#: ../../library/pickle.rst:755 msgid "" "Here is a comprehensive example presenting how persistent ID can be used to " "pickle external objects by reference." msgstr "" -#: ../../library/pickle.rst:759 +#: ../../library/pickle.rst:763 msgid "Dispatch Tables" msgstr "" -#: ../../library/pickle.rst:761 +#: ../../library/pickle.rst:765 msgid "" "If one wants to customize pickling of some classes without disturbing any " "other code which depends on pickling, then one can create a pickler with a " "private dispatch table." msgstr "" -#: ../../library/pickle.rst:765 +#: ../../library/pickle.rst:769 msgid "" "The global dispatch table managed by the :mod:`copyreg` module is available " "as :data:`copyreg.dispatch_table`. Therefore, one may choose to use a " "modified copy of :data:`copyreg.dispatch_table` as a private dispatch table." msgstr "" -#: ../../library/pickle.rst:770 +#: ../../library/pickle.rst:774 msgid "For example ::" msgstr "" -#: ../../library/pickle.rst:777 +#: ../../library/pickle.rst:781 msgid "" "creates an instance of :class:`pickle.Pickler` with a private dispatch table" " which handles the ``SomeClass`` class specially. Alternatively, the code " "::" msgstr "" -#: ../../library/pickle.rst:787 +#: ../../library/pickle.rst:791 msgid "" "does the same, but all instances of ``MyPickler`` will by default share the " "same dispatch table. The equivalent code using the :mod:`copyreg` module is" " ::" msgstr "" -#: ../../library/pickle.rst:798 +#: ../../library/pickle.rst:802 msgid "Handling Stateful Objects" msgstr "" -#: ../../library/pickle.rst:804 +#: ../../library/pickle.rst:808 msgid "" "Here's an example that shows how to modify pickling behavior for a class. " "The :class:`TextReader` class opens a text file, and returns the line number" @@ -1047,15 +1054,15 @@ msgid "" "this behavior. ::" msgstr "" -#: ../../library/pickle.rst:850 +#: ../../library/pickle.rst:854 msgid "A sample usage might be something like this::" msgstr "" -#: ../../library/pickle.rst:864 +#: ../../library/pickle.rst:868 msgid "Custom Reduction for Types, Functions, and Other Objects" msgstr "" -#: ../../library/pickle.rst:868 +#: ../../library/pickle.rst:872 msgid "" "Sometimes, :attr:`~Pickler.dispatch_table` may not be flexible enough. In " "particular we may want to customize pickling based on another criterion than" @@ -1063,7 +1070,7 @@ msgid "" "and classes." msgstr "" -#: ../../library/pickle.rst:873 +#: ../../library/pickle.rst:877 msgid "" "For those cases, it is possible to subclass from the :class:`Pickler` class " "and implement a :meth:`~Pickler.reducer_override` method. This method can " @@ -1072,14 +1079,14 @@ msgid "" "behavior." msgstr "" -#: ../../library/pickle.rst:878 +#: ../../library/pickle.rst:882 msgid "" "If both the :attr:`~Pickler.dispatch_table` and " ":meth:`~Pickler.reducer_override` are defined, then " ":meth:`~Pickler.reducer_override` method takes priority." msgstr "" -#: ../../library/pickle.rst:883 +#: ../../library/pickle.rst:887 msgid "" "For performance reasons, :meth:`~Pickler.reducer_override` may not be called" " for the following objects: ``None``, ``True``, ``False``, and exact " @@ -1088,17 +1095,17 @@ msgid "" ":class:`tuple`." msgstr "" -#: ../../library/pickle.rst:889 +#: ../../library/pickle.rst:893 msgid "" "Here is a simple example where we allow pickling and reconstructing a given " "class::" msgstr "" -#: ../../library/pickle.rst:924 +#: ../../library/pickle.rst:928 msgid "Out-of-band Buffers" msgstr "" -#: ../../library/pickle.rst:928 +#: ../../library/pickle.rst:932 msgid "" "In some contexts, the :mod:`pickle` module is used to transfer massive " "amounts of data. Therefore, it can be important to minimize the number of " @@ -1108,7 +1115,7 @@ msgid "" "involves copying data to and from the pickle stream." msgstr "" -#: ../../library/pickle.rst:935 +#: ../../library/pickle.rst:939 msgid "" "This constraint can be eschewed if both the *provider* (the implementation " "of the object types to be transferred) and the *consumer* (the " @@ -1116,11 +1123,11 @@ msgid "" "transfer facilities provided by pickle protocol 5 and higher." msgstr "" -#: ../../library/pickle.rst:941 +#: ../../library/pickle.rst:945 msgid "Provider API" msgstr "" -#: ../../library/pickle.rst:943 +#: ../../library/pickle.rst:947 msgid "" "The large data objects to be pickled must implement a :meth:`__reduce_ex__` " "method specialized for protocol 5 and higher, which returns a " @@ -1128,7 +1135,7 @@ msgid "" " any large data." msgstr "" -#: ../../library/pickle.rst:948 +#: ../../library/pickle.rst:952 msgid "" "A :class:`PickleBuffer` object *signals* that the underlying buffer is " "eligible for out-of-band data transfer. Those objects remain compatible " @@ -1137,17 +1144,17 @@ msgid "" "themselves." msgstr "" -#: ../../library/pickle.rst:955 +#: ../../library/pickle.rst:959 msgid "Consumer API" msgstr "" -#: ../../library/pickle.rst:957 +#: ../../library/pickle.rst:961 msgid "" "A communications system can enable custom handling of the " ":class:`PickleBuffer` objects generated when serializing an object graph." msgstr "" -#: ../../library/pickle.rst:960 +#: ../../library/pickle.rst:964 msgid "" "On the sending side, it needs to pass a *buffer_callback* argument to " ":class:`Pickler` (or to the :func:`dump` or :func:`dumps` function), which " @@ -1157,7 +1164,7 @@ msgid "" "inserted." msgstr "" -#: ../../library/pickle.rst:967 +#: ../../library/pickle.rst:971 msgid "" "On the receiving side, it needs to pass a *buffers* argument to " ":class:`Unpickler` (or to the :func:`load` or :func:`loads` function), which" @@ -1168,7 +1175,7 @@ msgid "" ":class:`PickleBuffer` objects." msgstr "" -#: ../../library/pickle.rst:975 +#: ../../library/pickle.rst:979 msgid "" "Between the sending side and the receiving side, the communications system " "is free to implement its own transfer mechanism for out-of-band buffers. " @@ -1176,36 +1183,36 @@ msgid "" "dependent compression." msgstr "" -#: ../../library/pickle.rst:981 +#: ../../library/pickle.rst:985 msgid "Example" msgstr "Contoh" -#: ../../library/pickle.rst:983 +#: ../../library/pickle.rst:987 msgid "" "Here is a trivial example where we implement a :class:`bytearray` subclass " "able to participate in out-of-band buffer pickling::" msgstr "" -#: ../../library/pickle.rst:1007 +#: ../../library/pickle.rst:1011 msgid "" "The reconstructor (the ``_reconstruct`` class method) returns the buffer's " "providing object if it has the right type. This is an easy way to simulate " "zero-copy behaviour on this toy example." msgstr "" -#: ../../library/pickle.rst:1011 +#: ../../library/pickle.rst:1015 msgid "" "On the consumer side, we can pickle those objects the usual way, which when " "unserialized will give us a copy of the original object::" msgstr "" -#: ../../library/pickle.rst:1020 +#: ../../library/pickle.rst:1024 msgid "" "But if we pass a *buffer_callback* and then give back the accumulated " "buffers when unserializing, we are able to get back the original object::" msgstr "" -#: ../../library/pickle.rst:1030 +#: ../../library/pickle.rst:1034 msgid "" "This example is limited by the fact that :class:`bytearray` allocates its " "own memory: you cannot create a :class:`bytearray` instance that is backed " @@ -1215,15 +1222,15 @@ msgid "" "processes or systems." msgstr "" -#: ../../library/pickle.rst:1037 +#: ../../library/pickle.rst:1041 msgid ":pep:`574` -- Pickle protocol 5 with out-of-band data" msgstr "" -#: ../../library/pickle.rst:1043 +#: ../../library/pickle.rst:1047 msgid "Restricting Globals" msgstr "" -#: ../../library/pickle.rst:1048 +#: ../../library/pickle.rst:1052 msgid "" "By default, unpickling will import any class or function that it finds in " "the pickle data. For many applications, this behaviour is unacceptable as " @@ -1231,7 +1238,7 @@ msgid "" " what this hand-crafted pickle data stream does when loaded::" msgstr "" -#: ../../library/pickle.rst:1058 +#: ../../library/pickle.rst:1062 msgid "" "In this example, the unpickler imports the :func:`os.system` function and " "then apply the string argument \"echo hello world\". Although this example " @@ -1239,7 +1246,7 @@ msgid "" "system." msgstr "" -#: ../../library/pickle.rst:1062 +#: ../../library/pickle.rst:1066 msgid "" "For this reason, you may want to control what gets unpickled by customizing " ":meth:`Unpickler.find_class`. Unlike its name suggests, " @@ -1248,17 +1255,17 @@ msgid "" "globals or restrict them to a safe subset." msgstr "" -#: ../../library/pickle.rst:1068 +#: ../../library/pickle.rst:1072 msgid "" "Here is an example of an unpickler allowing only few safe classes from the " ":mod:`builtins` module to be loaded::" msgstr "" -#: ../../library/pickle.rst:1097 +#: ../../library/pickle.rst:1101 msgid "A sample usage of our unpickler working has intended::" msgstr "" -#: ../../library/pickle.rst:1116 +#: ../../library/pickle.rst:1120 msgid "" "As our examples shows, you have to be careful with what you allow to be " "unpickled. Therefore if security is a concern, you may want to consider " @@ -1266,97 +1273,97 @@ msgid "" "party solutions." msgstr "" -#: ../../library/pickle.rst:1123 +#: ../../library/pickle.rst:1127 msgid "Performance" msgstr "Performa" -#: ../../library/pickle.rst:1125 +#: ../../library/pickle.rst:1129 msgid "" "Recent versions of the pickle protocol (from protocol 2 and upwards) feature" " efficient binary encodings for several common features and built-in types. " "Also, the :mod:`pickle` module has a transparent optimizer written in C." msgstr "" -#: ../../library/pickle.rst:1133 +#: ../../library/pickle.rst:1137 msgid "Examples" msgstr "Contoh-contoh" -#: ../../library/pickle.rst:1135 +#: ../../library/pickle.rst:1139 msgid "" "For the simplest code, use the :func:`dump` and :func:`load` functions. ::" msgstr "" -#: ../../library/pickle.rst:1151 +#: ../../library/pickle.rst:1155 msgid "The following example reads the resulting pickled data. ::" msgstr "" -#: ../../library/pickle.rst:1168 +#: ../../library/pickle.rst:1172 msgid "Module :mod:`copyreg`" msgstr "" -#: ../../library/pickle.rst:1168 +#: ../../library/pickle.rst:1172 msgid "Pickle interface constructor registration for extension types." msgstr "" -#: ../../library/pickle.rst:1171 +#: ../../library/pickle.rst:1175 msgid "Module :mod:`pickletools`" msgstr "" -#: ../../library/pickle.rst:1171 +#: ../../library/pickle.rst:1175 msgid "Tools for working with and analyzing pickled data." msgstr "" -#: ../../library/pickle.rst:1174 +#: ../../library/pickle.rst:1178 msgid "Module :mod:`shelve`" msgstr "" -#: ../../library/pickle.rst:1174 +#: ../../library/pickle.rst:1178 msgid "Indexed databases of objects; uses :mod:`pickle`." msgstr "" -#: ../../library/pickle.rst:1177 +#: ../../library/pickle.rst:1181 msgid "Module :mod:`copy`" msgstr "" -#: ../../library/pickle.rst:1177 +#: ../../library/pickle.rst:1181 msgid "Shallow and deep object copying." msgstr "" -#: ../../library/pickle.rst:1179 +#: ../../library/pickle.rst:1183 msgid "Module :mod:`marshal`" msgstr "" -#: ../../library/pickle.rst:1180 +#: ../../library/pickle.rst:1184 msgid "High-performance serialization of built-in types." msgstr "" -#: ../../library/pickle.rst:1184 +#: ../../library/pickle.rst:1188 msgid "Footnotes" msgstr "Catatan kaki" -#: ../../library/pickle.rst:1185 +#: ../../library/pickle.rst:1189 msgid "Don't confuse this with the :mod:`marshal` module" msgstr "" -#: ../../library/pickle.rst:1187 +#: ../../library/pickle.rst:1191 msgid "" "This is why :keyword:`lambda` functions cannot be pickled: all " ":keyword:`!lambda` functions share the same name: ````." msgstr "" -#: ../../library/pickle.rst:1190 +#: ../../library/pickle.rst:1194 msgid "" "The exception raised will likely be an :exc:`ImportError` or an " ":exc:`AttributeError` but it could be something else." msgstr "" -#: ../../library/pickle.rst:1193 +#: ../../library/pickle.rst:1197 msgid "" "The :mod:`copy` module uses this protocol for shallow and deep copying " "operations." msgstr "" -#: ../../library/pickle.rst:1196 +#: ../../library/pickle.rst:1200 msgid "" "The limitation on alphanumeric characters is due to the fact the persistent " "IDs, in protocol 0, are delimited by the newline character. Therefore if " diff --git a/library/platform.po b/library/platform.po index 9e0b15b..5a65c6b 100644 --- a/library/platform.po +++ b/library/platform.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:22+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -277,8 +277,8 @@ msgstr "" #: ../../library/platform.rst:229 msgid "" -"Returns True if the windows edition returned by win32_edition is recognized " -"as an IoT edition." +"Return ``True`` if the Windows edition returned by :func:`win32_edition` is " +"recognized as an IoT edition." msgstr "" #: ../../library/platform.rst:236 diff --git a/library/plistlib.po b/library/plistlib.po index 15ab62f..f3b9a40 100644 --- a/library/plistlib.po +++ b/library/plistlib.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-03 11:50+0000\n" "PO-Revision-Date: 2017-02-16 23:22+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -280,8 +280,8 @@ msgstr "" #: ../../library/plistlib.rst:191 msgid "" -"It has one attribute, :attr:`data` which can be used to retrieve the int " -"value of the UID. :attr:`data` must be in the range `0 <= data <= 2**64`." +"It has one attribute, :attr:`data`, which can be used to retrieve the int " +"value of the UID. :attr:`data` must be in the range `0 <= data < 2**64`." msgstr "" #: ../../library/plistlib.rst:197 diff --git a/library/sched.po b/library/sched.po index d2a0e95..114327d 100644 --- a/library/sched.po +++ b/library/sched.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:25+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -112,7 +112,7 @@ msgid "" msgstr "" #: ../../library/sched.rst:107 -msgid "Return true if the event queue is empty." +msgid "Return ``True`` if the event queue is empty." msgstr "" #: ../../library/sched.rst:112 diff --git a/library/ssl.po b/library/ssl.po index 0335af5..9cd5199 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-17 11:28+0000\n" +"POT-Creation-Date: 2019-12-08 12:06+0000\n" "PO-Revision-Date: 2017-02-16 23:27+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -548,8 +548,8 @@ msgid "" "or exactly ``True`` if the certificate is trustworthy for all purposes." msgstr "" -#: ../../library/ssl.rst:489 ../../library/ssl.rst:1574 -#: ../../library/ssl.rst:1889 +#: ../../library/ssl.rst:489 ../../library/ssl.rst:1577 +#: ../../library/ssl.rst:1892 msgid "Example::" msgstr "Contoh::" @@ -629,7 +629,7 @@ msgid "" "does not send any for client cert authentication." msgstr "" -#: ../../library/ssl.rst:560 ../../library/ssl.rst:2314 +#: ../../library/ssl.rst:560 ../../library/ssl.rst:2317 msgid "See the discussion of :ref:`ssl-security` below." msgstr "" @@ -1367,7 +1367,11 @@ msgid "" "``crlDistributionPoints``, ``caIssuers`` and ``OCSP`` URIs." msgstr "" -#: ../../library/ssl.rst:1261 +#: ../../library/ssl.rst:1259 +msgid "IPv6 address strings no longer have a trailing new line." +msgstr "" + +#: ../../library/ssl.rst:1264 msgid "" "Returns a three-value tuple containing the name of the cipher being used, " "the version of the SSL protocol that defines its use, and the number of " @@ -1375,7 +1379,7 @@ msgid "" "``None``." msgstr "" -#: ../../library/ssl.rst:1267 +#: ../../library/ssl.rst:1270 msgid "" "Return the list of ciphers shared by the client during the handshake. Each " "entry of the returned list is a three-value tuple containing the name of the" @@ -1385,25 +1389,25 @@ msgid "" "client socket." msgstr "" -#: ../../library/ssl.rst:1278 +#: ../../library/ssl.rst:1281 msgid "" "Return the compression algorithm being used as a string, or ``None`` if the " "connection isn't compressed." msgstr "" -#: ../../library/ssl.rst:1281 +#: ../../library/ssl.rst:1284 msgid "" "If the higher-level protocol supports its own compression mechanism, you can" " use :data:`OP_NO_COMPRESSION` to disable SSL-level compression." msgstr "" -#: ../../library/ssl.rst:1288 +#: ../../library/ssl.rst:1291 msgid "" "Get channel binding data for current connection, as a bytes object. Returns" " ``None`` if not connected or the handshake has not been completed." msgstr "" -#: ../../library/ssl.rst:1291 +#: ../../library/ssl.rst:1294 msgid "" "The *cb_type* parameter allow selection of the desired channel binding type." " Valid channel binding types are listed in the :data:`CHANNEL_BINDING_TYPES`" @@ -1412,7 +1416,7 @@ msgid "" "unsupported channel binding type is requested." msgstr "" -#: ../../library/ssl.rst:1301 +#: ../../library/ssl.rst:1304 msgid "" "Return the protocol that was selected during the TLS handshake. If " ":meth:`SSLContext.set_alpn_protocols` was not called, if the other party " @@ -1421,7 +1425,7 @@ msgid "" "returned." msgstr "" -#: ../../library/ssl.rst:1311 +#: ../../library/ssl.rst:1314 msgid "" "Return the higher-level protocol that was selected during the TLS/SSL " "handshake. If :meth:`SSLContext.set_npn_protocols` was not called, or if the" @@ -1429,7 +1433,7 @@ msgid "" " this will return ``None``." msgstr "" -#: ../../library/ssl.rst:1320 +#: ../../library/ssl.rst:1323 msgid "" "Performs the SSL shutdown handshake, which removes the TLS layer from the " "underlying socket, and returns the underlying socket object. This can be " @@ -1438,7 +1442,7 @@ msgid "" "other side of the connection, rather than the original socket." msgstr "" -#: ../../library/ssl.rst:1328 +#: ../../library/ssl.rst:1331 msgid "" "Requests post-handshake authentication (PHA) from a TLS 1.3 client. PHA can " "only be initiated for a TLS 1.3 connection from a server-side socket, after " @@ -1446,26 +1450,26 @@ msgid "" ":attr:`SSLContext.post_handshake_auth`." msgstr "" -#: ../../library/ssl.rst:1333 +#: ../../library/ssl.rst:1336 msgid "" "The method does not perform a cert exchange immediately. The server-side " "sends a CertificateRequest during the next write event and expects the " "client to respond with a certificate on the next read event." msgstr "" -#: ../../library/ssl.rst:1337 +#: ../../library/ssl.rst:1340 msgid "" "If any precondition isn't met (e.g. not TLS 1.3, PHA not enabled), an " ":exc:`SSLError` is raised." msgstr "" -#: ../../library/ssl.rst:1341 +#: ../../library/ssl.rst:1344 msgid "" "Only available with OpenSSL 1.1.1 and TLS 1.3 enabled. Without TLS 1.3 " "support, the method raises :exc:`NotImplementedError`." msgstr "" -#: ../../library/ssl.rst:1348 +#: ../../library/ssl.rst:1351 msgid "" "Return the actual SSL protocol version negotiated by the connection as a " "string, or ``None`` is no secure connection is established. As of this " @@ -1474,13 +1478,13 @@ msgid "" "may define more return values." msgstr "" -#: ../../library/ssl.rst:1358 +#: ../../library/ssl.rst:1361 msgid "" "Returns the number of already decrypted bytes available for read, pending on" " the connection." msgstr "" -#: ../../library/ssl.rst:1363 +#: ../../library/ssl.rst:1366 msgid "" "The :class:`SSLContext` object this SSL socket is tied to. If the SSL " "socket was created using the deprecated :func:`wrap_socket` function (rather" @@ -1488,19 +1492,19 @@ msgid "" "created for this SSL socket." msgstr "" -#: ../../library/ssl.rst:1372 +#: ../../library/ssl.rst:1375 msgid "" "A boolean which is ``True`` for server-side sockets and ``False`` for " "client-side sockets." msgstr "" -#: ../../library/ssl.rst:1379 +#: ../../library/ssl.rst:1382 msgid "" "Hostname of the server: :class:`str` type, or ``None`` for server-side " "socket or if the hostname was not specified in the constructor." msgstr "" -#: ../../library/ssl.rst:1384 +#: ../../library/ssl.rst:1387 msgid "" "The attribute is now always ASCII text. When ``server_hostname`` is an " "internationalized domain name (IDN), this attribute now stores the A-label " @@ -1508,7 +1512,7 @@ msgid "" "(``\"pythön.org\"``)." msgstr "" -#: ../../library/ssl.rst:1392 +#: ../../library/ssl.rst:1395 msgid "" "The :class:`SSLSession` for this SSL connection. The session is available " "for client and server side sockets after the TLS handshake has been " @@ -1516,11 +1520,11 @@ msgid "" ":meth:`~SSLSocket.do_handshake` has been called to reuse a session." msgstr "" -#: ../../library/ssl.rst:1405 +#: ../../library/ssl.rst:1408 msgid "SSL Contexts" msgstr "" -#: ../../library/ssl.rst:1409 +#: ../../library/ssl.rst:1412 msgid "" "An SSL context holds various data longer-lived than single SSL connections, " "such as SSL configuration options, certificate(s) and private key(s). It " @@ -1528,7 +1532,7 @@ msgid "" "speed up repeated connections from the same clients." msgstr "" -#: ../../library/ssl.rst:1416 +#: ../../library/ssl.rst:1419 msgid "" "Create a new SSL context. You may pass *protocol* which must be one of the " "``PROTOCOL_*`` constants defined in this module. The parameter specifies " @@ -1539,121 +1543,121 @@ msgid "" "most compatibility with other versions." msgstr "" -#: ../../library/ssl.rst:1425 +#: ../../library/ssl.rst:1428 msgid "" "Here's a table showing which versions in a client (down the side) can " "connect to which versions in a server (along the top):" msgstr "" -#: ../../library/ssl.rst:1431 +#: ../../library/ssl.rst:1434 msgid "*client* / **server**" msgstr "" -#: ../../library/ssl.rst:1431 +#: ../../library/ssl.rst:1434 msgid "**SSLv2**" msgstr "**SSLv2**" -#: ../../library/ssl.rst:1431 +#: ../../library/ssl.rst:1434 msgid "**SSLv3**" msgstr "**SSLv3**" -#: ../../library/ssl.rst:1431 +#: ../../library/ssl.rst:1434 msgid "**TLS** [3]_" msgstr "" -#: ../../library/ssl.rst:1431 +#: ../../library/ssl.rst:1434 msgid "**TLSv1**" msgstr "**TLSv1**" -#: ../../library/ssl.rst:1431 +#: ../../library/ssl.rst:1434 msgid "**TLSv1.1**" msgstr "**TLSv1.1**" -#: ../../library/ssl.rst:1431 +#: ../../library/ssl.rst:1434 msgid "**TLSv1.2**" msgstr "**TLSv1.2**" -#: ../../library/ssl.rst:1433 +#: ../../library/ssl.rst:1436 msgid "*SSLv2*" msgstr "*SSLv2*" -#: ../../library/ssl.rst:1433 ../../library/ssl.rst:1434 -#: ../../library/ssl.rst:1435 ../../library/ssl.rst:1435 -#: ../../library/ssl.rst:1435 ../../library/ssl.rst:1435 -#: ../../library/ssl.rst:1436 ../../library/ssl.rst:1436 -#: ../../library/ssl.rst:1437 ../../library/ssl.rst:1437 +#: ../../library/ssl.rst:1436 ../../library/ssl.rst:1437 +#: ../../library/ssl.rst:1438 ../../library/ssl.rst:1438 #: ../../library/ssl.rst:1438 ../../library/ssl.rst:1438 +#: ../../library/ssl.rst:1439 ../../library/ssl.rst:1439 +#: ../../library/ssl.rst:1440 ../../library/ssl.rst:1440 +#: ../../library/ssl.rst:1441 ../../library/ssl.rst:1441 msgid "yes" msgstr "ya" -#: ../../library/ssl.rst:1433 ../../library/ssl.rst:1433 -#: ../../library/ssl.rst:1433 ../../library/ssl.rst:1433 -#: ../../library/ssl.rst:1434 ../../library/ssl.rst:1434 -#: ../../library/ssl.rst:1434 ../../library/ssl.rst:1434 #: ../../library/ssl.rst:1436 ../../library/ssl.rst:1436 #: ../../library/ssl.rst:1436 ../../library/ssl.rst:1436 #: ../../library/ssl.rst:1437 ../../library/ssl.rst:1437 #: ../../library/ssl.rst:1437 ../../library/ssl.rst:1437 -#: ../../library/ssl.rst:1438 ../../library/ssl.rst:1438 -#: ../../library/ssl.rst:1438 ../../library/ssl.rst:1438 +#: ../../library/ssl.rst:1439 ../../library/ssl.rst:1439 +#: ../../library/ssl.rst:1439 ../../library/ssl.rst:1439 +#: ../../library/ssl.rst:1440 ../../library/ssl.rst:1440 +#: ../../library/ssl.rst:1440 ../../library/ssl.rst:1440 +#: ../../library/ssl.rst:1441 ../../library/ssl.rst:1441 +#: ../../library/ssl.rst:1441 ../../library/ssl.rst:1441 msgid "no" msgstr "tidak" -#: ../../library/ssl.rst:1433 ../../library/ssl.rst:1435 +#: ../../library/ssl.rst:1436 ../../library/ssl.rst:1438 msgid "no [1]_" msgstr "" -#: ../../library/ssl.rst:1434 +#: ../../library/ssl.rst:1437 msgid "*SSLv3*" msgstr "*SSLv3*" -#: ../../library/ssl.rst:1434 ../../library/ssl.rst:1435 +#: ../../library/ssl.rst:1437 ../../library/ssl.rst:1438 msgid "no [2]_" msgstr "" -#: ../../library/ssl.rst:1435 +#: ../../library/ssl.rst:1438 msgid "*TLS* (*SSLv23*) [3]_" msgstr "" -#: ../../library/ssl.rst:1436 +#: ../../library/ssl.rst:1439 msgid "*TLSv1*" msgstr "*TLSv1*" -#: ../../library/ssl.rst:1437 +#: ../../library/ssl.rst:1440 msgid "*TLSv1.1*" msgstr "*TLSv1.1*" -#: ../../library/ssl.rst:1438 +#: ../../library/ssl.rst:1441 msgid "*TLSv1.2*" msgstr "*TLSv1.2*" -#: ../../library/ssl.rst:1441 +#: ../../library/ssl.rst:1444 msgid "Footnotes" msgstr "Catatan kaki" -#: ../../library/ssl.rst:1442 +#: ../../library/ssl.rst:1445 msgid "" ":class:`SSLContext` disables SSLv2 with :data:`OP_NO_SSLv2` by default." msgstr "" -#: ../../library/ssl.rst:1443 +#: ../../library/ssl.rst:1446 msgid "" ":class:`SSLContext` disables SSLv3 with :data:`OP_NO_SSLv3` by default." msgstr "" -#: ../../library/ssl.rst:1444 +#: ../../library/ssl.rst:1447 msgid "" "TLS 1.3 protocol will be available with :data:`PROTOCOL_TLS` in OpenSSL >= " "1.1.1. There is no dedicated PROTOCOL constant for just TLS 1.3." msgstr "" -#: ../../library/ssl.rst:1449 +#: ../../library/ssl.rst:1452 msgid "" ":func:`create_default_context` lets the :mod:`ssl` module choose security " "settings for a given purpose." msgstr "" -#: ../../library/ssl.rst:1454 +#: ../../library/ssl.rst:1457 msgid "" "The context is created with secure default values. The options " ":data:`OP_NO_COMPRESSION`, :data:`OP_CIPHER_SERVER_PREFERENCE`, " @@ -1664,22 +1668,22 @@ msgid "" "(except for :data:`PROTOCOL_SSLv2`)." msgstr "" -#: ../../library/ssl.rst:1464 +#: ../../library/ssl.rst:1467 msgid ":class:`SSLContext` objects have the following methods and attributes:" msgstr "" -#: ../../library/ssl.rst:1468 +#: ../../library/ssl.rst:1471 msgid "" "Get statistics about quantities of loaded X.509 certificates, count of X.509" " certificates flagged as CA certificates and certificate revocation lists as" " dictionary." msgstr "" -#: ../../library/ssl.rst:1472 +#: ../../library/ssl.rst:1475 msgid "Example for a context with one CA cert and one other cert::" msgstr "" -#: ../../library/ssl.rst:1482 +#: ../../library/ssl.rst:1485 msgid "" "Load a private key and the corresponding certificate. The *certfile* string" " must be the path to a single file in PEM format containing the certificate " @@ -1691,7 +1695,7 @@ msgid "" "*certfile*." msgstr "" -#: ../../library/ssl.rst:1491 +#: ../../library/ssl.rst:1494 msgid "" "The *password* argument may be a function to call to get the password for " "decrypting the private key. It will only be called if the private key is " @@ -1703,24 +1707,24 @@ msgid "" "encrypted and no password is needed." msgstr "" -#: ../../library/ssl.rst:1500 +#: ../../library/ssl.rst:1503 msgid "" "If the *password* argument is not specified and a password is required, " "OpenSSL's built-in password prompting mechanism will be used to " "interactively prompt the user for a password." msgstr "" -#: ../../library/ssl.rst:1504 +#: ../../library/ssl.rst:1507 msgid "" "An :class:`SSLError` is raised if the private key doesn't match with the " "certificate." msgstr "" -#: ../../library/ssl.rst:1507 +#: ../../library/ssl.rst:1510 msgid "New optional argument *password*." msgstr "" -#: ../../library/ssl.rst:1512 +#: ../../library/ssl.rst:1515 msgid "" "Load a set of default \"certification authority\" (CA) certificates from " "default locations. On Windows it loads CA certs from the ``CA`` and ``ROOT``" @@ -1729,7 +1733,7 @@ msgid "" "load CA certificates from other locations, too." msgstr "" -#: ../../library/ssl.rst:1518 +#: ../../library/ssl.rst:1521 msgid "" "The *purpose* flag specifies what kind of CA certificates are loaded. The " "default settings :data:`Purpose.SERVER_AUTH` loads certificates, that are " @@ -1738,28 +1742,28 @@ msgid "" "verification on the server side." msgstr "" -#: ../../library/ssl.rst:1528 +#: ../../library/ssl.rst:1531 msgid "" "Load a set of \"certification authority\" (CA) certificates used to validate" " other peers' certificates when :data:`verify_mode` is other than " ":data:`CERT_NONE`. At least one of *cafile* or *capath* must be specified." msgstr "" -#: ../../library/ssl.rst:1532 +#: ../../library/ssl.rst:1535 msgid "" "This method can also load certification revocation lists (CRLs) in PEM or " "DER format. In order to make use of CRLs, :attr:`SSLContext.verify_flags` " "must be configured properly." msgstr "" -#: ../../library/ssl.rst:1536 +#: ../../library/ssl.rst:1539 msgid "" "The *cafile* string, if present, is the path to a file of concatenated CA " "certificates in PEM format. See the discussion of :ref:`ssl-certificates` " "for more information about how to arrange the certificates in this file." msgstr "" -#: ../../library/ssl.rst:1541 +#: ../../library/ssl.rst:1544 msgid "" "The *capath* string, if present, is the path to a directory containing " "several CA certificates in PEM format, following an `OpenSSL specific layout" @@ -1767,7 +1771,7 @@ msgid "" "`_." msgstr "" -#: ../../library/ssl.rst:1546 +#: ../../library/ssl.rst:1549 msgid "" "The *cadata* object, if present, is either an ASCII string of one or more " "PEM-encoded certificates or a :term:`bytes-like object` of DER-encoded " @@ -1775,11 +1779,11 @@ msgid "" " are ignored but at least one certificate must be present." msgstr "" -#: ../../library/ssl.rst:1551 +#: ../../library/ssl.rst:1554 msgid "New optional argument *cadata*" msgstr "" -#: ../../library/ssl.rst:1556 +#: ../../library/ssl.rst:1559 msgid "" "Get a list of loaded \"certification authority\" (CA) certificates. If the " "``binary_form`` parameter is :const:`False` each list entry is a dict like " @@ -1789,27 +1793,27 @@ msgid "" "a SSL connection." msgstr "" -#: ../../library/ssl.rst:1564 +#: ../../library/ssl.rst:1567 msgid "" "Certificates in a capath directory aren't loaded unless they have been used " "at least once." msgstr "" -#: ../../library/ssl.rst:1571 +#: ../../library/ssl.rst:1574 msgid "" "Get a list of enabled ciphers. The list is in order of cipher priority. See " ":meth:`SSLContext.set_ciphers`." msgstr "" -#: ../../library/ssl.rst:1594 +#: ../../library/ssl.rst:1597 msgid "On OpenSSL 1.1 and newer the cipher dict contains additional fields::" msgstr "" -#: ../../library/ssl.rst:1623 +#: ../../library/ssl.rst:1626 msgid ":ref:`Availability `: OpenSSL 1.0.2+." msgstr "" -#: ../../library/ssl.rst:1628 +#: ../../library/ssl.rst:1631 msgid "" "Load a set of default \"certification authority\" (CA) certificates from a " "filesystem path defined when building the OpenSSL library. Unfortunately, " @@ -1819,7 +1823,7 @@ msgid "" "configured properly." msgstr "" -#: ../../library/ssl.rst:1637 +#: ../../library/ssl.rst:1640 msgid "" "Set the available ciphers for sockets created with this context. It should " "be a string in the `OpenSSL cipher list format " @@ -1828,19 +1832,19 @@ msgid "" " use of all the specified ciphers), an :class:`SSLError` will be raised." msgstr "" -#: ../../library/ssl.rst:1645 +#: ../../library/ssl.rst:1648 msgid "" "when connected, the :meth:`SSLSocket.cipher` method of SSL sockets will give" " the currently selected cipher." msgstr "" -#: ../../library/ssl.rst:1648 +#: ../../library/ssl.rst:1651 msgid "" "OpenSSL 1.1.1 has TLS 1.3 cipher suites enabled by default. The suites " "cannot be disabled with :meth:`~SSLContext.set_ciphers`." msgstr "" -#: ../../library/ssl.rst:1653 +#: ../../library/ssl.rst:1656 msgid "" "Specify which protocols the socket should advertise during the SSL/TLS " "handshake. It should be a list of ASCII strings, like ``['http/1.1', " @@ -1850,20 +1854,20 @@ msgid "" "will return the agreed-upon protocol." msgstr "" -#: ../../library/ssl.rst:1660 +#: ../../library/ssl.rst:1663 msgid "" "This method will raise :exc:`NotImplementedError` if :data:`HAS_ALPN` is " -"False." +"``False``." msgstr "" -#: ../../library/ssl.rst:1663 +#: ../../library/ssl.rst:1666 msgid "" "OpenSSL 1.1.0 to 1.1.0e will abort the handshake and raise :exc:`SSLError` " "when both sides support ALPN but cannot agree on a protocol. 1.1.0f+ behaves" " like 1.0.2, :meth:`SSLSocket.selected_alpn_protocol` returns None." msgstr "" -#: ../../library/ssl.rst:1671 +#: ../../library/ssl.rst:1674 msgid "" "Specify which protocols the socket should advertise during the SSL/TLS " "handshake. It should be a list of strings, like ``['http/1.1', 'spdy/2']``, " @@ -1875,13 +1879,13 @@ msgid "" "protocol." msgstr "" -#: ../../library/ssl.rst:1679 +#: ../../library/ssl.rst:1682 msgid "" "This method will raise :exc:`NotImplementedError` if :data:`HAS_NPN` is " -"False." +"``False``." msgstr "" -#: ../../library/ssl.rst:1686 +#: ../../library/ssl.rst:1689 msgid "" "Register a callback function that will be called after the TLS Client Hello " "handshake message has been received by the SSL/TLS server when the TLS " @@ -1889,14 +1893,14 @@ msgid "" "mechanism is specified in :rfc:`6066` section 3 - Server Name Indication." msgstr "" -#: ../../library/ssl.rst:1691 +#: ../../library/ssl.rst:1694 msgid "" "Only one callback can be set per ``SSLContext``. If *sni_callback* is set " "to ``None`` then the callback is disabled. Calling this function a " "subsequent time will disable the previously registered callback." msgstr "" -#: ../../library/ssl.rst:1695 +#: ../../library/ssl.rst:1698 msgid "" "The callback function will be called with three arguments; the first being " "the :class:`ssl.SSLSocket`, the second is a string that represents the " @@ -1907,7 +1911,7 @@ msgid "" "--pythn-mua.org\"``)." msgstr "" -#: ../../library/ssl.rst:1703 +#: ../../library/ssl.rst:1706 msgid "" "A typical use of this callback is to change the :class:`ssl.SSLSocket`'s " ":attr:`SSLSocket.context` attribute to a new object of type " @@ -1915,7 +1919,7 @@ msgid "" " name." msgstr "" -#: ../../library/ssl.rst:1708 +#: ../../library/ssl.rst:1711 msgid "" "Due to the early negotiation phase of the TLS connection, only limited " "methods and attributes are usable like " @@ -1926,7 +1930,7 @@ msgid "" " will not contain return meaningful values nor can they be called safely." msgstr "" -#: ../../library/ssl.rst:1716 +#: ../../library/ssl.rst:1719 msgid "" "The *sni_callback* function must return ``None`` to allow the TLS " "negotiation to continue. If a TLS failure is required, a constant " @@ -1935,20 +1939,20 @@ msgid "" ":const:`ALERT_DESCRIPTION_INTERNAL_ERROR`." msgstr "" -#: ../../library/ssl.rst:1722 +#: ../../library/ssl.rst:1725 msgid "" "If an exception is raised from the *sni_callback* function the TLS " "connection will terminate with a fatal TLS alert message " ":const:`ALERT_DESCRIPTION_HANDSHAKE_FAILURE`." msgstr "" -#: ../../library/ssl.rst:1726 +#: ../../library/ssl.rst:1729 msgid "" "This method will raise :exc:`NotImplementedError` if the OpenSSL library had" " OPENSSL_NO_TLSEXT defined when it was built." msgstr "" -#: ../../library/ssl.rst:1733 +#: ../../library/ssl.rst:1736 msgid "" "This is a legacy API retained for backwards compatibility. When possible, " "you should use :attr:`sni_callback` instead. The given " @@ -1957,14 +1961,14 @@ msgid "" "*server_name_callback* receives a decoded U-label (``\"pythön.org\"``)." msgstr "" -#: ../../library/ssl.rst:1739 +#: ../../library/ssl.rst:1742 msgid "" "If there is an decoding error on the server name, the TLS connection will " "terminate with an :const:`ALERT_DESCRIPTION_INTERNAL_ERROR` fatal TLS alert " "message to the client." msgstr "" -#: ../../library/ssl.rst:1747 +#: ../../library/ssl.rst:1750 msgid "" "Load the key generation parameters for Diffie-Hellman (DH) key exchange. " "Using DH key exchange improves forward secrecy at the expense of " @@ -1973,13 +1977,13 @@ msgid "" "format." msgstr "" -#: ../../library/ssl.rst:1753 +#: ../../library/ssl.rst:1756 msgid "" "This setting doesn't apply to client sockets. You can also use the " ":data:`OP_SINGLE_DH_USE` option to further improve security." msgstr "" -#: ../../library/ssl.rst:1760 +#: ../../library/ssl.rst:1763 msgid "" "Set the curve name for Elliptic Curve-based Diffie-Hellman (ECDH) key " "exchange. ECDH is significantly faster than regular DH while arguably as " @@ -1988,27 +1992,27 @@ msgid "" "curve." msgstr "" -#: ../../library/ssl.rst:1766 +#: ../../library/ssl.rst:1769 msgid "" "This setting doesn't apply to client sockets. You can also use the " ":data:`OP_SINGLE_ECDH_USE` option to further improve security." msgstr "" -#: ../../library/ssl.rst:1769 +#: ../../library/ssl.rst:1772 msgid "This method is not available if :data:`HAS_ECDH` is ``False``." msgstr "" -#: ../../library/ssl.rst:1774 +#: ../../library/ssl.rst:1777 msgid "" "`SSL/TLS & Perfect Forward Secrecy `_" msgstr "" -#: ../../library/ssl.rst:1775 +#: ../../library/ssl.rst:1778 msgid "Vincent Bernat." msgstr "" -#: ../../library/ssl.rst:1781 +#: ../../library/ssl.rst:1784 msgid "" "Wrap an existing Python socket *sock* and return an instance of " ":attr:`SSLContext.sslsocket_class` (default :class:`SSLSocket`). The " @@ -2017,13 +2021,13 @@ msgid "" "unsupported." msgstr "" -#: ../../library/ssl.rst:1787 +#: ../../library/ssl.rst:1790 msgid "" "The parameter ``server_side`` is a boolean which identifies whether server-" "side or client-side behavior is desired from this socket." msgstr "" -#: ../../library/ssl.rst:1790 +#: ../../library/ssl.rst:1793 msgid "" "For client-side sockets, the context construction is lazy; if the underlying" " socket isn't connected yet, the context construction will be performed " @@ -2034,7 +2038,7 @@ msgid "" ":exc:`SSLError`." msgstr "" -#: ../../library/ssl.rst:1798 +#: ../../library/ssl.rst:1801 msgid "" "On client connections, the optional parameter *server_hostname* specifies " "the hostname of the service which we are connecting to. This allows a " @@ -2043,7 +2047,7 @@ msgid "" "*server_hostname* will raise a :exc:`ValueError` if *server_side* is true." msgstr "" -#: ../../library/ssl.rst:1804 +#: ../../library/ssl.rst:1807 msgid "" "The parameter ``do_handshake_on_connect`` specifies whether to do the SSL " "handshake automatically after doing a :meth:`socket.connect`, or whether the" @@ -2053,7 +2057,7 @@ msgid "" " blocking behavior of the socket I/O involved in the handshake." msgstr "" -#: ../../library/ssl.rst:1811 +#: ../../library/ssl.rst:1814 msgid "" "The parameter ``suppress_ragged_eofs`` specifies how the " ":meth:`SSLSocket.recv` method should signal unexpected EOF from the other " @@ -2063,34 +2067,34 @@ msgid "" "the exceptions back to the caller." msgstr "" -#: ../../library/ssl.rst:1818 +#: ../../library/ssl.rst:1821 msgid "*session*, see :attr:`~SSLSocket.session`." msgstr "" -#: ../../library/ssl.rst:1820 +#: ../../library/ssl.rst:1823 msgid "" "Always allow a server_hostname to be passed, even if OpenSSL does not have " "SNI." msgstr "" -#: ../../library/ssl.rst:1824 ../../library/ssl.rst:1850 +#: ../../library/ssl.rst:1827 ../../library/ssl.rst:1853 msgid "*session* argument was added." msgstr "" -#: ../../library/ssl.rst:1827 +#: ../../library/ssl.rst:1830 msgid "" "The method returns on instance of :attr:`SSLContext.sslsocket_class` instead" " of hard-coded :class:`SSLSocket`." msgstr "" -#: ../../library/ssl.rst:1833 +#: ../../library/ssl.rst:1836 msgid "" "The return type of :meth:`SSLContext.wrap_socket`, defaults to " ":class:`SSLSocket`. The attribute can be overridden on instance of class in " "order to return a custom subclass of :class:`SSLSocket`." msgstr "" -#: ../../library/ssl.rst:1842 +#: ../../library/ssl.rst:1845 msgid "" "Wrap the BIO objects *incoming* and *outgoing* and return an instance of " ":attr:`SSLContext.sslobject_class` (default :class:`SSLObject`). The SSL " @@ -2098,26 +2102,26 @@ msgid "" "outgoing BIO." msgstr "" -#: ../../library/ssl.rst:1847 +#: ../../library/ssl.rst:1850 msgid "" "The *server_side*, *server_hostname* and *session* parameters have the same " "meaning as in :meth:`SSLContext.wrap_socket`." msgstr "" -#: ../../library/ssl.rst:1853 +#: ../../library/ssl.rst:1856 msgid "" "The method returns on instance of :attr:`SSLContext.sslobject_class` instead" " of hard-coded :class:`SSLObject`." msgstr "" -#: ../../library/ssl.rst:1859 +#: ../../library/ssl.rst:1862 msgid "" "The return type of :meth:`SSLContext.wrap_bio`, defaults to " ":class:`SSLObject`. The attribute can be overridden on instance of class in " "order to return a custom subclass of :class:`SSLObject`." msgstr "" -#: ../../library/ssl.rst:1867 +#: ../../library/ssl.rst:1870 msgid "" "Get statistics about the SSL sessions created or managed by this context. A " "dictionary is returned which maps the names of each `piece of information " @@ -2126,7 +2130,7 @@ msgid "" "misses in the session cache since the context was created::" msgstr "" -#: ../../library/ssl.rst:1878 +#: ../../library/ssl.rst:1881 msgid "" "Whether to match the peer cert's hostname with :func:`match_hostname` in " ":meth:`SSLSocket.do_handshake`. The context's " @@ -2140,7 +2144,7 @@ msgid "" "With other protocols, hostname checking must be enabled explicitly." msgstr "" -#: ../../library/ssl.rst:1906 +#: ../../library/ssl.rst:1909 msgid "" ":attr:`~SSLContext.verify_mode` is now automatically changed to " ":data:`CERT_REQUIRED` when hostname checking is enabled and " @@ -2148,11 +2152,11 @@ msgid "" "operation would have failed with a :exc:`ValueError`." msgstr "" -#: ../../library/ssl.rst:1913 +#: ../../library/ssl.rst:1916 msgid "This features requires OpenSSL 0.9.8f or newer." msgstr "" -#: ../../library/ssl.rst:1917 +#: ../../library/ssl.rst:1920 msgid "" "Write TLS keys to a keylog file, whenever key material is generated or " "received. The keylog file is designed for debugging purposes only. The file " @@ -2161,11 +2165,11 @@ msgid "" "synchronized between threads, but not between processes." msgstr "" -#: ../../library/ssl.rst:1927 +#: ../../library/ssl.rst:1930 msgid "This features requires OpenSSL 1.1.1 or newer." msgstr "" -#: ../../library/ssl.rst:1931 +#: ../../library/ssl.rst:1934 msgid "" "A :class:`TLSVersion` enum member representing the highest supported TLS " "version. The value defaults to :attr:`TLSVersion.MAXIMUM_SUPPORTED`. The " @@ -2173,7 +2177,7 @@ msgid "" ":attr:`PROTOCOL_TLS_CLIENT`, and :attr:`PROTOCOL_TLS_SERVER`." msgstr "" -#: ../../library/ssl.rst:1936 +#: ../../library/ssl.rst:1939 msgid "" "The attributes :attr:`~SSLContext.maximum_version`, " ":attr:`~SSLContext.minimum_version` and :attr:`SSLContext.options` all " @@ -2184,50 +2188,50 @@ msgid "" "not be able to establish a TLS 1.2 connection." msgstr "" -#: ../../library/ssl.rst:1947 ../../library/ssl.rst:1959 +#: ../../library/ssl.rst:1950 ../../library/ssl.rst:1962 msgid "" "This attribute is not available unless the ssl module is compiled with " "OpenSSL 1.1.0g or newer." msgstr "" -#: ../../library/ssl.rst:1954 +#: ../../library/ssl.rst:1957 msgid "" "Like :attr:`SSLContext.maximum_version` except it is the lowest supported " "version or :attr:`TLSVersion.MINIMUM_SUPPORTED`." msgstr "" -#: ../../library/ssl.rst:1966 +#: ../../library/ssl.rst:1969 msgid "" "Control the number of TLS 1.3 session tickets of a " ":attr:`TLS_PROTOCOL_SERVER` context. The setting has no impact on TLS 1.0 to" " 1.2 connections." msgstr "" -#: ../../library/ssl.rst:1972 +#: ../../library/ssl.rst:1975 msgid "" "This attribute is not available unless the ssl module is compiled with " "OpenSSL 1.1.1 or newer." msgstr "" -#: ../../library/ssl.rst:1979 +#: ../../library/ssl.rst:1982 msgid "" "An integer representing the set of SSL options enabled on this context. The " "default value is :data:`OP_ALL`, but you can specify other options such as " ":data:`OP_NO_SSLv2` by ORing them together." msgstr "" -#: ../../library/ssl.rst:1984 +#: ../../library/ssl.rst:1987 msgid "" "With versions of OpenSSL older than 0.9.8m, it is only possible to set " "options, not to clear them. Attempting to clear an option (by resetting the" " corresponding bits) will raise a :exc:`ValueError`." msgstr "" -#: ../../library/ssl.rst:1988 +#: ../../library/ssl.rst:1991 msgid ":attr:`SSLContext.options` returns :class:`Options` flags:" msgstr "" -#: ../../library/ssl.rst:1996 +#: ../../library/ssl.rst:1999 msgid "" "Enable TLS 1.3 post-handshake client authentication. Post-handshake auth is " "disabled by default and a server can only request a TLS client certificate " @@ -2235,13 +2239,13 @@ msgid "" "client certificate at any time after the handshake." msgstr "" -#: ../../library/ssl.rst:2001 +#: ../../library/ssl.rst:2004 msgid "" "When enabled on client-side sockets, the client signals the server that it " "supports post-handshake authentication." msgstr "" -#: ../../library/ssl.rst:2004 +#: ../../library/ssl.rst:2007 msgid "" "When enabled on server-side sockets, :attr:`SSLContext.verify_mode` must be " "set to :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`, too. The actual " @@ -2250,30 +2254,30 @@ msgid "" "performed." msgstr "" -#: ../../library/ssl.rst:2011 +#: ../../library/ssl.rst:2014 msgid "" "Only available with OpenSSL 1.1.1 and TLS 1.3 enabled. Without TLS 1.3 " "support, the property value is None and can't be modified" msgstr "" -#: ../../library/ssl.rst:2018 +#: ../../library/ssl.rst:2021 msgid "" "The protocol version chosen when constructing the context. This attribute " "is read-only." msgstr "" -#: ../../library/ssl.rst:2023 +#: ../../library/ssl.rst:2026 msgid "" "Whether :attr:`~SSLContext.check_hostname` falls back to verify the cert's " "subject common name in the absence of a subject alternative name extension " "(default: true)." msgstr "" -#: ../../library/ssl.rst:2028 +#: ../../library/ssl.rst:2031 msgid "Only writeable with OpenSSL 1.1.0 or higher." msgstr "" -#: ../../library/ssl.rst:2034 +#: ../../library/ssl.rst:2037 msgid "" "The flags for certificate verification operations. You can set flags like " ":data:`VERIFY_CRL_CHECK_LEAF` by ORing them together. By default OpenSSL " @@ -2281,26 +2285,26 @@ msgid "" "Available only with openssl version 0.9.8+." msgstr "" -#: ../../library/ssl.rst:2041 +#: ../../library/ssl.rst:2044 msgid ":attr:`SSLContext.verify_flags` returns :class:`VerifyFlags` flags:" msgstr "" -#: ../../library/ssl.rst:2049 +#: ../../library/ssl.rst:2052 msgid "" "Whether to try to verify other peers' certificates and how to behave if " "verification fails. This attribute must be one of :data:`CERT_NONE`, " ":data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`." msgstr "" -#: ../../library/ssl.rst:2053 +#: ../../library/ssl.rst:2056 msgid ":attr:`SSLContext.verify_mode` returns :class:`VerifyMode` enum:" msgstr "" -#: ../../library/ssl.rst:2066 +#: ../../library/ssl.rst:2069 msgid "Certificates" msgstr "" -#: ../../library/ssl.rst:2068 +#: ../../library/ssl.rst:2071 msgid "" "Certificates in general are part of a public-key / private-key system. In " "this system, each *principal*, (which may be a machine, or a person, or an " @@ -2311,7 +2315,7 @@ msgid "" " other part, and **only** with the other part." msgstr "" -#: ../../library/ssl.rst:2076 +#: ../../library/ssl.rst:2079 msgid "" "A certificate contains information about two principals. It contains the " "name of a *subject*, and the subject's public key. It also contains a " @@ -2325,7 +2329,7 @@ msgid "" " as two fields, called \"notBefore\" and \"notAfter\"." msgstr "" -#: ../../library/ssl.rst:2086 +#: ../../library/ssl.rst:2089 msgid "" "In the Python use of certificates, a client or server can use a certificate " "to prove who they are. The other side of a network connection can also be " @@ -2338,18 +2342,18 @@ msgid "" "this process to take place." msgstr "" -#: ../../library/ssl.rst:2096 +#: ../../library/ssl.rst:2099 msgid "" "Python uses files to contain certificates. They should be formatted as " "\"PEM\" (see :rfc:`1422`), which is a base-64 encoded form wrapped with a " "header line and a footer line::" msgstr "" -#: ../../library/ssl.rst:2105 +#: ../../library/ssl.rst:2108 msgid "Certificate chains" msgstr "" -#: ../../library/ssl.rst:2107 +#: ../../library/ssl.rst:2110 msgid "" "The Python files which contain certificates can contain a sequence of " "certificates, sometimes called a *certificate chain*. This chain should " @@ -2365,11 +2369,11 @@ msgid "" " agency which issued the certification authority's certificate::" msgstr "" -#: ../../library/ssl.rst:2131 +#: ../../library/ssl.rst:2134 msgid "CA certificates" msgstr "" -#: ../../library/ssl.rst:2133 +#: ../../library/ssl.rst:2136 msgid "" "If you are going to require validation of the other side of the connection's" " certificate, you need to provide a \"CA certs\" file, filled with the " @@ -2381,11 +2385,11 @@ msgid "" ":func:`.create_default_context`." msgstr "" -#: ../../library/ssl.rst:2142 +#: ../../library/ssl.rst:2145 msgid "Combined key and certificate" msgstr "" -#: ../../library/ssl.rst:2144 +#: ../../library/ssl.rst:2147 msgid "" "Often the private key is stored in the same file as the certificate; in this" " case, only the ``certfile`` parameter to :meth:`SSLContext.load_cert_chain`" @@ -2394,11 +2398,11 @@ msgid "" "certificate chain::" msgstr "" -#: ../../library/ssl.rst:2158 +#: ../../library/ssl.rst:2161 msgid "Self-signed certificates" msgstr "" -#: ../../library/ssl.rst:2160 +#: ../../library/ssl.rst:2163 msgid "" "If you are going to create a server that provides SSL-encrypted connection " "services, you will need to acquire a certificate for that service. There " @@ -2408,51 +2412,51 @@ msgid "" "package, using something like the following::" msgstr "" -#: ../../library/ssl.rst:2189 +#: ../../library/ssl.rst:2192 msgid "" "The disadvantage of a self-signed certificate is that it is its own root " "certificate, and no one else will have it in their cache of known (and " "trusted) root certificates." msgstr "" -#: ../../library/ssl.rst:2195 +#: ../../library/ssl.rst:2198 msgid "Examples" msgstr "Contoh-contoh" -#: ../../library/ssl.rst:2198 +#: ../../library/ssl.rst:2201 msgid "Testing for SSL support" msgstr "" -#: ../../library/ssl.rst:2200 +#: ../../library/ssl.rst:2203 msgid "" "To test for the presence of SSL support in a Python installation, user code " "should use the following idiom::" msgstr "" -#: ../../library/ssl.rst:2211 +#: ../../library/ssl.rst:2214 msgid "Client-side operation" msgstr "" -#: ../../library/ssl.rst:2213 +#: ../../library/ssl.rst:2216 msgid "" "This example creates a SSL context with the recommended security settings " "for client sockets, including automatic certificate verification::" msgstr "" -#: ../../library/ssl.rst:2218 +#: ../../library/ssl.rst:2221 msgid "" "If you prefer to tune security settings yourself, you might create a context" " from scratch (but beware that you might not get the settings right)::" msgstr "" -#: ../../library/ssl.rst:2225 +#: ../../library/ssl.rst:2228 msgid "" "(this snippet assumes your operating system places a bundle of all CA " "certificates in ``/etc/ssl/certs/ca-bundle.crt``; if not, you'll get an " "error and have to adjust the location)" msgstr "" -#: ../../library/ssl.rst:2229 +#: ../../library/ssl.rst:2232 msgid "" "The :data:`PROTOCOL_TLS_CLIENT` protocol configures the context for cert " "validation and hostname verification. :attr:`~SSLContext.verify_mode` is set" @@ -2460,7 +2464,7 @@ msgid "" "``True``. All other protocols create SSL contexts with insecure defaults." msgstr "" -#: ../../library/ssl.rst:2234 +#: ../../library/ssl.rst:2237 msgid "" "When you use the context to connect to a server, :const:`CERT_REQUIRED` and " ":attr:`~SSLContext.check_hostname` validate the server certificate: it " @@ -2469,27 +2473,27 @@ msgid "" "properties like validity and identity of the hostname::" msgstr "" -#: ../../library/ssl.rst:2244 +#: ../../library/ssl.rst:2247 msgid "You may then fetch the certificate::" msgstr "" -#: ../../library/ssl.rst:2248 +#: ../../library/ssl.rst:2251 msgid "" "Visual inspection shows that the certificate does identify the desired " "service (that is, the HTTPS host ``www.python.org``)::" msgstr "" -#: ../../library/ssl.rst:2291 +#: ../../library/ssl.rst:2294 msgid "" "Now the SSL channel is established and the certificate verified, you can " "proceed to talk with the server::" msgstr "" -#: ../../library/ssl.rst:2318 +#: ../../library/ssl.rst:2321 msgid "Server-side operation" msgstr "" -#: ../../library/ssl.rst:2320 +#: ../../library/ssl.rst:2323 msgid "" "For server operation, typically you'll need to have a server certificate, " "and private key, each in a file. You'll first create a context holding the " @@ -2498,7 +2502,7 @@ msgid "" "start waiting for clients to connect::" msgstr "" -#: ../../library/ssl.rst:2335 +#: ../../library/ssl.rst:2338 msgid "" "When a client connects, you'll call :meth:`accept` on the socket to get the " "new socket from the other end, and use the context's " @@ -2506,13 +2510,13 @@ msgid "" " the connection::" msgstr "" -#: ../../library/ssl.rst:2348 +#: ../../library/ssl.rst:2351 msgid "" "Then you'll read data from the ``connstream`` and do something with it till " "you are finished with the client (or the client is finished with you)::" msgstr "" -#: ../../library/ssl.rst:2362 +#: ../../library/ssl.rst:2365 msgid "" "And go back to listening for new client connections (of course, a real " "server would probably handle each client connection in a separate thread, or" @@ -2520,18 +2524,18 @@ msgid "" "event loop)." msgstr "" -#: ../../library/ssl.rst:2370 +#: ../../library/ssl.rst:2373 msgid "Notes on non-blocking sockets" msgstr "" -#: ../../library/ssl.rst:2372 +#: ../../library/ssl.rst:2375 msgid "" "SSL sockets behave slightly different than regular sockets in non-blocking " "mode. When working with non-blocking sockets, there are thus several things " "you need to be aware of:" msgstr "" -#: ../../library/ssl.rst:2376 +#: ../../library/ssl.rst:2379 msgid "" "Most :class:`SSLSocket` methods will raise either :exc:`SSLWantWriteError` " "or :exc:`SSLWantReadError` instead of :exc:`BlockingIOError` if an I/O " @@ -2543,13 +2547,13 @@ msgid "" "require a prior *write* to the underlying socket." msgstr "" -#: ../../library/ssl.rst:2388 +#: ../../library/ssl.rst:2391 msgid "" "In earlier Python versions, the :meth:`!SSLSocket.send` method returned zero" " instead of raising :exc:`SSLWantWriteError` or :exc:`SSLWantReadError`." msgstr "" -#: ../../library/ssl.rst:2392 +#: ../../library/ssl.rst:2395 msgid "" "Calling :func:`~select.select` tells you that the OS-level socket can be " "read from (or written to), but it does not imply that there is sufficient " @@ -2559,7 +2563,7 @@ msgid "" ":func:`~select.select`." msgstr "" -#: ../../library/ssl.rst:2399 +#: ../../library/ssl.rst:2402 msgid "" "Conversely, since the SSL layer has its own framing, a SSL socket may still " "have data available for reading without :func:`~select.select` being aware " @@ -2568,13 +2572,13 @@ msgid "" " call if still necessary." msgstr "" -#: ../../library/ssl.rst:2405 +#: ../../library/ssl.rst:2408 msgid "" "(of course, similar provisions apply when using other primitives such as " ":func:`~select.poll`, or those in the :mod:`selectors` module)" msgstr "" -#: ../../library/ssl.rst:2408 +#: ../../library/ssl.rst:2411 msgid "" "The SSL handshake itself will be non-blocking: the " ":meth:`SSLSocket.do_handshake` method has to be retried until it returns " @@ -2582,7 +2586,7 @@ msgid "" "the socket's readiness::" msgstr "" -#: ../../library/ssl.rst:2424 +#: ../../library/ssl.rst:2427 msgid "" "The :mod:`asyncio` module supports :ref:`non-blocking SSL sockets ` and provides a higher level API. It polls for events using the" @@ -2591,26 +2595,26 @@ msgid "" "SSL handshake asynchronously as well." msgstr "" -#: ../../library/ssl.rst:2433 +#: ../../library/ssl.rst:2436 msgid "Memory BIO Support" msgstr "" -#: ../../library/ssl.rst:2437 +#: ../../library/ssl.rst:2440 msgid "" "Ever since the SSL module was introduced in Python 2.6, the " ":class:`SSLSocket` class has provided two related but distinct areas of " "functionality:" msgstr "" -#: ../../library/ssl.rst:2440 +#: ../../library/ssl.rst:2443 msgid "SSL protocol handling" msgstr "" -#: ../../library/ssl.rst:2441 +#: ../../library/ssl.rst:2444 msgid "Network IO" msgstr "" -#: ../../library/ssl.rst:2443 +#: ../../library/ssl.rst:2446 msgid "" "The network IO API is identical to that provided by :class:`socket.socket`, " "from which :class:`SSLSocket` also inherits. This allows an SSL socket to be" @@ -2618,7 +2622,7 @@ msgid "" "add SSL support to an existing application." msgstr "" -#: ../../library/ssl.rst:2448 +#: ../../library/ssl.rst:2451 msgid "" "Combining SSL protocol handling and network IO usually works well, but there" " are some cases where it doesn't. An example is async IO frameworks that " @@ -2630,7 +2634,7 @@ msgid "" "called :class:`SSLObject` is provided." msgstr "" -#: ../../library/ssl.rst:2459 +#: ../../library/ssl.rst:2462 msgid "" "A reduced-scope variant of :class:`SSLSocket` representing an SSL protocol " "instance that does not contain any network IO methods. This class is " @@ -2638,7 +2642,7 @@ msgid "" "for SSL through memory buffers." msgstr "" -#: ../../library/ssl.rst:2464 +#: ../../library/ssl.rst:2467 msgid "" "This class implements an interface on top of a low-level SSL object as " "implemented by OpenSSL. This object captures the state of an SSL connection " @@ -2646,7 +2650,7 @@ msgid "" " separate \"BIO\" objects which are OpenSSL's IO abstraction layer." msgstr "" -#: ../../library/ssl.rst:2469 +#: ../../library/ssl.rst:2472 msgid "" "This class has no public constructor. An :class:`SSLObject` instance must " "be created using the :meth:`~SSLContext.wrap_bio` method. This method will " @@ -2656,117 +2660,117 @@ msgid "" "around." msgstr "" -#: ../../library/ssl.rst:2476 +#: ../../library/ssl.rst:2479 msgid "The following methods are available:" msgstr "" -#: ../../library/ssl.rst:2478 +#: ../../library/ssl.rst:2481 msgid ":attr:`~SSLSocket.context`" msgstr "" -#: ../../library/ssl.rst:2479 +#: ../../library/ssl.rst:2482 msgid ":attr:`~SSLSocket.server_side`" msgstr "" -#: ../../library/ssl.rst:2480 +#: ../../library/ssl.rst:2483 msgid ":attr:`~SSLSocket.server_hostname`" msgstr "" -#: ../../library/ssl.rst:2481 +#: ../../library/ssl.rst:2484 msgid ":attr:`~SSLSocket.session`" msgstr "" -#: ../../library/ssl.rst:2482 +#: ../../library/ssl.rst:2485 msgid ":attr:`~SSLSocket.session_reused`" msgstr "" -#: ../../library/ssl.rst:2483 +#: ../../library/ssl.rst:2486 msgid ":meth:`~SSLSocket.read`" msgstr "" -#: ../../library/ssl.rst:2484 +#: ../../library/ssl.rst:2487 msgid ":meth:`~SSLSocket.write`" msgstr "" -#: ../../library/ssl.rst:2485 +#: ../../library/ssl.rst:2488 msgid ":meth:`~SSLSocket.getpeercert`" msgstr "" -#: ../../library/ssl.rst:2486 +#: ../../library/ssl.rst:2489 msgid ":meth:`~SSLSocket.selected_npn_protocol`" msgstr "" -#: ../../library/ssl.rst:2487 +#: ../../library/ssl.rst:2490 msgid ":meth:`~SSLSocket.cipher`" msgstr "" -#: ../../library/ssl.rst:2488 +#: ../../library/ssl.rst:2491 msgid ":meth:`~SSLSocket.shared_ciphers`" msgstr "" -#: ../../library/ssl.rst:2489 +#: ../../library/ssl.rst:2492 msgid ":meth:`~SSLSocket.compression`" msgstr "" -#: ../../library/ssl.rst:2490 +#: ../../library/ssl.rst:2493 msgid ":meth:`~SSLSocket.pending`" msgstr "" -#: ../../library/ssl.rst:2491 +#: ../../library/ssl.rst:2494 msgid ":meth:`~SSLSocket.do_handshake`" msgstr "" -#: ../../library/ssl.rst:2492 +#: ../../library/ssl.rst:2495 msgid ":meth:`~SSLSocket.unwrap`" msgstr "" -#: ../../library/ssl.rst:2493 +#: ../../library/ssl.rst:2496 msgid ":meth:`~SSLSocket.get_channel_binding`" msgstr "" -#: ../../library/ssl.rst:2495 +#: ../../library/ssl.rst:2498 msgid "" "When compared to :class:`SSLSocket`, this object lacks the following " "features:" msgstr "" -#: ../../library/ssl.rst:2498 +#: ../../library/ssl.rst:2501 msgid "" "Any form of network IO; ``recv()`` and ``send()`` read and write only to the" " underlying :class:`MemoryBIO` buffers." msgstr "" -#: ../../library/ssl.rst:2501 +#: ../../library/ssl.rst:2504 msgid "" "There is no *do_handshake_on_connect* machinery. You must always manually " "call :meth:`~SSLSocket.do_handshake` to start the handshake." msgstr "" -#: ../../library/ssl.rst:2504 +#: ../../library/ssl.rst:2507 msgid "" "There is no handling of *suppress_ragged_eofs*. All end-of-file conditions " "that are in violation of the protocol are reported via the " ":exc:`SSLEOFError` exception." msgstr "" -#: ../../library/ssl.rst:2508 +#: ../../library/ssl.rst:2511 msgid "" "The method :meth:`~SSLSocket.unwrap` call does not return anything, unlike " "for an SSL socket where it returns the underlying socket." msgstr "" -#: ../../library/ssl.rst:2511 +#: ../../library/ssl.rst:2514 msgid "" "The *server_name_callback* callback passed to " ":meth:`SSLContext.set_servername_callback` will get an :class:`SSLObject` " "instance instead of a :class:`SSLSocket` instance as its first parameter." msgstr "" -#: ../../library/ssl.rst:2515 +#: ../../library/ssl.rst:2518 msgid "Some notes related to the use of :class:`SSLObject`:" msgstr "" -#: ../../library/ssl.rst:2517 +#: ../../library/ssl.rst:2520 msgid "" "All IO on an :class:`SSLObject` is :ref:`non-blocking `. " "This means that for example :meth:`~SSLSocket.read` will raise an " @@ -2774,85 +2778,85 @@ msgid "" "available." msgstr "" -#: ../../library/ssl.rst:2522 +#: ../../library/ssl.rst:2525 msgid "" "There is no module-level ``wrap_bio()`` call like there is for " ":meth:`~SSLContext.wrap_socket`. An :class:`SSLObject` is always created via" " an :class:`SSLContext`." msgstr "" -#: ../../library/ssl.rst:2526 +#: ../../library/ssl.rst:2529 msgid "" ":class:`SSLObject` instances must to created with " ":meth:`~SSLContext.wrap_bio`. In earlier versions, it was possible to create" " instances directly. This was never documented or officially supported." msgstr "" -#: ../../library/ssl.rst:2532 +#: ../../library/ssl.rst:2535 msgid "" "An SSLObject communicates with the outside world using memory buffers. The " "class :class:`MemoryBIO` provides a memory buffer that can be used for this " "purpose. It wraps an OpenSSL memory BIO (Basic IO) object:" msgstr "" -#: ../../library/ssl.rst:2538 +#: ../../library/ssl.rst:2541 msgid "" "A memory buffer that can be used to pass data between Python and an SSL " "protocol instance." msgstr "" -#: ../../library/ssl.rst:2543 +#: ../../library/ssl.rst:2546 msgid "Return the number of bytes currently in the memory buffer." msgstr "" -#: ../../library/ssl.rst:2547 +#: ../../library/ssl.rst:2550 msgid "" "A boolean indicating whether the memory BIO is current at the end-of-file " "position." msgstr "" -#: ../../library/ssl.rst:2552 +#: ../../library/ssl.rst:2555 msgid "" "Read up to *n* bytes from the memory buffer. If *n* is not specified or " "negative, all bytes are returned." msgstr "" -#: ../../library/ssl.rst:2557 +#: ../../library/ssl.rst:2560 msgid "" "Write the bytes from *buf* to the memory BIO. The *buf* argument must be an " "object supporting the buffer protocol." msgstr "" -#: ../../library/ssl.rst:2560 +#: ../../library/ssl.rst:2563 msgid "" "The return value is the number of bytes written, which is always equal to " "the length of *buf*." msgstr "" -#: ../../library/ssl.rst:2565 +#: ../../library/ssl.rst:2568 msgid "" "Write an EOF marker to the memory BIO. After this method has been called, it" " is illegal to call :meth:`~MemoryBIO.write`. The attribute :attr:`eof` will" " become true after all data currently in the buffer has been read." msgstr "" -#: ../../library/ssl.rst:2571 +#: ../../library/ssl.rst:2574 msgid "SSL session" msgstr "" -#: ../../library/ssl.rst:2577 +#: ../../library/ssl.rst:2580 msgid "Session object used by :attr:`~SSLSocket.session`." msgstr "" -#: ../../library/ssl.rst:2589 +#: ../../library/ssl.rst:2592 msgid "Security considerations" msgstr "" -#: ../../library/ssl.rst:2592 +#: ../../library/ssl.rst:2595 msgid "Best defaults" msgstr "" -#: ../../library/ssl.rst:2594 +#: ../../library/ssl.rst:2597 msgid "" "For **client use**, if you don't have any special requirements for your " "security policy, it is highly recommended that you use the " @@ -2862,19 +2866,19 @@ msgid "" "settings." msgstr "" -#: ../../library/ssl.rst:2601 +#: ../../library/ssl.rst:2604 msgid "" "For example, here is how you would use the :class:`smtplib.SMTP` class to " "create a trusted, secure connection to a SMTP server::" msgstr "" -#: ../../library/ssl.rst:2610 +#: ../../library/ssl.rst:2613 msgid "" "If a client certificate is needed for the connection, it can be added with " ":meth:`SSLContext.load_cert_chain`." msgstr "" -#: ../../library/ssl.rst:2613 +#: ../../library/ssl.rst:2616 msgid "" "By contrast, if you create the SSL context by calling the " ":class:`SSLContext` constructor yourself, it will not have certificate " @@ -2882,15 +2886,15 @@ msgid "" "read the paragraphs below to achieve a good security level." msgstr "" -#: ../../library/ssl.rst:2619 +#: ../../library/ssl.rst:2622 msgid "Manual settings" msgstr "" -#: ../../library/ssl.rst:2622 +#: ../../library/ssl.rst:2625 msgid "Verifying certificates" msgstr "" -#: ../../library/ssl.rst:2624 +#: ../../library/ssl.rst:2627 msgid "" "When calling the :class:`SSLContext` constructor directly, " ":const:`CERT_NONE` is the default. Since it does not authenticate the other" @@ -2906,13 +2910,13 @@ msgid "" "enabled." msgstr "" -#: ../../library/ssl.rst:2637 +#: ../../library/ssl.rst:2640 msgid "" "Hostname matchings is now performed by OpenSSL. Python no longer uses " ":func:`match_hostname`." msgstr "" -#: ../../library/ssl.rst:2641 +#: ../../library/ssl.rst:2644 msgid "" "In server mode, if you want to authenticate your clients using the SSL layer" " (rather than using a higher-level authentication mechanism), you'll also " @@ -2920,11 +2924,11 @@ msgid "" "certificate." msgstr "" -#: ../../library/ssl.rst:2647 +#: ../../library/ssl.rst:2650 msgid "Protocol versions" msgstr "" -#: ../../library/ssl.rst:2649 +#: ../../library/ssl.rst:2652 msgid "" "SSL versions 2 and 3 are considered insecure and are therefore dangerous to " "use. If you want maximum compatibility between clients and servers, it is " @@ -2933,7 +2937,7 @@ msgid "" "disabled by default." msgstr "" -#: ../../library/ssl.rst:2662 +#: ../../library/ssl.rst:2665 msgid "" "The SSL context created above will only allow TLSv1.2 and later (if " "supported by your system) connections to a server. " @@ -2941,11 +2945,11 @@ msgid "" "checks by default. You have to load certificates into the context." msgstr "" -#: ../../library/ssl.rst:2669 +#: ../../library/ssl.rst:2672 msgid "Cipher selection" msgstr "" -#: ../../library/ssl.rst:2671 +#: ../../library/ssl.rst:2674 msgid "" "If you have advanced security requirements, fine-tuning of the ciphers " "enabled when negotiating a SSL session is possible through the " @@ -2959,11 +2963,11 @@ msgid "" "on your system." msgstr "" -#: ../../library/ssl.rst:2682 +#: ../../library/ssl.rst:2685 msgid "Multi-processing" msgstr "" -#: ../../library/ssl.rst:2684 +#: ../../library/ssl.rst:2687 msgid "" "If using this module as part of a multi-processed application (using, for " "example the :mod:`multiprocessing` or :mod:`concurrent.futures` modules), be" @@ -2974,18 +2978,18 @@ msgid "" ":func:`~ssl.RAND_pseudo_bytes` is sufficient." msgstr "" -#: ../../library/ssl.rst:2696 +#: ../../library/ssl.rst:2699 msgid "TLS 1.3" msgstr "TLS 1.3" -#: ../../library/ssl.rst:2700 +#: ../../library/ssl.rst:2703 msgid "" "Python has provisional and experimental support for TLS 1.3 with OpenSSL " "1.1.1. The new protocol behaves slightly differently than previous version " "of TLS/SSL. Some new TLS 1.3 features are not yet available." msgstr "" -#: ../../library/ssl.rst:2704 +#: ../../library/ssl.rst:2707 msgid "" "TLS 1.3 uses a disjunct set of cipher suites. All AES-GCM and ChaCha20 " "cipher suites are enabled by default. The method " @@ -2993,14 +2997,14 @@ msgid "" "yet, but :meth:`SSLContext.get_ciphers` returns them." msgstr "" -#: ../../library/ssl.rst:2708 +#: ../../library/ssl.rst:2711 msgid "" "Session tickets are no longer sent as part of the initial handshake and are " "handled differently. :attr:`SSLSocket.session` and :class:`SSLSession` are " "not compatible with TLS 1.3." msgstr "" -#: ../../library/ssl.rst:2711 +#: ../../library/ssl.rst:2714 msgid "" "Client-side certificates are also no longer verified during the initial " "handshake. A server can request a certificate at any time. Clients process" @@ -3008,127 +3012,127 @@ msgid "" "server." msgstr "" -#: ../../library/ssl.rst:2715 +#: ../../library/ssl.rst:2718 msgid "" "TLS 1.3 features like early data, deferred TLS client cert request, " "signature algorithm configuration, and rekeying are not supported yet." msgstr "" -#: ../../library/ssl.rst:2722 +#: ../../library/ssl.rst:2725 msgid "LibreSSL support" msgstr "" -#: ../../library/ssl.rst:2724 +#: ../../library/ssl.rst:2727 msgid "" "LibreSSL is a fork of OpenSSL 1.0.1. The ssl module has limited support for " "LibreSSL. Some features are not available when the ssl module is compiled " "with LibreSSL." msgstr "" -#: ../../library/ssl.rst:2728 +#: ../../library/ssl.rst:2731 msgid "" "LibreSSL >= 2.6.1 no longer supports NPN. The methods " ":meth:`SSLContext.set_npn_protocols` and " ":meth:`SSLSocket.selected_npn_protocol` are not available." msgstr "" -#: ../../library/ssl.rst:2731 +#: ../../library/ssl.rst:2734 msgid "" ":meth:`SSLContext.set_default_verify_paths` ignores the env vars " ":envvar:`SSL_CERT_FILE` and :envvar:`SSL_CERT_PATH` although " ":func:`get_default_verify_paths` still reports them." msgstr "" -#: ../../library/ssl.rst:2739 +#: ../../library/ssl.rst:2742 msgid "Class :class:`socket.socket`" msgstr "" -#: ../../library/ssl.rst:2739 +#: ../../library/ssl.rst:2742 msgid "Documentation of underlying :mod:`socket` class" msgstr "" -#: ../../library/ssl.rst:2742 +#: ../../library/ssl.rst:2745 msgid "" "`SSL/TLS Strong Encryption: An Introduction " "`_" msgstr "" -#: ../../library/ssl.rst:2742 +#: ../../library/ssl.rst:2745 msgid "Intro from the Apache HTTP Server documentation" msgstr "" -#: ../../library/ssl.rst:2745 +#: ../../library/ssl.rst:2748 msgid "" ":rfc:`RFC 1422: Privacy Enhancement for Internet Electronic Mail: Part II: " "Certificate-Based Key Management <1422>`" msgstr "" -#: ../../library/ssl.rst:2745 +#: ../../library/ssl.rst:2748 msgid "Steve Kent" msgstr "" -#: ../../library/ssl.rst:2748 +#: ../../library/ssl.rst:2751 msgid ":rfc:`RFC 4086: Randomness Requirements for Security <4086>`" msgstr "" -#: ../../library/ssl.rst:2748 +#: ../../library/ssl.rst:2751 msgid "Donald E., Jeffrey I. Schiller" msgstr "" -#: ../../library/ssl.rst:2751 +#: ../../library/ssl.rst:2754 msgid "" ":rfc:`RFC 5280: Internet X.509 Public Key Infrastructure Certificate and " "Certificate Revocation List (CRL) Profile <5280>`" msgstr "" -#: ../../library/ssl.rst:2751 +#: ../../library/ssl.rst:2754 msgid "D. Cooper" msgstr "" -#: ../../library/ssl.rst:2754 +#: ../../library/ssl.rst:2757 msgid "" ":rfc:`RFC 5246: The Transport Layer Security (TLS) Protocol Version 1.2 " "<5246>`" msgstr "" -#: ../../library/ssl.rst:2754 +#: ../../library/ssl.rst:2757 msgid "T. Dierks et. al." msgstr "" -#: ../../library/ssl.rst:2757 +#: ../../library/ssl.rst:2760 msgid ":rfc:`RFC 6066: Transport Layer Security (TLS) Extensions <6066>`" msgstr "" -#: ../../library/ssl.rst:2757 +#: ../../library/ssl.rst:2760 msgid "D. Eastlake" msgstr "" -#: ../../library/ssl.rst:2760 +#: ../../library/ssl.rst:2763 msgid "" "`IANA TLS: Transport Layer Security (TLS) Parameters " "`_" msgstr "" -#: ../../library/ssl.rst:2760 +#: ../../library/ssl.rst:2763 msgid "IANA" msgstr "IANA" -#: ../../library/ssl.rst:2763 +#: ../../library/ssl.rst:2766 msgid "" ":rfc:`RFC 7525: Recommendations for Secure Use of Transport Layer Security " "(TLS) and Datagram Transport Layer Security (DTLS) <7525>`" msgstr "" -#: ../../library/ssl.rst:2763 +#: ../../library/ssl.rst:2766 msgid "IETF" msgstr "IETF" -#: ../../library/ssl.rst:2765 +#: ../../library/ssl.rst:2768 msgid "" "`Mozilla's Server Side TLS recommendations " "`_" msgstr "" -#: ../../library/ssl.rst:2766 +#: ../../library/ssl.rst:2769 msgid "Mozilla" msgstr "Mozilla" diff --git a/library/statistics.po b/library/statistics.po index e5dac21..df3967f 100644 --- a/library/statistics.po +++ b/library/statistics.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-09 11:23+0000\n" +"POT-Creation-Date: 2019-11-12 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:27+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -209,7 +209,7 @@ msgstr "" #: ../../library/statistics.rst:80 msgid "" "Return the sample arithmetic mean of *data* which can be a sequence or " -"iterator." +"iterable." msgstr "" #: ../../library/statistics.rst:82 @@ -252,7 +252,7 @@ msgstr "" #: ../../library/statistics.rst:124 msgid "" "This runs faster than the :func:`mean` function and it always returns a " -":class:`float`. The *data* may be a sequence or iterator. If the input " +":class:`float`. The *data* may be a sequence or iterable. If the input " "dataset is empty, raises a :exc:`StatisticsError`." msgstr "" @@ -271,7 +271,7 @@ msgstr "" msgid "" "Raises a :exc:`StatisticsError` if the input dataset is empty, if it " "contains a zero, or if it contains a negative value. The *data* may be a " -"sequence or iterator." +"sequence or iterable." msgstr "" #: ../../library/statistics.rst:148 @@ -282,7 +282,7 @@ msgstr "" #: ../../library/statistics.rst:161 msgid "" -"Return the harmonic mean of *data*, a sequence or iterator of real-valued " +"Return the harmonic mean of *data*, a sequence or iterable of real-valued " "numbers." msgstr "" @@ -291,114 +291,122 @@ msgid "" "The harmonic mean, sometimes called the subcontrary mean, is the reciprocal " "of the arithmetic :func:`mean` of the reciprocals of the data. For example, " "the harmonic mean of three values *a*, *b* and *c* will be equivalent to " -"``3/(1/a + 1/b + 1/c)``." +"``3/(1/a + 1/b + 1/c)``. If one of the values is zero, the result will be " +"zero." msgstr "" -#: ../../library/statistics.rst:169 +#: ../../library/statistics.rst:170 msgid "" "The harmonic mean is a type of average, a measure of the central location of" " the data. It is often appropriate when averaging rates or ratios, for " "example speeds." msgstr "" -#: ../../library/statistics.rst:173 +#: ../../library/statistics.rst:174 msgid "" "Suppose a car travels 10 km at 40 km/hr, then another 10 km at 60 km/hr. " "What is the average speed?" msgstr "" -#: ../../library/statistics.rst:181 +#: ../../library/statistics.rst:182 msgid "" "Suppose an investor purchases an equal value of shares in each of three " "companies, with P/E (price/earning) ratios of 2.5, 3 and 10. What is the " "average P/E ratio for the investor's portfolio?" msgstr "" -#: ../../library/statistics.rst:190 +#: ../../library/statistics.rst:191 msgid "" ":exc:`StatisticsError` is raised if *data* is empty, or any element is less " "than zero." msgstr "" -#: ../../library/statistics.rst:198 +#: ../../library/statistics.rst:194 +msgid "" +"The current algorithm has an early-out when it encounters a zero in the " +"input. This means that the subsequent inputs are not tested for validity. " +"(This behavior may change in the future.)" +msgstr "" + +#: ../../library/statistics.rst:203 msgid "" "Return the median (middle value) of numeric data, using the common \"mean of" " middle two\" method. If *data* is empty, :exc:`StatisticsError` is raised." -" *data* can be a sequence or iterator." +" *data* can be a sequence or iterable." msgstr "" -#: ../../library/statistics.rst:202 +#: ../../library/statistics.rst:207 msgid "" "The median is a robust measure of central location and is less affected by " "the presence of outliers. When the number of data points is odd, the middle" " data point is returned:" msgstr "" -#: ../../library/statistics.rst:211 +#: ../../library/statistics.rst:216 msgid "" "When the number of data points is even, the median is interpolated by taking" " the average of the two middle values:" msgstr "" -#: ../../library/statistics.rst:219 +#: ../../library/statistics.rst:224 msgid "" "This is suited for when your data is discrete, and you don't mind that the " "median may not be an actual data point." msgstr "" -#: ../../library/statistics.rst:222 +#: ../../library/statistics.rst:227 msgid "" "If the data is ordinal (supports order operations) but not numeric (doesn't " "support addition), consider using :func:`median_low` or :func:`median_high` " "instead." msgstr "" -#: ../../library/statistics.rst:228 +#: ../../library/statistics.rst:233 msgid "" "Return the low median of numeric data. If *data* is empty, " -":exc:`StatisticsError` is raised. *data* can be a sequence or iterator." +":exc:`StatisticsError` is raised. *data* can be a sequence or iterable." msgstr "" -#: ../../library/statistics.rst:231 +#: ../../library/statistics.rst:236 msgid "" "The low median is always a member of the data set. When the number of data " "points is odd, the middle value is returned. When it is even, the smaller " "of the two middle values is returned." msgstr "" -#: ../../library/statistics.rst:242 +#: ../../library/statistics.rst:247 msgid "" "Use the low median when your data are discrete and you prefer the median to " "be an actual data point rather than interpolated." msgstr "" -#: ../../library/statistics.rst:248 +#: ../../library/statistics.rst:253 msgid "" "Return the high median of data. If *data* is empty, :exc:`StatisticsError` " -"is raised. *data* can be a sequence or iterator." +"is raised. *data* can be a sequence or iterable." msgstr "" -#: ../../library/statistics.rst:251 +#: ../../library/statistics.rst:256 msgid "" "The high median is always a member of the data set. When the number of data" " points is odd, the middle value is returned. When it is even, the larger " "of the two middle values is returned." msgstr "" -#: ../../library/statistics.rst:262 +#: ../../library/statistics.rst:267 msgid "" "Use the high median when your data are discrete and you prefer the median to" " be an actual data point rather than interpolated." msgstr "" -#: ../../library/statistics.rst:268 +#: ../../library/statistics.rst:273 msgid "" "Return the median of grouped continuous data, calculated as the 50th " "percentile, using interpolation. If *data* is empty, :exc:`StatisticsError`" -" is raised. *data* can be a sequence or iterator." +" is raised. *data* can be a sequence or iterable." msgstr "" -#: ../../library/statistics.rst:277 +#: ../../library/statistics.rst:282 msgid "" "In the following example, the data are rounded, so that each value " "represents the midpoint of data classes, e.g. 1 is the midpoint of the class" @@ -407,31 +415,31 @@ msgid "" "--4.5, and interpolation is used to estimate it:" msgstr "" -#: ../../library/statistics.rst:288 +#: ../../library/statistics.rst:293 msgid "" "Optional argument *interval* represents the class interval, and defaults to " "1. Changing the class interval naturally will change the interpolation:" msgstr "" -#: ../../library/statistics.rst:298 +#: ../../library/statistics.rst:303 msgid "" "This function does not check whether the data points are at least *interval*" " apart." msgstr "" -#: ../../library/statistics.rst:303 +#: ../../library/statistics.rst:308 msgid "" "Under some circumstances, :func:`median_grouped` may coerce data points to " "floats. This behaviour is likely to change in the future." msgstr "" -#: ../../library/statistics.rst:308 +#: ../../library/statistics.rst:313 msgid "" "\"Statistics for the Behavioral Sciences\", Frederick J Gravetter and Larry " "B Wallnau (8th Edition)." msgstr "" -#: ../../library/statistics.rst:311 +#: ../../library/statistics.rst:316 msgid "" "The `SSMEDIAN `_ function in the Gnome Gnumeric spreadsheet, " @@ -439,14 +447,14 @@ msgid "" "list/2011-April/msg00018.html>`_." msgstr "" -#: ../../library/statistics.rst:319 +#: ../../library/statistics.rst:324 msgid "" "Return the single most common data point from discrete or nominal *data*. " "The mode (when it exists) is the most typical value and serves as a measure " "of central location." msgstr "" -#: ../../library/statistics.rst:323 +#: ../../library/statistics.rst:328 msgid "" "If there are multiple modes with the same frequency, returns the first one " "encountered in the *data*. If the smallest or largest of those is desired " @@ -454,48 +462,48 @@ msgid "" "input *data* is empty, :exc:`StatisticsError` is raised." msgstr "" -#: ../../library/statistics.rst:328 +#: ../../library/statistics.rst:333 msgid "" "``mode`` assumes discrete data and returns a single value. This is the " "standard treatment of the mode as commonly taught in schools:" msgstr "" -#: ../../library/statistics.rst:336 +#: ../../library/statistics.rst:341 msgid "" "The mode is unique in that it is the only statistic in this package that " "also applies to nominal (non-numeric) data:" msgstr "" -#: ../../library/statistics.rst:344 +#: ../../library/statistics.rst:349 msgid "" "Now handles multimodal datasets by returning the first mode encountered. " "Formerly, it raised :exc:`StatisticsError` when more than one mode was " "found." msgstr "" -#: ../../library/statistics.rst:352 +#: ../../library/statistics.rst:357 msgid "" "Return a list of the most frequently occurring values in the order they were" " first encountered in the *data*. Will return more than one result if there" " are multiple modes or an empty list if the *data* is empty:" msgstr "" -#: ../../library/statistics.rst:368 +#: ../../library/statistics.rst:373 msgid "" "Return the population standard deviation (the square root of the population " "variance). See :func:`pvariance` for arguments and other details." msgstr "" -#: ../../library/statistics.rst:379 +#: ../../library/statistics.rst:384 msgid "" -"Return the population variance of *data*, a non-empty sequence or iterator " +"Return the population variance of *data*, a non-empty sequence or iterable " "of real-valued numbers. Variance, or second moment about the mean, is a " "measure of the variability (spread or dispersion) of data. A large variance" " indicates that the data is spread out; a small variance indicates it is " "clustered closely around the mean." msgstr "" -#: ../../library/statistics.rst:385 +#: ../../library/statistics.rst:390 msgid "" "If the optional second argument *mu* is given, it is typically the mean of " "the *data*. It can also be used to compute the second moment around a point" @@ -503,39 +511,39 @@ msgid "" "arithmetic mean is automatically calculated." msgstr "" -#: ../../library/statistics.rst:390 +#: ../../library/statistics.rst:395 msgid "" "Use this function to calculate the variance from the entire population. To " "estimate the variance from a sample, the :func:`variance` function is " "usually a better choice." msgstr "" -#: ../../library/statistics.rst:394 +#: ../../library/statistics.rst:399 msgid "Raises :exc:`StatisticsError` if *data* is empty." msgstr "" -#: ../../library/statistics.rst:396 ../../library/statistics.rst:466 +#: ../../library/statistics.rst:401 ../../library/statistics.rst:471 msgid "Examples:" msgstr "Contoh-contoh:" -#: ../../library/statistics.rst:404 +#: ../../library/statistics.rst:409 msgid "" "If you have already calculated the mean of your data, you can pass it as the" " optional second argument *mu* to avoid recalculation:" msgstr "" -#: ../../library/statistics.rst:413 +#: ../../library/statistics.rst:418 msgid "Decimals and Fractions are supported:" msgstr "" -#: ../../library/statistics.rst:427 +#: ../../library/statistics.rst:432 msgid "" "When called with the entire population, this gives the population variance " "σ². When called on a sample instead, this is the biased sample variance s²," " also known as variance with N degrees of freedom." msgstr "" -#: ../../library/statistics.rst:431 +#: ../../library/statistics.rst:436 msgid "" "If you somehow know the true population mean μ, you may use this function to" " calculate the variance of a sample, giving the known population mean as the" @@ -544,13 +552,13 @@ msgid "" "variance." msgstr "" -#: ../../library/statistics.rst:440 +#: ../../library/statistics.rst:445 msgid "" "Return the sample standard deviation (the square root of the sample " "variance). See :func:`variance` for arguments and other details." msgstr "" -#: ../../library/statistics.rst:451 +#: ../../library/statistics.rst:456 msgid "" "Return the sample variance of *data*, an iterable of at least two real-" "valued numbers. Variance, or second moment about the mean, is a measure of " @@ -559,41 +567,41 @@ msgid "" "closely around the mean." msgstr "" -#: ../../library/statistics.rst:457 +#: ../../library/statistics.rst:462 msgid "" "If the optional second argument *xbar* is given, it should be the mean of " "*data*. If it is missing or ``None`` (the default), the mean is " "automatically calculated." msgstr "" -#: ../../library/statistics.rst:461 +#: ../../library/statistics.rst:466 msgid "" "Use this function when your data is a sample from a population. To calculate" " the variance from the entire population, see :func:`pvariance`." msgstr "" -#: ../../library/statistics.rst:464 +#: ../../library/statistics.rst:469 msgid "Raises :exc:`StatisticsError` if *data* has fewer than two values." msgstr "" -#: ../../library/statistics.rst:474 +#: ../../library/statistics.rst:479 msgid "" "If you have already calculated the mean of your data, you can pass it as the" " optional second argument *xbar* to avoid recalculation:" msgstr "" -#: ../../library/statistics.rst:483 +#: ../../library/statistics.rst:488 msgid "" "This function does not attempt to verify that you have passed the actual " "mean as *xbar*. Using arbitrary values for *xbar* can lead to invalid or " "impossible results." msgstr "" -#: ../../library/statistics.rst:487 +#: ../../library/statistics.rst:492 msgid "Decimal and Fraction values are supported:" msgstr "" -#: ../../library/statistics.rst:501 +#: ../../library/statistics.rst:506 msgid "" "This is the sample variance s² with Bessel's correction, also known as " "variance with N-1 degrees of freedom. Provided that the data points are " @@ -601,20 +609,20 @@ msgid "" "should be an unbiased estimate of the true population variance." msgstr "" -#: ../../library/statistics.rst:506 +#: ../../library/statistics.rst:511 msgid "" "If you somehow know the actual population mean μ you should pass it to the " ":func:`pvariance` function as the *mu* parameter to get the variance of a " "sample." msgstr "" -#: ../../library/statistics.rst:512 +#: ../../library/statistics.rst:517 msgid "" "Divide *data* into *n* continuous intervals with equal probability. Returns " "a list of ``n - 1`` cut points separating the intervals." msgstr "" -#: ../../library/statistics.rst:515 +#: ../../library/statistics.rst:520 msgid "" "Set *n* to 4 for quartiles (the default). Set *n* to 10 for deciles. Set " "*n* to 100 for percentiles which gives the 99 cuts points that separate " @@ -622,28 +630,28 @@ msgid "" " not least 1." msgstr "" -#: ../../library/statistics.rst:520 +#: ../../library/statistics.rst:525 msgid "" "The *data* can be any iterable containing sample data. For meaningful " "results, the number of data points in *data* should be larger than *n*. " "Raises :exc:`StatisticsError` if there are not at least two data points." msgstr "" -#: ../../library/statistics.rst:524 +#: ../../library/statistics.rst:529 msgid "" "The cut points are linearly interpolated from the two nearest data points. " "For example, if a cut point falls one-third of the distance between two " "sample values, ``100`` and ``112``, the cut-point will evaluate to ``104``." msgstr "" -#: ../../library/statistics.rst:529 +#: ../../library/statistics.rst:534 msgid "" "The *method* for computing quantiles can be varied depending on whether the " "*data* includes or excludes the lowest and highest possible values from the " "population." msgstr "" -#: ../../library/statistics.rst:533 +#: ../../library/statistics.rst:538 msgid "" "The default *method* is \"exclusive\" and is used for data sampled from a " "population that can have more extreme values than found in the samples. The" @@ -653,7 +661,7 @@ msgid "" "60%, 70%, 80%, 90%." msgstr "" -#: ../../library/statistics.rst:540 +#: ../../library/statistics.rst:545 msgid "" "Setting the *method* to \"inclusive\" is used for describing population data" " or for samples that are known to include the most extreme values from the " @@ -665,23 +673,23 @@ msgid "" "80%, 90%, 100%." msgstr "" -#: ../../library/statistics.rst:564 +#: ../../library/statistics.rst:569 msgid "Exceptions" msgstr "Pengecualian" -#: ../../library/statistics.rst:566 +#: ../../library/statistics.rst:571 msgid "A single exception is defined:" msgstr "" -#: ../../library/statistics.rst:570 +#: ../../library/statistics.rst:575 msgid "Subclass of :exc:`ValueError` for statistics-related exceptions." msgstr "" -#: ../../library/statistics.rst:574 +#: ../../library/statistics.rst:579 msgid ":class:`NormalDist` objects" msgstr "" -#: ../../library/statistics.rst:576 +#: ../../library/statistics.rst:581 msgid "" ":class:`NormalDist` is a tool for creating and manipulating normal " "distributions of a `random variable " @@ -690,14 +698,14 @@ msgid "" " entity." msgstr "" -#: ../../library/statistics.rst:582 +#: ../../library/statistics.rst:587 msgid "" "Normal distributions arise from the `Central Limit Theorem " "`_ and have a wide " "range of applications in statistics." msgstr "" -#: ../../library/statistics.rst:588 +#: ../../library/statistics.rst:593 msgid "" "Returns a new *NormalDist* object where *mu* represents the `arithmetic mean" " `_ and *sigma* represents " @@ -705,50 +713,50 @@ msgid "" "`_." msgstr "" -#: ../../library/statistics.rst:593 +#: ../../library/statistics.rst:598 msgid "If *sigma* is negative, raises :exc:`StatisticsError`." msgstr "" -#: ../../library/statistics.rst:597 +#: ../../library/statistics.rst:602 msgid "" "A read-only property for the `arithmetic mean " "`_ of a normal distribution." msgstr "" -#: ../../library/statistics.rst:603 +#: ../../library/statistics.rst:608 msgid "" "A read-only property for the `median " "`_ of a normal distribution." msgstr "" -#: ../../library/statistics.rst:609 +#: ../../library/statistics.rst:614 msgid "" "A read-only property for the `mode " "`_ of a normal " "distribution." msgstr "" -#: ../../library/statistics.rst:615 +#: ../../library/statistics.rst:620 msgid "" "A read-only property for the `standard deviation " "`_ of a normal " "distribution." msgstr "" -#: ../../library/statistics.rst:621 +#: ../../library/statistics.rst:626 msgid "" "A read-only property for the `variance " "`_ of a normal distribution. Equal " "to the square of the standard deviation." msgstr "" -#: ../../library/statistics.rst:627 +#: ../../library/statistics.rst:632 msgid "" "Makes a normal distribution instance with *mu* and *sigma* parameters " "estimated from the *data* using :func:`fmean` and :func:`stdev`." msgstr "" -#: ../../library/statistics.rst:630 +#: ../../library/statistics.rst:635 msgid "" "The *data* can be any :term:`iterable` and should consist of values that can" " be converted to type :class:`float`. If *data* does not contain at least " @@ -757,20 +765,20 @@ msgid "" "dispersion." msgstr "" -#: ../../library/statistics.rst:638 +#: ../../library/statistics.rst:643 msgid "" "Generates *n* random samples for a given mean and standard deviation. " "Returns a :class:`list` of :class:`float` values." msgstr "" -#: ../../library/statistics.rst:641 +#: ../../library/statistics.rst:646 msgid "" "If *seed* is given, creates a new instance of the underlying random number " "generator. This is useful for creating reproducible results, even in a " "multi-threading context." msgstr "" -#: ../../library/statistics.rst:647 +#: ../../library/statistics.rst:652 msgid "" "Using a `probability density function (pdf) " "`_, compute the " @@ -779,7 +787,7 @@ msgid "" " as *dx* approaches zero." msgstr "" -#: ../../library/statistics.rst:653 +#: ../../library/statistics.rst:658 msgid "" "The relative likelihood is computed as the probability of a sample occurring" " in a narrow range divided by the width of the range (hence the word " @@ -787,7 +795,7 @@ msgid "" "can be greater than `1.0`." msgstr "" -#: ../../library/statistics.rst:660 +#: ../../library/statistics.rst:665 msgid "" "Using a `cumulative distribution function (cdf) " "`_, compute " @@ -795,7 +803,7 @@ msgid "" "*x*. Mathematically, it is written ``P(X <= x)``." msgstr "" -#: ../../library/statistics.rst:667 +#: ../../library/statistics.rst:672 msgid "" "Compute the inverse cumulative distribution function, also known as the " "`quantile function `_ or " @@ -804,47 +812,47 @@ msgid "" "``x : P(X <= x) = p``." msgstr "" -#: ../../library/statistics.rst:673 +#: ../../library/statistics.rst:678 msgid "" "Finds the value *x* of the random variable *X* such that the probability of " "the variable being less than or equal to that value equals the given " "probability *p*." msgstr "" -#: ../../library/statistics.rst:679 +#: ../../library/statistics.rst:684 msgid "" "Measures the agreement between two normal probability distributions. Returns" " a value between 0.0 and 1.0 giving `the overlapping area for the two " "probability density functions `_." msgstr "" -#: ../../library/statistics.rst:686 +#: ../../library/statistics.rst:691 msgid "" "Divide the normal distribution into *n* continuous intervals with equal " "probability. Returns a list of (n - 1) cut points separating the intervals." msgstr "" -#: ../../library/statistics.rst:690 +#: ../../library/statistics.rst:695 msgid "" "Set *n* to 4 for quartiles (the default). Set *n* to 10 for deciles. Set " "*n* to 100 for percentiles which gives the 99 cuts points that separate the " "normal distribution into 100 equal sized groups." msgstr "" -#: ../../library/statistics.rst:694 +#: ../../library/statistics.rst:699 msgid "" "Instances of :class:`NormalDist` support addition, subtraction, " "multiplication and division by a constant. These operations are used for " "translation and scaling. For example:" msgstr "" -#: ../../library/statistics.rst:704 +#: ../../library/statistics.rst:709 msgid "" "Dividing a constant by an instance of :class:`NormalDist` is not supported " "because the result wouldn't be normally distributed." msgstr "" -#: ../../library/statistics.rst:707 +#: ../../library/statistics.rst:712 msgid "" "Since normal distributions arise from additive effects of independent " "variables, it is possible to `add and subtract two independent normally " @@ -853,15 +861,15 @@ msgid "" " represented as instances of :class:`NormalDist`. For example:" msgstr "" -#: ../../library/statistics.rst:727 +#: ../../library/statistics.rst:732 msgid ":class:`NormalDist` Examples and Recipes" msgstr "" -#: ../../library/statistics.rst:729 +#: ../../library/statistics.rst:734 msgid ":class:`NormalDist` readily solves classic probability problems." msgstr "" -#: ../../library/statistics.rst:731 +#: ../../library/statistics.rst:736 msgid "" "For example, given `historical data for SAT exams " "`_ showing that scores " @@ -870,24 +878,24 @@ msgid "" "1200, after rounding to the nearest whole number:" msgstr "" -#: ../../library/statistics.rst:744 +#: ../../library/statistics.rst:749 msgid "" "Find the `quartiles `_ and `deciles " "`_ for the SAT scores:" msgstr "" -#: ../../library/statistics.rst:754 +#: ../../library/statistics.rst:759 msgid "" "To estimate the distribution for a model than isn't easy to solve " "analytically, :class:`NormalDist` can generate input samples for a `Monte " "Carlo simulation `_:" msgstr "" -#: ../../library/statistics.rst:770 +#: ../../library/statistics.rst:775 msgid "Normal distributions commonly arise in machine learning problems." msgstr "" -#: ../../library/statistics.rst:772 +#: ../../library/statistics.rst:777 msgid "" "Wikipedia has a `nice example of a Naive Bayesian Classifier " "`_." @@ -895,20 +903,20 @@ msgid "" " distributed features including height, weight, and foot size." msgstr "" -#: ../../library/statistics.rst:777 +#: ../../library/statistics.rst:782 msgid "" "We're given a training dataset with measurements for eight people. The " "measurements are assumed to be normally distributed, so we summarize the " "data with :class:`NormalDist`:" msgstr "" -#: ../../library/statistics.rst:790 +#: ../../library/statistics.rst:795 msgid "" "Next, we encounter a new person whose feature measurements are known but " "whose gender is unknown:" msgstr "" -#: ../../library/statistics.rst:799 +#: ../../library/statistics.rst:804 msgid "" "Starting with a 50% `prior probability " "`_ of being male or female," @@ -916,7 +924,7 @@ msgid "" "the feature measurements given the gender:" msgstr "" -#: ../../library/statistics.rst:814 +#: ../../library/statistics.rst:819 msgid "" "The final prediction goes to the largest posterior. This is known as the " "`maximum a posteriori " diff --git a/library/stdtypes.po b/library/stdtypes.po index fbd1842..77d91cf 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-19 11:29+0000\n" +"POT-Creation-Date: 2019-11-21 11:59+0000\n" "PO-Revision-Date: 2017-02-16 23:27+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -2203,52 +2203,52 @@ msgstr "" #: ../../library/stdtypes.rst:1665 msgid "" -"Return true if all characters in the string are alphanumeric and there is at" -" least one character, false otherwise. A character ``c`` is alphanumeric if" -" one of the following returns ``True``: ``c.isalpha()``, ``c.isdecimal()``, " -"``c.isdigit()``, or ``c.isnumeric()``." +"Return ``True`` if all characters in the string are alphanumeric and there " +"is at least one character, ``False`` otherwise. A character ``c`` is " +"alphanumeric if one of the following returns ``True``: ``c.isalpha()``, " +"``c.isdecimal()``, ``c.isdigit()``, or ``c.isnumeric()``." msgstr "" #: ../../library/stdtypes.rst:1673 msgid "" -"Return true if all characters in the string are alphabetic and there is at " -"least one character, false otherwise. Alphabetic characters are those " -"characters defined in the Unicode character database as \"Letter\", i.e., " -"those with general category property being one of \"Lm\", \"Lt\", \"Lu\", " -"\"Ll\", or \"Lo\". Note that this is different from the \"Alphabetic\" " -"property defined in the Unicode Standard." +"Return ``True`` if all characters in the string are alphabetic and there is " +"at least one character, ``False`` otherwise. Alphabetic characters are " +"those characters defined in the Unicode character database as \"Letter\", " +"i.e., those with general category property being one of \"Lm\", \"Lt\", " +"\"Lu\", \"Ll\", or \"Lo\". Note that this is different from the " +"\"Alphabetic\" property defined in the Unicode Standard." msgstr "" #: ../../library/stdtypes.rst:1682 msgid "" -"Return true if the string is empty or all characters in the string are " -"ASCII, false otherwise. ASCII characters have code points in the range " +"Return ``True`` if the string is empty or all characters in the string are " +"ASCII, ``False`` otherwise. ASCII characters have code points in the range " "U+0000-U+007F." msgstr "" #: ../../library/stdtypes.rst:1691 msgid "" -"Return true if all characters in the string are decimal characters and there" -" is at least one character, false otherwise. Decimal characters are those " -"that can be used to form numbers in base 10, e.g. U+0660, ARABIC-INDIC DIGIT" -" ZERO. Formally a decimal character is a character in the Unicode General " -"Category \"Nd\"." +"Return ``True`` if all characters in the string are decimal characters and " +"there is at least one character, ``False`` otherwise. Decimal characters are" +" those that can be used to form numbers in base 10, e.g. U+0660, ARABIC-" +"INDIC DIGIT ZERO. Formally a decimal character is a character in the " +"Unicode General Category \"Nd\"." msgstr "" #: ../../library/stdtypes.rst:1701 msgid "" -"Return true if all characters in the string are digits and there is at least" -" one character, false otherwise. Digits include decimal characters and " -"digits that need special handling, such as the compatibility superscript " -"digits. This covers digits which cannot be used to form numbers in base 10, " -"like the Kharosthi numbers. Formally, a digit is a character that has the " -"property value Numeric_Type=Digit or Numeric_Type=Decimal." +"Return ``True`` if all characters in the string are digits and there is at " +"least one character, ``False`` otherwise. Digits include decimal characters" +" and digits that need special handling, such as the compatibility " +"superscript digits. This covers digits which cannot be used to form numbers " +"in base 10, like the Kharosthi numbers. Formally, a digit is a character " +"that has the property value Numeric_Type=Digit or Numeric_Type=Decimal." msgstr "" #: ../../library/stdtypes.rst:1711 msgid "" -"Return true if the string is a valid identifier according to the language " -"definition, section :ref:`identifiers`." +"Return ``True`` if the string is a valid identifier according to the " +"language definition, section :ref:`identifiers`." msgstr "" #: ../../library/stdtypes.rst:1714 @@ -2263,25 +2263,25 @@ msgstr "Contoh: ::" #: ../../library/stdtypes.rst:1730 msgid "" -"Return true if all cased characters [4]_ in the string are lowercase and " -"there is at least one cased character, false otherwise." +"Return ``True`` if all cased characters [4]_ in the string are lowercase and" +" there is at least one cased character, ``False`` otherwise." msgstr "" #: ../../library/stdtypes.rst:1736 msgid "" -"Return true if all characters in the string are numeric characters, and " -"there is at least one character, false otherwise. Numeric characters include" -" digit characters, and all characters that have the Unicode numeric value " -"property, e.g. U+2155, VULGAR FRACTION ONE FIFTH. Formally, numeric " +"Return ``True`` if all characters in the string are numeric characters, and " +"there is at least one character, ``False`` otherwise. Numeric characters " +"include digit characters, and all characters that have the Unicode numeric " +"value property, e.g. U+2155, VULGAR FRACTION ONE FIFTH. Formally, numeric " "characters are those with the property value Numeric_Type=Digit, " "Numeric_Type=Decimal or Numeric_Type=Numeric." msgstr "" #: ../../library/stdtypes.rst:1746 msgid "" -"Return true if all characters in the string are printable or the string is " -"empty, false otherwise. Nonprintable characters are those characters " -"defined in the Unicode character database as \"Other\" or \"Separator\", " +"Return ``True`` if all characters in the string are printable or the string " +"is empty, ``False`` otherwise. Nonprintable characters are those characters" +" defined in the Unicode character database as \"Other\" or \"Separator\", " "excepting the ASCII space (0x20) which is considered printable. (Note that " "printable characters in this context are those which should not be escaped " "when :func:`repr` is invoked on a string. It has no bearing on the handling" @@ -2290,8 +2290,8 @@ msgstr "" #: ../../library/stdtypes.rst:1757 msgid "" -"Return true if there are only whitespace characters in the string and there " -"is at least one character, false otherwise." +"Return ``True`` if there are only whitespace characters in the string and " +"there is at least one character, ``False`` otherwise." msgstr "" #: ../../library/stdtypes.rst:1760 @@ -2303,16 +2303,16 @@ msgstr "" #: ../../library/stdtypes.rst:1768 msgid "" -"Return true if the string is a titlecased string and there is at least one " -"character, for example uppercase characters may only follow uncased " -"characters and lowercase characters only cased ones. Return false " +"Return ``True`` if the string is a titlecased string and there is at least " +"one character, for example uppercase characters may only follow uncased " +"characters and lowercase characters only cased ones. Return ``False`` " "otherwise." msgstr "" #: ../../library/stdtypes.rst:1775 msgid "" -"Return true if all cased characters [4]_ in the string are uppercase and " -"there is at least one cased character, false otherwise." +"Return ``True`` if all cased characters [4]_ in the string are uppercase and" +" there is at least one cased character, ``False`` otherwise." msgstr "" #: ../../library/stdtypes.rst:1781 @@ -3693,38 +3693,38 @@ msgstr "" #: ../../library/stdtypes.rst:2989 msgid "" -"Return true if all bytes in the sequence are alphabetical ASCII characters " -"or ASCII decimal digits and the sequence is not empty, false otherwise. " -"Alphabetic ASCII characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``. ASCII decimal " +"Return ``True`` if all bytes in the sequence are alphabetical ASCII " +"characters or ASCII decimal digits and the sequence is not empty, ``False`` " +"otherwise. Alphabetic ASCII characters are those byte values in the sequence" +" ``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``. ASCII decimal " "digits are those byte values in the sequence ``b'0123456789'``." msgstr "" #: ../../library/stdtypes.rst:3006 msgid "" -"Return true if all bytes in the sequence are alphabetic ASCII characters and" -" the sequence is not empty, false otherwise. Alphabetic ASCII characters " -"are those byte values in the sequence " +"Return ``True`` if all bytes in the sequence are alphabetic ASCII characters" +" and the sequence is not empty, ``False`` otherwise. Alphabetic ASCII " +"characters are those byte values in the sequence " "``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``." msgstr "" #: ../../library/stdtypes.rst:3022 msgid "" -"Return true if the sequence is empty or all bytes in the sequence are ASCII," -" false otherwise. ASCII bytes are in the range 0-0x7F." +"Return ``True`` if the sequence is empty or all bytes in the sequence are " +"ASCII, ``False`` otherwise. ASCII bytes are in the range 0-0x7F." msgstr "" #: ../../library/stdtypes.rst:3032 msgid "" -"Return true if all bytes in the sequence are ASCII decimal digits and the " -"sequence is not empty, false otherwise. ASCII decimal digits are those byte " -"values in the sequence ``b'0123456789'``." +"Return ``True`` if all bytes in the sequence are ASCII decimal digits and " +"the sequence is not empty, ``False`` otherwise. ASCII decimal digits are " +"those byte values in the sequence ``b'0123456789'``." msgstr "" #: ../../library/stdtypes.rst:3047 msgid "" -"Return true if there is at least one lowercase ASCII character in the " -"sequence and no uppercase ASCII characters, false otherwise." +"Return ``True`` if there is at least one lowercase ASCII character in the " +"sequence and no uppercase ASCII characters, ``False`` otherwise." msgstr "" #: ../../library/stdtypes.rst:3057 ../../library/stdtypes.rst:3099 @@ -3738,23 +3738,24 @@ msgstr "" #: ../../library/stdtypes.rst:3065 msgid "" -"Return true if all bytes in the sequence are ASCII whitespace and the " -"sequence is not empty, false otherwise. ASCII whitespace characters are " -"those byte values in the sequence ``b' \\t\\n\\r\\x0b\\f'`` (space, tab, " +"Return ``True`` if all bytes in the sequence are ASCII whitespace and the " +"sequence is not empty, ``False`` otherwise. ASCII whitespace characters are" +" those byte values in the sequence ``b' \\t\\n\\r\\x0b\\f'`` (space, tab, " "newline, carriage return, vertical tab, form feed)." msgstr "" #: ../../library/stdtypes.rst:3074 msgid "" -"Return true if the sequence is ASCII titlecase and the sequence is not " -"empty, false otherwise. See :meth:`bytes.title` for more details on the " +"Return ``True`` if the sequence is ASCII titlecase and the sequence is not " +"empty, ``False`` otherwise. See :meth:`bytes.title` for more details on the " "definition of \"titlecase\"." msgstr "" #: ../../library/stdtypes.rst:3089 msgid "" -"Return true if there is at least one uppercase alphabetic ASCII character in" -" the sequence and no lowercase ASCII characters, false otherwise." +"Return ``True`` if there is at least one uppercase alphabetic ASCII " +"character in the sequence and no lowercase ASCII characters, ``False`` " +"otherwise." msgstr "" #: ../../library/stdtypes.rst:3107 @@ -4049,7 +4050,7 @@ msgstr "" #: ../../library/stdtypes.rst:3645 msgid "" -"*Order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the" +"*order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the" " original array is converted to C or Fortran order. For contiguous views, " "'A' returns an exact copy of the physical memory. In particular, in-memory " "Fortran order is preserved. For non-contiguous views, the data is converted " diff --git a/library/stringprep.po b/library/stringprep.po index 50b872d..3629076 100644 --- a/library/stringprep.po +++ b/library/stringprep.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:28+0000\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgid "" "As a result, these tables are exposed as functions, not as data structures. " "There are two kinds of tables in the RFC: sets and mappings. For a set, " ":mod:`stringprep` provides the \"characteristic function\", i.e. a function " -"that returns true if the parameter is part of the set. For mappings, it " +"that returns ``True`` if the parameter is part of the set. For mappings, it " "provides the mapping function: given the key, it returns the associated " "value. Below is a list of all functions available in the module." msgstr "" diff --git a/library/subprocess.po b/library/subprocess.po index 6399efb..7f49c05 100644 --- a/library/subprocess.po +++ b/library/subprocess.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-12 11:28+0000\n" +"POT-Creation-Date: 2019-11-29 12:04+0000\n" "PO-Revision-Date: 2017-02-16 23:28+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -760,8 +760,8 @@ msgstr "" msgid "" "Popen and the other functions in this module that use it raise an " ":ref:`auditing event ` ``subprocess.Popen`` with arguments " -"``executable``, ``args``, ``cwd``, ``env``. The value for ``args`` may be a " -"single string or a list of strings, depending on platform." +"``executable``, ``args``, ``cwd``, and ``env``. The value for ``args`` may " +"be a single string or a list of strings, depending on platform." msgstr "" #: ../../library/subprocess.rst:602 diff --git a/library/sys.po b/library/sys.po index c05660d..9a595e3 100644 --- a/library/sys.po +++ b/library/sys.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-27 11:47+0000\n" +"POT-Creation-Date: 2019-11-29 12:04+0000\n" "PO-Revision-Date: 2017-02-16 23:29+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -47,7 +47,7 @@ msgstr "" #: ../../library/sys.rst:28 msgid "" -"Adds the callable *hook* to the collection of active auditing hooks for the " +"Append the callable *hook* to the list of active auditing hooks for the " "current interpreter." msgstr "" @@ -67,21 +67,27 @@ msgstr "" #: ../../library/sys.rst:38 msgid "" -"Raises a auditing event ``sys.addaudithook`` with no arguments. If any " -"existing hooks raise an exception derived from :class:`Exception`, the new " -"hook will not be added and the exception suppressed. As a result, callers " -"cannot assume that their hook has been added unless they control all " -"existing hooks." +"Raise an auditing event ``sys.addaudithook`` with no arguments. If any " +"existing hooks raise an exception derived from :class:`RuntimeError`, the " +"new hook will not be added and the exception suppressed. As a result, " +"callers cannot assume that their hook has been added unless they control all" +" existing hooks." msgstr "" #: ../../library/sys.rst:48 msgid "" +"Exceptions derived from :class:`Exception` but not :class:`RuntimeError` are" +" no longer suppressed." +msgstr "" + +#: ../../library/sys.rst:53 +msgid "" "When tracing is enabled (see :func:`settrace`), Python hooks are only traced" " if the callable has a ``__cantrace__`` member that is set to a true value. " "Otherwise, trace functions will skip the hook." msgstr "" -#: ../../library/sys.rst:55 +#: ../../library/sys.rst:60 msgid "" "The list of command line arguments passed to a Python script. ``argv[0]`` is" " the script name (it is operating system dependent whether this is a full " @@ -91,13 +97,13 @@ msgid "" "``argv[0]`` is the empty string." msgstr "" -#: ../../library/sys.rst:61 +#: ../../library/sys.rst:66 msgid "" "To loop over the standard input, or the list of files given on the command " "line, see the :mod:`fileinput` module." msgstr "" -#: ../../library/sys.rst:65 +#: ../../library/sys.rst:70 msgid "" "On Unix, command line arguments are passed by bytes from OS. Python decodes" " them with filesystem encoding and \"surrogateescape\" error handler. When " @@ -105,40 +111,40 @@ msgid "" "sys.argv]``." msgstr "" -#: ../../library/sys.rst:77 +#: ../../library/sys.rst:82 msgid "" -"Raises an auditing event with any active hooks. The event name is a string " +"Raise an auditing event with any active hooks. The event name is a string " "identifying the event and its associated schema, which is the number and " "types of arguments. The schema for a given event is considered public and " "stable API and should not be modified between releases." msgstr "" -#: ../../library/sys.rst:82 +#: ../../library/sys.rst:87 msgid "" "This function will raise the first exception raised by any hook. In general," " these errors should not be handled and should terminate the process as " "quickly as possible." msgstr "" -#: ../../library/sys.rst:86 +#: ../../library/sys.rst:91 msgid "" "Hooks are added using the :func:`sys.addaudithook` or " ":c:func:`PySys_AddAuditHook` functions." msgstr "" -#: ../../library/sys.rst:89 +#: ../../library/sys.rst:94 msgid "" "The native equivalent of this function is :c:func:`PySys_Audit`. Using the " "native function is preferred when possible." msgstr "" -#: ../../library/sys.rst:92 +#: ../../library/sys.rst:97 msgid "" "See the :ref:`audit events table ` for all events raised by " "CPython." msgstr "" -#: ../../library/sys.rst:100 +#: ../../library/sys.rst:105 msgid "" "Set during Python startup, before ``site.py`` is run, to the same value as " ":data:`exec_prefix`. If not running in a :ref:`virtual environment `, " @@ -162,45 +168,45 @@ msgid "" " from)." msgstr "" -#: ../../library/sys.rst:127 +#: ../../library/sys.rst:132 msgid "" "An indicator of the native byte order. This will have the value ``'big'`` " "on big-endian (most-significant byte first) platforms, and ``'little'`` on " "little-endian (least-significant byte first) platforms." msgstr "" -#: ../../library/sys.rst:134 +#: ../../library/sys.rst:139 msgid "" "A tuple of strings giving the names of all modules that are compiled into " "this Python interpreter. (This information is not available in any other " "way --- ``modules.keys()`` only lists the imported modules.)" msgstr "" -#: ../../library/sys.rst:141 +#: ../../library/sys.rst:146 msgid "" "Call ``func(*args)``, while tracing is enabled. The tracing state is saved," " and restored afterwards. This is intended to be called from a debugger " "from a checkpoint, to recursively debug some other code." msgstr "" -#: ../../library/sys.rst:148 +#: ../../library/sys.rst:153 msgid "" "A string containing the copyright pertaining to the Python interpreter." msgstr "" -#: ../../library/sys.rst:153 +#: ../../library/sys.rst:158 msgid "" "Clear the internal type cache. The type cache is used to speed up attribute " "and method lookups. Use the function *only* to drop unnecessary references " "during reference leak debugging." msgstr "" -#: ../../library/sys.rst:157 ../../library/sys.rst:173 +#: ../../library/sys.rst:162 ../../library/sys.rst:178 msgid "" "This function should be used for internal and specialized purposes only." msgstr "" -#: ../../library/sys.rst:162 +#: ../../library/sys.rst:167 msgid "" "Return a dictionary mapping each thread's identifier to the topmost stack " "frame currently active in that thread at the time the function is called. " @@ -208,7 +214,7 @@ msgid "" "given such a frame." msgstr "" -#: ../../library/sys.rst:167 +#: ../../library/sys.rst:172 msgid "" "This is most useful for debugging deadlock: this function does not require " "the deadlocked threads' cooperation, and such threads' call stacks are " @@ -217,20 +223,20 @@ msgid "" " by the time calling code examines the frame." msgstr "" -#: ../../library/sys.rst:175 +#: ../../library/sys.rst:180 msgid "" "Raises an :ref:`auditing event ` ``sys._current_frames`` with no " "arguments." msgstr "" -#: ../../library/sys.rst:180 +#: ../../library/sys.rst:185 msgid "" "This hook function is called by built-in :func:`breakpoint`. By default, it" " drops you into the :mod:`pdb` debugger, but it can be set to any other " "function so that you can choose which debugger gets used." msgstr "" -#: ../../library/sys.rst:184 +#: ../../library/sys.rst:189 msgid "" "The signature of this function is dependent on what it calls. For example, " "the default binding (e.g. ``pdb.set_trace()``) expects no arguments, but you" @@ -240,7 +246,7 @@ msgid "" "returns is returned from ``breakpoint()``." msgstr "" -#: ../../library/sys.rst:191 +#: ../../library/sys.rst:196 msgid "" "The default implementation first consults the environment variable " ":envvar:`PYTHONBREAKPOINT`. If that is set to ``\"0\"`` then this function " @@ -255,47 +261,47 @@ msgid "" "function." msgstr "" -#: ../../library/sys.rst:203 +#: ../../library/sys.rst:208 msgid "" "Note that if anything goes wrong while importing the callable named by " ":envvar:`PYTHONBREAKPOINT`, a :exc:`RuntimeWarning` is reported and the " "breakpoint is ignored." msgstr "" -#: ../../library/sys.rst:207 +#: ../../library/sys.rst:212 msgid "" "Also note that if ``sys.breakpointhook()`` is overridden programmatically, " ":envvar:`PYTHONBREAKPOINT` is *not* consulted." msgstr "" -#: ../../library/sys.rst:214 +#: ../../library/sys.rst:219 msgid "" "Print low-level information to stderr about the state of CPython's memory " "allocator." msgstr "" -#: ../../library/sys.rst:217 +#: ../../library/sys.rst:222 msgid "" "If Python is configured --with-pydebug, it also performs some expensive " "internal consistency checks." msgstr "" -#: ../../library/sys.rst:224 +#: ../../library/sys.rst:229 msgid "" "This function is specific to CPython. The exact output format is not " "defined here, and may change." msgstr "" -#: ../../library/sys.rst:230 +#: ../../library/sys.rst:235 msgid "Integer specifying the handle of the Python DLL." msgstr "" -#: ../../library/sys.rst:232 ../../library/sys.rst:756 -#: ../../library/sys.rst:1412 ../../library/sys.rst:1611 +#: ../../library/sys.rst:237 ../../library/sys.rst:770 +#: ../../library/sys.rst:1426 ../../library/sys.rst:1632 msgid ":ref:`Availability `: Windows." msgstr ":ref:`Availability `: Windows." -#: ../../library/sys.rst:237 +#: ../../library/sys.rst:242 msgid "" "If *value* is not ``None``, this function prints ``repr(value)`` to " "``sys.stdout``, and saves *value* in ``builtins._``. If ``repr(value)`` is " @@ -304,7 +310,7 @@ msgid "" "``sys.stdout.encoding`` with ``'backslashreplace'`` error handler." msgstr "" -#: ../../library/sys.rst:243 +#: ../../library/sys.rst:248 msgid "" "``sys.displayhook`` is called on the result of evaluating an " ":term:`expression` entered in an interactive Python session. The display of" @@ -312,15 +318,15 @@ msgid "" "to ``sys.displayhook``." msgstr "" -#: ../../library/sys.rst:247 +#: ../../library/sys.rst:252 msgid "Pseudo-code::" msgstr "" -#: ../../library/sys.rst:267 +#: ../../library/sys.rst:272 msgid "Use ``'backslashreplace'`` error handler on :exc:`UnicodeEncodeError`." msgstr "" -#: ../../library/sys.rst:273 +#: ../../library/sys.rst:278 msgid "" "If this is true, Python won't try to write ``.pyc`` files on the import of " "source modules. This value is initially set to ``True`` or ``False`` " @@ -329,7 +335,7 @@ msgid "" "yourself to control bytecode file generation." msgstr "" -#: ../../library/sys.rst:282 +#: ../../library/sys.rst:287 msgid "" "If this is set (not ``None``), Python will write bytecode-cache ``.pyc`` " "files to (and read them from) a parallel directory tree rooted at this " @@ -340,12 +346,12 @@ msgid "" "the same pycache prefix (if any) that you will use at runtime." msgstr "" -#: ../../library/sys.rst:290 +#: ../../library/sys.rst:295 msgid "" "A relative path is interpreted relative to the current working directory." msgstr "" -#: ../../library/sys.rst:292 +#: ../../library/sys.rst:297 msgid "" "This value is initially set based on the value of the :option:`-X` " "``pycache_prefix=PATH`` command-line option or the " @@ -353,12 +359,12 @@ msgid "" "precedence). If neither are set, it is ``None``." msgstr "" -#: ../../library/sys.rst:302 +#: ../../library/sys.rst:307 msgid "" "This function prints out a given traceback and exception to ``sys.stderr``." msgstr "" -#: ../../library/sys.rst:304 +#: ../../library/sys.rst:309 msgid "" "When an exception is raised and uncaught, the interpreter calls " "``sys.excepthook`` with three arguments, the exception class, exception " @@ -369,14 +375,30 @@ msgid "" " ``sys.excepthook``." msgstr "" -#: ../../library/sys.rst:313 +#: ../../library/sys.rstNone +msgid "" +"Raises an :ref:`auditing event ` ``sys.excepthook`` with arguments" +" ``hook``, ``type``, ``value``, ``traceback``." +msgstr "" + +#: ../../library/sys.rst:318 +msgid "" +"Raise an auditing event ``sys.excepthook`` with arguments ``hook``, " +"``type``, ``value``, ``traceback`` when an uncaught exception occurs. If no " +"hook has been set, ``hook`` may be ``None``. If any hook raises an exception" +" derived from :class:`RuntimeError` the call to the hook will be suppressed." +" Otherwise, the audit hook exception will be reported as unraisable and " +"``sys.excepthook`` will be called." +msgstr "" + +#: ../../library/sys.rst:327 msgid "" "The :func:`sys.unraisablehook` function handles unraisable exceptions and " "the :func:`threading.excepthook` function handles exception raised by " ":func:`threading.Thread.run`." msgstr "" -#: ../../library/sys.rst:323 +#: ../../library/sys.rst:337 msgid "" "These objects contain the original values of ``breakpointhook``, " "``displayhook``, ``excepthook``, and ``unraisablehook`` at the start of the " @@ -385,11 +407,11 @@ msgid "" "get replaced with broken or alternative objects." msgstr "" -#: ../../library/sys.rst:329 +#: ../../library/sys.rst:343 msgid "__breakpointhook__" msgstr "" -#: ../../library/sys.rst:335 +#: ../../library/sys.rst:349 msgid "" "This function returns a tuple of three values that give information about " "the exception that is currently being handled. The information returned is " @@ -401,7 +423,7 @@ msgid "" "information about the exception being currently handled is accessible." msgstr "" -#: ../../library/sys.rst:346 +#: ../../library/sys.rst:360 msgid "" "If no exception is being handled anywhere on the stack, a tuple containing " "three ``None`` values is returned. Otherwise, the values returned are " @@ -412,7 +434,7 @@ msgid "" "stack at the point where the exception originally occurred." msgstr "" -#: ../../library/sys.rst:357 +#: ../../library/sys.rst:371 msgid "" "A string giving the site-specific directory prefix where the platform-" "dependent Python files are installed; by default, this is also " @@ -424,7 +446,7 @@ msgid "" "dynload`, where *X.Y* is the version number of Python, for example ``3.2``." msgstr "" -#: ../../library/sys.rst:368 +#: ../../library/sys.rst:382 msgid "" "If a :ref:`virtual environment ` is in effect, this value will be " "changed in ``site.py`` to point to the virtual environment. The value for " @@ -432,7 +454,7 @@ msgid "" ":data:`base_exec_prefix`." msgstr "" -#: ../../library/sys.rst:376 +#: ../../library/sys.rst:390 msgid "" "A string giving the absolute path of the executable binary for the Python " "interpreter, on systems where this makes sense. If Python is unable to " @@ -440,7 +462,7 @@ msgid "" "empty string or ``None``." msgstr "" -#: ../../library/sys.rst:384 +#: ../../library/sys.rst:398 msgid "" "Exit from Python. This is implemented by raising the :exc:`SystemExit` " "exception, so cleanup actions specified by finally clauses of :keyword:`try`" @@ -448,7 +470,7 @@ msgid "" " an outer level." msgstr "" -#: ../../library/sys.rst:389 +#: ../../library/sys.rst:403 msgid "" "The optional argument *arg* can be an integer giving the exit status " "(defaulting to zero), or another type of object. If it is an integer, zero " @@ -464,174 +486,174 @@ msgid "" "way to exit a program when an error occurs." msgstr "" -#: ../../library/sys.rst:402 +#: ../../library/sys.rst:416 msgid "" "Since :func:`exit` ultimately \"only\" raises an exception, it will only " "exit the process when called from the main thread, and the exception is not " "intercepted." msgstr "" -#: ../../library/sys.rst:406 +#: ../../library/sys.rst:420 msgid "" "If an error occurs in the cleanup after the Python interpreter has caught " ":exc:`SystemExit` (such as an error flushing buffered data in the standard " "streams), the exit status is changed to 120." msgstr "" -#: ../../library/sys.rst:414 +#: ../../library/sys.rst:428 msgid "" "The :term:`named tuple` *flags* exposes the status of command line flags. " "The attributes are read only." msgstr "" -#: ../../library/sys.rst:418 ../../library/sys.rst:466 -#: ../../library/sys.rst:801 +#: ../../library/sys.rst:432 ../../library/sys.rst:480 +#: ../../library/sys.rst:815 msgid "attribute" msgstr "atribut" -#: ../../library/sys.rst:418 +#: ../../library/sys.rst:432 msgid "flag" msgstr "" -#: ../../library/sys.rst:420 +#: ../../library/sys.rst:434 msgid ":const:`debug`" msgstr ":const:`debug`" -#: ../../library/sys.rst:420 +#: ../../library/sys.rst:434 msgid ":option:`-d`" msgstr ":option:`-d`" -#: ../../library/sys.rst:421 +#: ../../library/sys.rst:435 msgid ":const:`inspect`" msgstr ":const:`inspect`" -#: ../../library/sys.rst:421 ../../library/sys.rst:422 +#: ../../library/sys.rst:435 ../../library/sys.rst:436 msgid ":option:`-i`" msgstr ":option:`-i`" -#: ../../library/sys.rst:422 +#: ../../library/sys.rst:436 msgid ":const:`interactive`" msgstr ":const:`interactive`" -#: ../../library/sys.rst:423 +#: ../../library/sys.rst:437 msgid ":const:`isolated`" msgstr ":const:`isolated`" -#: ../../library/sys.rst:423 +#: ../../library/sys.rst:437 msgid ":option:`-I`" msgstr ":option:`-I`" -#: ../../library/sys.rst:424 +#: ../../library/sys.rst:438 msgid ":const:`optimize`" msgstr ":const:`optimize`" -#: ../../library/sys.rst:424 +#: ../../library/sys.rst:438 msgid ":option:`-O` or :option:`-OO`" msgstr ":option:`-O` or :option:`-OO`" -#: ../../library/sys.rst:425 +#: ../../library/sys.rst:439 msgid ":const:`dont_write_bytecode`" msgstr ":const:`dont_write_bytecode`" -#: ../../library/sys.rst:425 +#: ../../library/sys.rst:439 msgid ":option:`-B`" msgstr ":option:`-B`" -#: ../../library/sys.rst:426 +#: ../../library/sys.rst:440 msgid ":const:`no_user_site`" msgstr ":const:`no_user_site`" -#: ../../library/sys.rst:426 +#: ../../library/sys.rst:440 msgid ":option:`-s`" msgstr ":option:`-s`" -#: ../../library/sys.rst:427 +#: ../../library/sys.rst:441 msgid ":const:`no_site`" msgstr ":const:`no_site`" -#: ../../library/sys.rst:427 +#: ../../library/sys.rst:441 msgid ":option:`-S`" msgstr ":option:`-S`" -#: ../../library/sys.rst:428 +#: ../../library/sys.rst:442 msgid ":const:`ignore_environment`" msgstr ":const:`ignore_environment`" -#: ../../library/sys.rst:428 +#: ../../library/sys.rst:442 msgid ":option:`-E`" msgstr ":option:`-E`" -#: ../../library/sys.rst:429 +#: ../../library/sys.rst:443 msgid ":const:`verbose`" msgstr ":const:`verbose`" -#: ../../library/sys.rst:429 +#: ../../library/sys.rst:443 msgid ":option:`-v`" msgstr ":option:`-v`" -#: ../../library/sys.rst:430 +#: ../../library/sys.rst:444 msgid ":const:`bytes_warning`" msgstr ":const:`bytes_warning`" -#: ../../library/sys.rst:430 +#: ../../library/sys.rst:444 msgid ":option:`-b`" msgstr ":option:`-b`" -#: ../../library/sys.rst:431 +#: ../../library/sys.rst:445 msgid ":const:`quiet`" msgstr ":const:`quiet`" -#: ../../library/sys.rst:431 +#: ../../library/sys.rst:445 msgid ":option:`-q`" msgstr ":option:`-q`" -#: ../../library/sys.rst:432 +#: ../../library/sys.rst:446 msgid ":const:`hash_randomization`" msgstr ":const:`hash_randomization`" -#: ../../library/sys.rst:432 +#: ../../library/sys.rst:446 msgid ":option:`-R`" msgstr ":option:`-R`" -#: ../../library/sys.rst:433 +#: ../../library/sys.rst:447 msgid ":const:`dev_mode`" msgstr ":const:`dev_mode`" -#: ../../library/sys.rst:433 +#: ../../library/sys.rst:447 msgid ":option:`-X` ``dev``" msgstr ":option:`-X` ``dev``" -#: ../../library/sys.rst:434 +#: ../../library/sys.rst:448 msgid ":const:`utf8_mode`" msgstr ":const:`utf8_mode`" -#: ../../library/sys.rst:434 +#: ../../library/sys.rst:448 msgid ":option:`-X` ``utf8``" msgstr ":option:`-X` ``utf8``" -#: ../../library/sys.rst:437 +#: ../../library/sys.rst:451 msgid "Added ``quiet`` attribute for the new :option:`-q` flag." msgstr "" -#: ../../library/sys.rst:440 +#: ../../library/sys.rst:454 msgid "The ``hash_randomization`` attribute." msgstr "" -#: ../../library/sys.rst:443 +#: ../../library/sys.rst:457 msgid "Removed obsolete ``division_warning`` attribute." msgstr "" -#: ../../library/sys.rst:446 +#: ../../library/sys.rst:460 msgid "Added ``isolated`` attribute for :option:`-I` ``isolated`` flag." msgstr "" -#: ../../library/sys.rst:449 +#: ../../library/sys.rst:463 msgid "" "Added ``dev_mode`` attribute for the new :option:`-X` ``dev`` flag and " "``utf8_mode`` attribute for the new :option:`-X` ``utf8`` flag." msgstr "" -#: ../../library/sys.rst:456 +#: ../../library/sys.rst:470 msgid "" "A :term:`named tuple` holding information about the float type. It contains " "low level information about the precision and internal representation. The " @@ -641,152 +663,152 @@ msgid "" " floating types', for details." msgstr "" -#: ../../library/sys.rst:466 +#: ../../library/sys.rst:480 msgid "float.h macro" msgstr "" -#: ../../library/sys.rst:466 ../../library/sys.rst:801 +#: ../../library/sys.rst:480 ../../library/sys.rst:815 msgid "explanation" msgstr "" -#: ../../library/sys.rst:468 +#: ../../library/sys.rst:482 msgid ":const:`epsilon`" msgstr ":const:`epsilon`" -#: ../../library/sys.rst:468 +#: ../../library/sys.rst:482 msgid "DBL_EPSILON" msgstr "" -#: ../../library/sys.rst:468 +#: ../../library/sys.rst:482 msgid "" "difference between 1 and the least value greater than 1 that is " "representable as a float" msgstr "" -#: ../../library/sys.rst:471 +#: ../../library/sys.rst:485 msgid ":const:`dig`" msgstr ":const:`dig`" -#: ../../library/sys.rst:471 +#: ../../library/sys.rst:485 msgid "DBL_DIG" msgstr "" -#: ../../library/sys.rst:471 +#: ../../library/sys.rst:485 msgid "" "maximum number of decimal digits that can be faithfully represented in a " "float; see below" msgstr "" -#: ../../library/sys.rst:474 +#: ../../library/sys.rst:488 msgid ":const:`mant_dig`" msgstr ":const:`mant_dig`" -#: ../../library/sys.rst:474 +#: ../../library/sys.rst:488 msgid "DBL_MANT_DIG" msgstr "" -#: ../../library/sys.rst:474 +#: ../../library/sys.rst:488 msgid "" "float precision: the number of base-``radix`` digits in the significand of a" " float" msgstr "" -#: ../../library/sys.rst:477 +#: ../../library/sys.rst:491 msgid ":const:`max`" msgstr ":const:`max`" -#: ../../library/sys.rst:477 +#: ../../library/sys.rst:491 msgid "DBL_MAX" msgstr "" -#: ../../library/sys.rst:477 +#: ../../library/sys.rst:491 msgid "maximum representable finite float" msgstr "" -#: ../../library/sys.rst:479 +#: ../../library/sys.rst:493 msgid ":const:`max_exp`" msgstr ":const:`max_exp`" -#: ../../library/sys.rst:479 +#: ../../library/sys.rst:493 msgid "DBL_MAX_EXP" msgstr "" -#: ../../library/sys.rst:479 +#: ../../library/sys.rst:493 msgid "" "maximum integer e such that ``radix**(e-1)`` is a representable finite float" msgstr "" -#: ../../library/sys.rst:482 +#: ../../library/sys.rst:496 msgid ":const:`max_10_exp`" msgstr ":const:`max_10_exp`" -#: ../../library/sys.rst:482 +#: ../../library/sys.rst:496 msgid "DBL_MAX_10_EXP" msgstr "" -#: ../../library/sys.rst:482 +#: ../../library/sys.rst:496 msgid "" "maximum integer e such that ``10**e`` is in the range of representable " "finite floats" msgstr "" -#: ../../library/sys.rst:485 +#: ../../library/sys.rst:499 msgid ":const:`min`" msgstr ":const:`min`" -#: ../../library/sys.rst:485 +#: ../../library/sys.rst:499 msgid "DBL_MIN" msgstr "" -#: ../../library/sys.rst:485 +#: ../../library/sys.rst:499 msgid "minimum positive normalized float" msgstr "" -#: ../../library/sys.rst:487 +#: ../../library/sys.rst:501 msgid ":const:`min_exp`" msgstr ":const:`min_exp`" -#: ../../library/sys.rst:487 +#: ../../library/sys.rst:501 msgid "DBL_MIN_EXP" msgstr "" -#: ../../library/sys.rst:487 +#: ../../library/sys.rst:501 msgid "minimum integer e such that ``radix**(e-1)`` is a normalized float" msgstr "" -#: ../../library/sys.rst:490 +#: ../../library/sys.rst:504 msgid ":const:`min_10_exp`" msgstr ":const:`min_10_exp`" -#: ../../library/sys.rst:490 +#: ../../library/sys.rst:504 msgid "DBL_MIN_10_EXP" msgstr "" -#: ../../library/sys.rst:490 +#: ../../library/sys.rst:504 msgid "minimum integer e such that ``10**e`` is a normalized float" msgstr "" -#: ../../library/sys.rst:493 +#: ../../library/sys.rst:507 msgid ":const:`radix`" msgstr ":const:`radix`" -#: ../../library/sys.rst:493 +#: ../../library/sys.rst:507 msgid "FLT_RADIX" msgstr "" -#: ../../library/sys.rst:493 +#: ../../library/sys.rst:507 msgid "radix of exponent representation" msgstr "" -#: ../../library/sys.rst:495 +#: ../../library/sys.rst:509 msgid ":const:`rounds`" msgstr ":const:`rounds`" -#: ../../library/sys.rst:495 +#: ../../library/sys.rst:509 msgid "FLT_ROUNDS" msgstr "" -#: ../../library/sys.rst:495 +#: ../../library/sys.rst:509 msgid "" "integer constant representing the rounding mode used for arithmetic " "operations. This reflects the value of the system FLT_ROUNDS macro at " @@ -794,7 +816,7 @@ msgid "" "explanation of the possible values and their meanings." msgstr "" -#: ../../library/sys.rst:503 +#: ../../library/sys.rst:517 msgid "" "The attribute :attr:`sys.float_info.dig` needs further explanation. If " "``s`` is any string representing a decimal number with at most " @@ -803,13 +825,13 @@ msgid "" "value::" msgstr "" -#: ../../library/sys.rst:516 +#: ../../library/sys.rst:530 msgid "" "But for strings with more than :attr:`sys.float_info.dig` significant " "digits, this isn't always true::" msgstr "" -#: ../../library/sys.rst:525 +#: ../../library/sys.rst:539 msgid "" "A string indicating how the :func:`repr` function behaves for floats. If " "the string has value ``'short'`` then for a finite float ``x``, ``repr(x)`` " @@ -819,7 +841,7 @@ msgid "" "same way as it did in versions of Python prior to 3.1." msgstr "" -#: ../../library/sys.rst:538 +#: ../../library/sys.rst:552 msgid "" "Return the number of memory blocks currently allocated by the interpreter, " "regardless of their size. This function is mainly useful for tracking and " @@ -829,46 +851,46 @@ msgid "" " results." msgstr "" -#: ../../library/sys.rst:545 +#: ../../library/sys.rst:559 msgid "" "If a Python build or implementation cannot reasonably compute this " "information, :func:`getallocatedblocks()` is allowed to return 0 instead." msgstr "" -#: ../../library/sys.rst:553 +#: ../../library/sys.rst:567 msgid "Return the build time API version of Android as an integer." msgstr "" -#: ../../library/sys.rst:556 +#: ../../library/sys.rst:570 msgid ":ref:`Availability `: Android." msgstr "" -#: ../../library/sys.rst:562 +#: ../../library/sys.rst:576 msgid "Return the interpreter's \"check interval\"; see :func:`setcheckinterval`." msgstr "" -#: ../../library/sys.rst:564 +#: ../../library/sys.rst:578 msgid "Use :func:`getswitchinterval` instead." msgstr "" -#: ../../library/sys.rst:570 +#: ../../library/sys.rst:584 msgid "" "Return the name of the current default string encoding used by the Unicode " "implementation." msgstr "" -#: ../../library/sys.rst:576 +#: ../../library/sys.rst:590 msgid "" "Return the current value of the flags that are used for :c:func:`dlopen` " "calls. Symbolic names for the flag values can be found in the :mod:`os` " "module (``RTLD_xxx`` constants, e.g. :data:`os.RTLD_LAZY`)." msgstr "" -#: ../../library/sys.rst:581 ../../library/sys.rst:1185 +#: ../../library/sys.rst:595 ../../library/sys.rst:1199 msgid ":ref:`Availability `: Unix." msgstr ":ref:`Availability `: Unix." -#: ../../library/sys.rst:586 +#: ../../library/sys.rst:600 msgid "" "Return the name of the encoding used to convert between Unicode filenames " "and bytes filenames. For best compatibility, str should be used for " @@ -878,71 +900,71 @@ msgid "" "representation." msgstr "" -#: ../../library/sys.rst:593 +#: ../../library/sys.rst:607 msgid "This encoding is always ASCII-compatible." msgstr "" -#: ../../library/sys.rst:595 ../../library/sys.rst:628 +#: ../../library/sys.rst:609 ../../library/sys.rst:642 msgid "" ":func:`os.fsencode` and :func:`os.fsdecode` should be used to ensure that " "the correct encoding and errors mode are used." msgstr "" -#: ../../library/sys.rst:598 +#: ../../library/sys.rst:612 msgid "In the UTF-8 mode, the encoding is ``utf-8`` on any platform." msgstr "" -#: ../../library/sys.rst:600 +#: ../../library/sys.rst:614 msgid "On macOS, the encoding is ``'utf-8'``." msgstr "" -#: ../../library/sys.rst:602 +#: ../../library/sys.rst:616 msgid "On Unix, the encoding is the locale encoding." msgstr "" -#: ../../library/sys.rst:604 +#: ../../library/sys.rst:618 msgid "" "On Windows, the encoding may be ``'utf-8'`` or ``'mbcs'``, depending on user" " configuration." msgstr "" -#: ../../library/sys.rst:607 +#: ../../library/sys.rst:621 msgid "On Android, the encoding is ``'utf-8'``." msgstr "" -#: ../../library/sys.rst:609 +#: ../../library/sys.rst:623 msgid "On VxWorks, the encoding is ``'utf-8'``." msgstr "" -#: ../../library/sys.rst:611 +#: ../../library/sys.rst:625 msgid ":func:`getfilesystemencoding` result cannot be ``None`` anymore." msgstr "" -#: ../../library/sys.rst:614 +#: ../../library/sys.rst:628 msgid "" "Windows is no longer guaranteed to return ``'mbcs'``. See :pep:`529` and " ":func:`_enablelegacywindowsfsencoding` for more information." msgstr "" -#: ../../library/sys.rst:618 +#: ../../library/sys.rst:632 msgid "Return 'utf-8' in the UTF-8 mode." msgstr "" -#: ../../library/sys.rst:624 +#: ../../library/sys.rst:638 msgid "" "Return the name of the error mode used to convert between Unicode filenames " "and bytes filenames. The encoding name is returned from " ":func:`getfilesystemencoding`." msgstr "" -#: ../../library/sys.rst:635 +#: ../../library/sys.rst:649 msgid "" "Return the reference count of the *object*. The count returned is generally" " one higher than you might expect, because it includes the (temporary) " "reference as an argument to :func:`getrefcount`." msgstr "" -#: ../../library/sys.rst:642 +#: ../../library/sys.rst:656 msgid "" "Return the current value of the recursion limit, the maximum depth of the " "Python interpreter stack. This limit prevents infinite recursion from " @@ -950,46 +972,46 @@ msgid "" ":func:`setrecursionlimit`." msgstr "" -#: ../../library/sys.rst:650 +#: ../../library/sys.rst:664 msgid "" "Return the size of an object in bytes. The object can be any type of object." " All built-in objects will return correct results, but this does not have to" " hold true for third-party extensions as it is implementation specific." msgstr "" -#: ../../library/sys.rst:655 +#: ../../library/sys.rst:669 msgid "" "Only the memory consumption directly attributed to the object is accounted " "for, not the memory consumption of objects it refers to." msgstr "" -#: ../../library/sys.rst:658 +#: ../../library/sys.rst:672 msgid "" "If given, *default* will be returned if the object does not provide means to" " retrieve the size. Otherwise a :exc:`TypeError` will be raised." msgstr "" -#: ../../library/sys.rst:661 +#: ../../library/sys.rst:675 msgid "" ":func:`getsizeof` calls the object's ``__sizeof__`` method and adds an " "additional garbage collector overhead if the object is managed by the " "garbage collector." msgstr "" -#: ../../library/sys.rst:665 +#: ../../library/sys.rst:679 msgid "" "See `recursive sizeof recipe `_" " for an example of using :func:`getsizeof` recursively to find the size of " "containers and all their contents." msgstr "" -#: ../../library/sys.rst:671 +#: ../../library/sys.rst:685 msgid "" "Return the interpreter's \"thread switch interval\"; see " ":func:`setswitchinterval`." msgstr "" -#: ../../library/sys.rst:679 +#: ../../library/sys.rst:693 msgid "" "Return a frame object from the call stack. If optional integer *depth* is " "given, return the frame object that many calls below the top of the stack. " @@ -998,27 +1020,27 @@ msgid "" "stack." msgstr "" -#: ../../library/sys.rst:685 +#: ../../library/sys.rst:699 msgid "" "Raises an :ref:`auditing event ` ``sys._getframe`` with no " "arguments." msgstr "" -#: ../../library/sys.rst:688 +#: ../../library/sys.rst:702 msgid "" "This function should be used for internal and specialized purposes only. It " "is not guaranteed to exist in all implementations of Python." msgstr "" -#: ../../library/sys.rst:698 +#: ../../library/sys.rst:712 msgid "Get the profiler function as set by :func:`setprofile`." msgstr "" -#: ../../library/sys.rst:707 +#: ../../library/sys.rst:721 msgid "Get the trace function as set by :func:`settrace`." msgstr "" -#: ../../library/sys.rst:711 +#: ../../library/sys.rst:725 msgid "" "The :func:`gettrace` function is intended only for implementing debuggers, " "profilers, coverage tools and the like. Its behavior is part of the " @@ -1026,7 +1048,7 @@ msgid "" "thus may not be available in all Python implementations." msgstr "" -#: ../../library/sys.rst:719 +#: ../../library/sys.rst:733 msgid "" "Return a named tuple describing the Windows version currently running. The " "named elements are *major*, *minor*, *build*, *platform*, *service_pack*, " @@ -1038,54 +1060,54 @@ msgid "" "only the first 5 elements are retrievable by indexing." msgstr "" -#: ../../library/sys.rst:730 +#: ../../library/sys.rst:744 msgid "*platform* will be :const:`2 (VER_PLATFORM_WIN32_NT)`." msgstr "" -#: ../../library/sys.rst:732 +#: ../../library/sys.rst:746 msgid "*product_type* may be one of the following values:" msgstr "" -#: ../../library/sys.rst:735 +#: ../../library/sys.rst:749 msgid "Constant" msgstr "Konstanta" -#: ../../library/sys.rst:735 +#: ../../library/sys.rst:749 msgid "Meaning" msgstr "Artinya" -#: ../../library/sys.rst:737 +#: ../../library/sys.rst:751 msgid ":const:`1 (VER_NT_WORKSTATION)`" msgstr ":const:`1 (VER_NT_WORKSTATION)`" -#: ../../library/sys.rst:737 +#: ../../library/sys.rst:751 msgid "The system is a workstation." msgstr "" -#: ../../library/sys.rst:739 +#: ../../library/sys.rst:753 msgid ":const:`2 (VER_NT_DOMAIN_CONTROLLER)`" msgstr ":const:`2 (VER_NT_DOMAIN_CONTROLLER)`" -#: ../../library/sys.rst:739 +#: ../../library/sys.rst:753 msgid "The system is a domain controller." msgstr "" -#: ../../library/sys.rst:742 +#: ../../library/sys.rst:756 msgid ":const:`3 (VER_NT_SERVER)`" msgstr ":const:`3 (VER_NT_SERVER)`" -#: ../../library/sys.rst:742 +#: ../../library/sys.rst:756 msgid "The system is a server, but not a domain controller." msgstr "" -#: ../../library/sys.rst:746 +#: ../../library/sys.rst:760 msgid "" "This function wraps the Win32 :c:func:`GetVersionEx` function; see the " "Microsoft documentation on :c:func:`OSVERSIONINFOEX` for more information " "about these fields." msgstr "" -#: ../../library/sys.rst:750 +#: ../../library/sys.rst:764 msgid "" "*platform_version* returns the accurate major version, minor version and " "build number of the current operating system, rather than the version that " @@ -1093,17 +1115,17 @@ msgid "" "than for feature detection." msgstr "" -#: ../../library/sys.rst:757 +#: ../../library/sys.rst:771 msgid "" "Changed to a named tuple and added *service_pack_minor*, " "*service_pack_major*, *suite_mask*, and *product_type*." msgstr "" -#: ../../library/sys.rst:761 +#: ../../library/sys.rst:775 msgid "Added *platform_version*" msgstr "" -#: ../../library/sys.rst:767 +#: ../../library/sys.rst:781 msgid "" "Returns an *asyncgen_hooks* object, which is similar to a " ":class:`~collections.namedtuple` of the form `(firstiter, finalizer)`, where" @@ -1113,103 +1135,103 @@ msgid "" "loop." msgstr "" -#: ../../library/sys.rst:774 +#: ../../library/sys.rst:788 msgid "See :pep:`525` for more details." msgstr "" -#: ../../library/sys.rst:778 ../../library/sys.rst:1379 +#: ../../library/sys.rst:792 ../../library/sys.rst:1393 msgid "" "This function has been added on a provisional basis (see :pep:`411` for " "details.)" msgstr "" -#: ../../library/sys.rst:784 +#: ../../library/sys.rst:798 msgid "" "Get the current coroutine origin tracking depth, as set by " ":func:`set_coroutine_origin_tracking_depth`." msgstr "" -#: ../../library/sys.rst:790 ../../library/sys.rst:1400 +#: ../../library/sys.rst:804 ../../library/sys.rst:1414 msgid "" "This function has been added on a provisional basis (see :pep:`411` for " "details.) Use it only for debugging purposes." msgstr "" -#: ../../library/sys.rst:796 +#: ../../library/sys.rst:810 msgid "" "A :term:`named tuple` giving parameters of the numeric hash implementation." " For more details about hashing of numeric types, see :ref:`numeric-hash`." msgstr "" -#: ../../library/sys.rst:803 +#: ../../library/sys.rst:817 msgid ":const:`width`" msgstr ":const:`width`" -#: ../../library/sys.rst:803 +#: ../../library/sys.rst:817 msgid "width in bits used for hash values" msgstr "" -#: ../../library/sys.rst:805 +#: ../../library/sys.rst:819 msgid ":const:`modulus`" msgstr ":const:`modulus`" -#: ../../library/sys.rst:805 +#: ../../library/sys.rst:819 msgid "prime modulus P used for numeric hash scheme" msgstr "" -#: ../../library/sys.rst:807 +#: ../../library/sys.rst:821 msgid ":const:`inf`" msgstr ":const:`inf`" -#: ../../library/sys.rst:807 +#: ../../library/sys.rst:821 msgid "hash value returned for a positive infinity" msgstr "" -#: ../../library/sys.rst:809 +#: ../../library/sys.rst:823 msgid ":const:`nan`" msgstr ":const:`nan`" -#: ../../library/sys.rst:809 +#: ../../library/sys.rst:823 msgid "hash value returned for a nan" msgstr "" -#: ../../library/sys.rst:811 +#: ../../library/sys.rst:825 msgid ":const:`imag`" msgstr ":const:`imag`" -#: ../../library/sys.rst:811 +#: ../../library/sys.rst:825 msgid "multiplier used for the imaginary part of a complex number" msgstr "" -#: ../../library/sys.rst:814 +#: ../../library/sys.rst:828 msgid ":const:`algorithm`" msgstr ":const:`algorithm`" -#: ../../library/sys.rst:814 +#: ../../library/sys.rst:828 msgid "name of the algorithm for hashing of str, bytes, and memoryview" msgstr "" -#: ../../library/sys.rst:817 +#: ../../library/sys.rst:831 msgid ":const:`hash_bits`" msgstr ":const:`hash_bits`" -#: ../../library/sys.rst:817 +#: ../../library/sys.rst:831 msgid "internal output size of the hash algorithm" msgstr "" -#: ../../library/sys.rst:819 +#: ../../library/sys.rst:833 msgid ":const:`seed_bits`" msgstr ":const:`seed_bits`" -#: ../../library/sys.rst:819 +#: ../../library/sys.rst:833 msgid "size of the seed key of the hash algorithm" msgstr "" -#: ../../library/sys.rst:825 +#: ../../library/sys.rst:839 msgid "Added *algorithm*, *hash_bits* and *seed_bits*" msgstr "" -#: ../../library/sys.rst:831 +#: ../../library/sys.rst:845 msgid "" "The version number encoded as a single integer. This is guaranteed to " "increase with each version, including proper support for non-production " @@ -1217,7 +1239,7 @@ msgid "" "version 1.5.2, use::" msgstr "" -#: ../../library/sys.rst:842 +#: ../../library/sys.rst:856 msgid "" "This is called ``hexversion`` since it only really looks meaningful when " "viewed as the result of passing it to the built-in :func:`hex` function. " @@ -1225,25 +1247,25 @@ msgid "" "human-friendly encoding of the same information." msgstr "" -#: ../../library/sys.rst:847 +#: ../../library/sys.rst:861 msgid "More details of ``hexversion`` can be found at :ref:`apiabiversion`." msgstr "" -#: ../../library/sys.rst:852 +#: ../../library/sys.rst:866 msgid "" "An object containing information about the implementation of the currently " "running Python interpreter. The following attributes are required to exist " "in all Python implementations." msgstr "" -#: ../../library/sys.rst:856 +#: ../../library/sys.rst:870 msgid "" "*name* is the implementation's identifier, e.g. ``'cpython'``. The actual " "string is defined by the Python implementation, but it is guaranteed to be " "lower case." msgstr "" -#: ../../library/sys.rst:860 +#: ../../library/sys.rst:874 msgid "" "*version* is a named tuple, in the same format as :data:`sys.version_info`." " It represents the version of the Python *implementation*. This has a " @@ -1255,13 +1277,13 @@ msgid "" "the same value, since it is the reference implementation." msgstr "" -#: ../../library/sys.rst:870 +#: ../../library/sys.rst:884 msgid "" "*hexversion* is the implementation version in hexadecimal format, like " ":data:`sys.hexversion`." msgstr "" -#: ../../library/sys.rst:873 +#: ../../library/sys.rst:887 msgid "" "*cache_tag* is the tag used by the import machinery in the filenames of " "cached modules. By convention, it would be a composite of the " @@ -1270,7 +1292,7 @@ msgid "" "is set to ``None``, it indicates that module caching should be disabled." msgstr "" -#: ../../library/sys.rst:880 +#: ../../library/sys.rst:894 msgid "" ":data:`sys.implementation` may contain additional attributes specific to the" " Python implementation. These non-standard attributes must start with an " @@ -1280,45 +1302,45 @@ msgid "" " versions, however.) See :pep:`421` for more information." msgstr "" -#: ../../library/sys.rst:891 +#: ../../library/sys.rst:905 msgid "" "The addition of new required attributes must go through the normal PEP " "process. See :pep:`421` for more information." msgstr "" -#: ../../library/sys.rst:896 +#: ../../library/sys.rst:910 msgid "" "A :term:`named tuple` that holds information about Python's internal " "representation of integers. The attributes are read only." msgstr "" -#: ../../library/sys.rst:902 ../../library/sys.rst:1503 +#: ../../library/sys.rst:916 ../../library/sys.rst:1517 msgid "Attribute" msgstr "Atribut" -#: ../../library/sys.rst:902 ../../library/sys.rst:1503 +#: ../../library/sys.rst:916 ../../library/sys.rst:1517 msgid "Explanation" msgstr "" -#: ../../library/sys.rst:904 +#: ../../library/sys.rst:918 msgid ":const:`bits_per_digit`" msgstr ":const:`bits_per_digit`" -#: ../../library/sys.rst:904 +#: ../../library/sys.rst:918 msgid "" "number of bits held in each digit. Python integers are stored internally in" " base ``2**int_info.bits_per_digit``" msgstr "" -#: ../../library/sys.rst:908 +#: ../../library/sys.rst:922 msgid ":const:`sizeof_digit`" msgstr ":const:`sizeof_digit`" -#: ../../library/sys.rst:908 +#: ../../library/sys.rst:922 msgid "size in bytes of the C type used to represent a digit" msgstr "" -#: ../../library/sys.rst:917 +#: ../../library/sys.rst:931 msgid "" "When this attribute exists, its value is automatically called (with no " "arguments) when the interpreter is launched in :ref:`interactive mode ` ``cpython.run_interactivehook`` " "with the hook object as the argument when the hook is called on startup." msgstr "" -#: ../../library/sys.rst:934 +#: ../../library/sys.rst:948 msgid "" "Enter *string* in the table of \"interned\" strings and return the interned " "string -- which is *string* itself or a copy. Interning strings is useful to" @@ -1351,19 +1373,19 @@ msgid "" "attributes have interned keys." msgstr "" -#: ../../library/sys.rst:942 +#: ../../library/sys.rst:956 msgid "" "Interned strings are not immortal; you must keep a reference to the return " "value of :func:`intern` around to benefit from it." msgstr "" -#: ../../library/sys.rst:948 +#: ../../library/sys.rst:962 msgid "" "Return :const:`True` if the Python interpreter is :term:`shutting down " "`, :const:`False` otherwise." msgstr "" -#: ../../library/sys.rst:958 +#: ../../library/sys.rst:972 msgid "" "These three variables are not always defined; they are set when an exception" " is not handled and the interpreter prints an error message and a stack " @@ -1374,33 +1396,33 @@ msgid "" " information.)" msgstr "" -#: ../../library/sys.rst:966 +#: ../../library/sys.rst:980 msgid "" "The meaning of the variables is the same as that of the return values from " ":func:`exc_info` above." msgstr "" -#: ../../library/sys.rst:972 +#: ../../library/sys.rst:986 msgid "" "An integer giving the maximum value a variable of type :c:type:`Py_ssize_t` " "can take. It's usually ``2**31 - 1`` on a 32-bit platform and ``2**63 - 1``" " on a 64-bit platform." msgstr "" -#: ../../library/sys.rst:979 +#: ../../library/sys.rst:993 msgid "" "An integer giving the value of the largest Unicode code point, i.e. " "``1114111`` (``0x10FFFF`` in hexadecimal)." msgstr "" -#: ../../library/sys.rst:982 +#: ../../library/sys.rst:996 msgid "" "Before :pep:`393`, ``sys.maxunicode`` used to be either ``0xFFFF`` or " "``0x10FFFF``, depending on the configuration option that specified whether " "Unicode characters were stored as UCS-2 or UCS-4." msgstr "" -#: ../../library/sys.rst:990 +#: ../../library/sys.rst:1004 msgid "" "A list of :term:`meta path finder` objects that have their " ":meth:`~importlib.abc.MetaPathFinder.find_spec` methods called to see if one" @@ -1412,27 +1434,27 @@ msgid "" "returns a :term:`module spec`, or ``None`` if the module cannot be found." msgstr "" -#: ../../library/sys.rst:1002 +#: ../../library/sys.rst:1016 msgid ":class:`importlib.abc.MetaPathFinder`" msgstr "" -#: ../../library/sys.rst:1002 +#: ../../library/sys.rst:1016 msgid "" "The abstract base class defining the interface of finder objects on " ":data:`meta_path`." msgstr "" -#: ../../library/sys.rst:1006 +#: ../../library/sys.rst:1020 msgid ":class:`importlib.machinery.ModuleSpec`" msgstr "" -#: ../../library/sys.rst:1005 +#: ../../library/sys.rst:1019 msgid "" "The concrete class which :meth:`~importlib.abc.MetaPathFinder.find_spec` " "should return instances of." msgstr "" -#: ../../library/sys.rst:1011 +#: ../../library/sys.rst:1025 msgid "" ":term:`Module specs ` were introduced in Python 3.4, by " ":pep:`451`. Earlier versions of Python looked for a method called " @@ -1441,7 +1463,7 @@ msgid "" ":meth:`~importlib.abc.MetaPathFinder.find_spec` method." msgstr "" -#: ../../library/sys.rst:1019 +#: ../../library/sys.rst:1033 msgid "" "This is a dictionary that maps module names to modules which have already " "been loaded. This can be manipulated to force reloading of modules and " @@ -1450,14 +1472,14 @@ msgid "" "to fail." msgstr "" -#: ../../library/sys.rst:1029 +#: ../../library/sys.rst:1043 msgid "" "A list of strings that specifies the search path for modules. Initialized " "from the environment variable :envvar:`PYTHONPATH`, plus an installation-" "dependent default." msgstr "" -#: ../../library/sys.rst:1033 +#: ../../library/sys.rst:1047 msgid "" "As initialized upon program startup, the first item of this list, " "``path[0]``, is the directory containing the script that was used to invoke " @@ -1469,31 +1491,31 @@ msgid "" ":envvar:`PYTHONPATH`." msgstr "" -#: ../../library/sys.rst:1041 +#: ../../library/sys.rst:1055 msgid "" "A program is free to modify this list for its own purposes. Only strings " "and bytes should be added to :data:`sys.path`; all other data types are " "ignored during import." msgstr "" -#: ../../library/sys.rst:1047 +#: ../../library/sys.rst:1061 msgid "" "Module :mod:`site` This describes how to use .pth files to extend " ":data:`sys.path`." msgstr "" -#: ../../library/sys.rst:1053 +#: ../../library/sys.rst:1067 msgid "" "A list of callables that take a path argument to try to create a " ":term:`finder` for the path. If a finder can be created, it is to be " "returned by the callable, else raise :exc:`ImportError`." msgstr "" -#: ../../library/sys.rst:1057 ../../library/sys.rst:1068 +#: ../../library/sys.rst:1071 ../../library/sys.rst:1082 msgid "Originally specified in :pep:`302`." msgstr "" -#: ../../library/sys.rst:1062 +#: ../../library/sys.rst:1076 msgid "" "A dictionary acting as a cache for :term:`finder` objects. The keys are " "paths that have been passed to :data:`sys.path_hooks` and the values are the" @@ -1501,19 +1523,19 @@ msgid "" " is found on :data:`sys.path_hooks` then ``None`` is stored." msgstr "" -#: ../../library/sys.rst:1070 +#: ../../library/sys.rst:1084 msgid "" "``None`` is stored instead of :class:`imp.NullImporter` when no finder is " "found." msgstr "" -#: ../../library/sys.rst:1077 +#: ../../library/sys.rst:1091 msgid "" "This string contains a platform identifier that can be used to append " "platform-specific components to :data:`sys.path`, for instance." msgstr "" -#: ../../library/sys.rst:1080 +#: ../../library/sys.rst:1094 msgid "" "For Unix systems, except on Linux and AIX, this is the lowercased OS name as" " returned by ``uname -s`` with the first part of the version as returned by " @@ -1522,59 +1544,59 @@ msgid "" "version, it is therefore recommended to use the following idiom::" msgstr "" -#: ../../library/sys.rst:1093 +#: ../../library/sys.rst:1107 msgid "For other systems, the values are:" msgstr "" -#: ../../library/sys.rst:1096 +#: ../../library/sys.rst:1110 msgid "System" msgstr "" -#: ../../library/sys.rst:1096 +#: ../../library/sys.rst:1110 msgid "``platform`` value" msgstr "" -#: ../../library/sys.rst:1098 +#: ../../library/sys.rst:1112 msgid "AIX" msgstr "" -#: ../../library/sys.rst:1098 +#: ../../library/sys.rst:1112 msgid "``'aix'``" msgstr "" -#: ../../library/sys.rst:1099 +#: ../../library/sys.rst:1113 msgid "Linux" msgstr "" -#: ../../library/sys.rst:1099 +#: ../../library/sys.rst:1113 msgid "``'linux'``" msgstr "" -#: ../../library/sys.rst:1100 +#: ../../library/sys.rst:1114 msgid "Windows" msgstr "Windows" -#: ../../library/sys.rst:1100 +#: ../../library/sys.rst:1114 msgid "``'win32'``" msgstr "" -#: ../../library/sys.rst:1101 +#: ../../library/sys.rst:1115 msgid "Windows/Cygwin" msgstr "" -#: ../../library/sys.rst:1101 +#: ../../library/sys.rst:1115 msgid "``'cygwin'``" msgstr "" -#: ../../library/sys.rst:1102 +#: ../../library/sys.rst:1116 msgid "macOS" msgstr "macOS" -#: ../../library/sys.rst:1102 +#: ../../library/sys.rst:1116 msgid "``'darwin'``" msgstr "" -#: ../../library/sys.rst:1105 +#: ../../library/sys.rst:1119 msgid "" "On Linux, :attr:`sys.platform` doesn't contain the major version anymore. It" " is always ``'linux'``, instead of ``'linux2'`` or ``'linux3'``. Since " @@ -1582,7 +1604,7 @@ msgid "" "always use the ``startswith`` idiom presented above." msgstr "" -#: ../../library/sys.rst:1111 +#: ../../library/sys.rst:1125 msgid "" "On AIX, :attr:`sys.platform` doesn't contain the major version anymore. It " "is always ``'aix'``, instead of ``'aix5'`` or ``'aix7'``. Since older " @@ -1590,19 +1612,19 @@ msgid "" "the ``startswith`` idiom presented above." msgstr "" -#: ../../library/sys.rst:1119 +#: ../../library/sys.rst:1133 msgid "" ":attr:`os.name` has a coarser granularity. :func:`os.uname` gives system-" "dependent version information." msgstr "" -#: ../../library/sys.rst:1122 +#: ../../library/sys.rst:1136 msgid "" "The :mod:`platform` module provides detailed checks for the system's " "identity." msgstr "" -#: ../../library/sys.rst:1128 +#: ../../library/sys.rst:1142 msgid "" "A string giving the site-specific directory prefix where the platform " "independent Python files are installed; by default, this is the string " @@ -1615,14 +1637,14 @@ msgid "" "Python, for example ``3.2``." msgstr "" -#: ../../library/sys.rst:1137 +#: ../../library/sys.rst:1151 msgid "" "If a :ref:`virtual environment ` is in effect, this value will be " "changed in ``site.py`` to point to the virtual environment. The value for " "the Python installation will still be available, via :data:`base_prefix`." msgstr "" -#: ../../library/sys.rst:1152 +#: ../../library/sys.rst:1166 msgid "" "Strings specifying the primary and secondary prompt of the interpreter. " "These are only defined if the interpreter is in interactive mode. Their " @@ -1632,7 +1654,7 @@ msgid "" " used to implement a dynamic prompt." msgstr "" -#: ../../library/sys.rst:1162 +#: ../../library/sys.rst:1176 msgid "" "Set the interpreter's \"check interval\". This integer value determines how" " often the interpreter checks for periodic things such as thread switches " @@ -1643,14 +1665,14 @@ msgid "" " as overhead." msgstr "" -#: ../../library/sys.rst:1169 +#: ../../library/sys.rst:1183 msgid "" "This function doesn't have an effect anymore, as the internal logic for " "thread switching and asynchronous tasks has been rewritten. Use " ":func:`setswitchinterval` instead." msgstr "" -#: ../../library/sys.rst:1177 +#: ../../library/sys.rst:1191 msgid "" "Set the flags used by the interpreter for :c:func:`dlopen` calls, such as " "when the interpreter loads extension modules. Among other things, this will" @@ -1661,7 +1683,7 @@ msgid "" ":data:`os.RTLD_LAZY`)." msgstr "" -#: ../../library/sys.rst:1193 +#: ../../library/sys.rst:1207 msgid "" "Set the system's profile function, which allows you to implement a Python " "source code profiler in Python. See chapter :ref:`profile` for more " @@ -1676,7 +1698,7 @@ msgid "" " in the profile function will cause itself unset." msgstr "" -#: ../../library/sys.rst:1204 +#: ../../library/sys.rst:1218 msgid "" "Profile functions should have three arguments: *frame*, *event*, and *arg*. " "*frame* is the current stack frame. *event* is a string: ``'call'``, " @@ -1684,71 +1706,71 @@ msgid "" "depends on the event type." msgstr "" -#: ../../library/sys.rst:1210 +#: ../../library/sys.rst:1224 msgid "" "Raises an :ref:`auditing event ` ``sys.setprofile`` with no " "arguments." msgstr "" -#: ../../library/sys.rst:1211 ../../library/sys.rst:1292 +#: ../../library/sys.rst:1225 ../../library/sys.rst:1306 msgid "The events have the following meaning:" msgstr "" -#: ../../library/sys.rst:1215 ../../library/sys.rst:1297 +#: ../../library/sys.rst:1229 ../../library/sys.rst:1311 msgid "``'call'``" msgstr "" -#: ../../library/sys.rst:1214 +#: ../../library/sys.rst:1228 msgid "" "A function is called (or some other code block entered). The profile " "function is called; *arg* is ``None``." msgstr "" -#: ../../library/sys.rst:1220 ../../library/sys.rst:1312 +#: ../../library/sys.rst:1234 ../../library/sys.rst:1326 msgid "``'return'``" msgstr "" -#: ../../library/sys.rst:1218 +#: ../../library/sys.rst:1232 msgid "" "A function (or other code block) is about to return. The profile function " "is called; *arg* is the value that will be returned, or ``None`` if the " "event is caused by an exception being raised." msgstr "" -#: ../../library/sys.rst:1224 +#: ../../library/sys.rst:1238 msgid "``'c_call'``" msgstr "" -#: ../../library/sys.rst:1223 +#: ../../library/sys.rst:1237 msgid "" "A C function is about to be called. This may be an extension function or a " "built-in. *arg* is the C function object." msgstr "" -#: ../../library/sys.rst:1227 +#: ../../library/sys.rst:1241 msgid "``'c_return'``" msgstr "" -#: ../../library/sys.rst:1227 +#: ../../library/sys.rst:1241 msgid "A C function has returned. *arg* is the C function object." msgstr "" -#: ../../library/sys.rst:1229 +#: ../../library/sys.rst:1243 msgid "``'c_exception'``" msgstr "" -#: ../../library/sys.rst:1230 +#: ../../library/sys.rst:1244 msgid "A C function has raised an exception. *arg* is the C function object." msgstr "" -#: ../../library/sys.rst:1234 +#: ../../library/sys.rst:1248 msgid "" "Set the maximum depth of the Python interpreter stack to *limit*. This " "limit prevents infinite recursion from causing an overflow of the C stack " "and crashing Python." msgstr "" -#: ../../library/sys.rst:1238 +#: ../../library/sys.rst:1252 msgid "" "The highest possible limit is platform-dependent. A user may need to set " "the limit higher when they have a program that requires deep recursion and a" @@ -1756,19 +1778,19 @@ msgid "" "because a too-high limit can lead to a crash." msgstr "" -#: ../../library/sys.rst:1243 +#: ../../library/sys.rst:1257 msgid "" "If the new limit is too low at the current recursion depth, a " ":exc:`RecursionError` exception is raised." msgstr "" -#: ../../library/sys.rst:1246 +#: ../../library/sys.rst:1260 msgid "" "A :exc:`RecursionError` exception is now raised if the new limit is too low " "at the current recursion depth." msgstr "" -#: ../../library/sys.rst:1253 +#: ../../library/sys.rst:1267 msgid "" "Set the interpreter's thread switch interval (in seconds). This floating-" "point value determines the ideal duration of the \"timeslices\" allocated to" @@ -1779,7 +1801,7 @@ msgid "" "scheduler." msgstr "" -#: ../../library/sys.rst:1270 +#: ../../library/sys.rst:1284 msgid "" "Set the system's trace function, which allows you to implement a Python " "source code debugger in Python. The function is thread-specific; for a " @@ -1788,7 +1810,7 @@ msgid "" ":func:`threading.settrace`." msgstr "" -#: ../../library/sys.rst:1275 +#: ../../library/sys.rst:1289 msgid "" "Trace functions should have three arguments: *frame*, *event*, and *arg*. " "*frame* is the current stack frame. *event* is a string: ``'call'``, " @@ -1796,7 +1818,7 @@ msgid "" " the event type." msgstr "" -#: ../../library/sys.rst:1280 +#: ../../library/sys.rst:1294 msgid "" "The trace function is invoked (with *event* set to ``'call'``) whenever a " "new local scope is entered; it should return a reference to a local trace " @@ -1804,31 +1826,31 @@ msgid "" " traced." msgstr "" -#: ../../library/sys.rst:1285 +#: ../../library/sys.rst:1299 msgid "" "The local trace function should return a reference to itself (or to another " "function for further tracing in that scope), or ``None`` to turn off tracing" " in that scope." msgstr "" -#: ../../library/sys.rst:1289 +#: ../../library/sys.rst:1303 msgid "" "If there is any error occurred in the trace function, it will be unset, just" " like ``settrace(None)`` is called." msgstr "" -#: ../../library/sys.rst:1295 +#: ../../library/sys.rst:1309 msgid "" "A function is called (or some other code block entered). The global trace " "function is called; *arg* is ``None``; the return value specifies the local " "trace function." msgstr "" -#: ../../library/sys.rst:1306 +#: ../../library/sys.rst:1320 msgid "``'line'``" msgstr "" -#: ../../library/sys.rst:1300 +#: ../../library/sys.rst:1314 msgid "" "The interpreter is about to execute a new line of code or re-execute the " "condition of a loop. The local trace function is called; *arg* is ``None``;" @@ -1838,7 +1860,7 @@ msgid "" ":attr:`f_trace_lines` to :const:`False` on that frame." msgstr "" -#: ../../library/sys.rst:1309 +#: ../../library/sys.rst:1323 msgid "" "A function (or other code block) is about to return. The local trace " "function is called; *arg* is the value that will be returned, or ``None`` if" @@ -1846,22 +1868,22 @@ msgid "" "return value is ignored." msgstr "" -#: ../../library/sys.rst:1317 +#: ../../library/sys.rst:1331 msgid "``'exception'``" msgstr "" -#: ../../library/sys.rst:1315 +#: ../../library/sys.rst:1329 msgid "" "An exception has occurred. The local trace function is called; *arg* is a " "tuple ``(exception, value, traceback)``; the return value specifies the new " "local trace function." msgstr "" -#: ../../library/sys.rst:1325 +#: ../../library/sys.rst:1339 msgid "``'opcode'``" msgstr "" -#: ../../library/sys.rst:1320 +#: ../../library/sys.rst:1334 msgid "" "The interpreter is about to execute a new opcode (see :mod:`dis` for opcode " "details). The local trace function is called; *arg* is ``None``; the return" @@ -1870,13 +1892,13 @@ msgid "" ":attr:`f_trace_opcodes` to :const:`True` on the frame." msgstr "" -#: ../../library/sys.rst:1327 +#: ../../library/sys.rst:1341 msgid "" "Note that as an exception is propagated down the chain of callers, an " "``'exception'`` event is generated at each level." msgstr "" -#: ../../library/sys.rst:1330 +#: ../../library/sys.rst:1344 msgid "" "For more fine-grained usage, it's possible to set a trace function by " "assigning ``frame.f_trace = tracefunc`` explicitly, rather than relying on " @@ -1890,17 +1912,17 @@ msgid "" "immediately on each frame)." msgstr "" -#: ../../library/sys.rst:1341 +#: ../../library/sys.rst:1355 msgid "For more information on code and frame objects, refer to :ref:`types`." msgstr "" -#: ../../library/sys.rst:1344 +#: ../../library/sys.rst:1358 msgid "" "Raises an :ref:`auditing event ` ``sys.settrace`` with no " "arguments." msgstr "" -#: ../../library/sys.rst:1347 +#: ../../library/sys.rst:1361 msgid "" "The :func:`settrace` function is intended only for implementing debuggers, " "profilers, coverage tools and the like. Its behavior is part of the " @@ -1908,13 +1930,13 @@ msgid "" "thus may not be available in all Python implementations." msgstr "" -#: ../../library/sys.rst:1354 +#: ../../library/sys.rst:1368 msgid "" "``'opcode'`` event type added; :attr:`f_trace_lines` and " ":attr:`f_trace_opcodes` attributes added to frames" msgstr "" -#: ../../library/sys.rst:1359 +#: ../../library/sys.rst:1373 msgid "" "Accepts two optional keyword arguments which are callables that accept an " ":term:`asynchronous generator iterator` as an argument. The *firstiter* " @@ -1923,32 +1945,32 @@ msgid "" " about to be garbage collected." msgstr "" -#: ../../library/sys.rst:1366 +#: ../../library/sys.rst:1380 msgid "" "Raises an :ref:`auditing event ` " "``sys.set_asyncgen_hooks_firstiter`` with no arguments." msgstr "" -#: ../../library/sys.rst:1368 +#: ../../library/sys.rst:1382 msgid "" "Raises an :ref:`auditing event ` " "``sys.set_asyncgen_hooks_finalizer`` with no arguments." msgstr "" -#: ../../library/sys.rst:1369 +#: ../../library/sys.rst:1383 msgid "" "Two auditing events are raised because the underlying API consists of two " "calls, each of which must raise its own event." msgstr "" -#: ../../library/sys.rst:1372 +#: ../../library/sys.rst:1386 msgid "" "See :pep:`525` for more details, and for a reference example of a " "*finalizer* method see the implementation of " "``asyncio.Loop.shutdown_asyncgens`` in :source:`Lib/asyncio/base_events.py`" msgstr "" -#: ../../library/sys.rst:1384 +#: ../../library/sys.rst:1398 msgid "" "Allows enabling or disabling coroutine origin tracking. When enabled, the " "``cr_origin`` attribute on coroutine objects will contain a tuple of " @@ -1957,87 +1979,87 @@ msgid "" "disabled, ``cr_origin`` will be None." msgstr "" -#: ../../library/sys.rst:1391 +#: ../../library/sys.rst:1405 msgid "" "To enable, pass a *depth* value greater than zero; this sets the number of " "frames whose information will be captured. To disable, pass set *depth* to " "zero." msgstr "" -#: ../../library/sys.rst:1395 +#: ../../library/sys.rst:1409 msgid "This setting is thread-specific." msgstr "" -#: ../../library/sys.rst:1405 +#: ../../library/sys.rst:1419 msgid "" "Changes the default filesystem encoding and errors mode to 'mbcs' and " "'replace' respectively, for consistency with versions of Python prior to " "3.6." msgstr "" -#: ../../library/sys.rst:1408 +#: ../../library/sys.rst:1422 msgid "" "This is equivalent to defining the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` " "environment variable before launching Python." msgstr "" -#: ../../library/sys.rst:1413 +#: ../../library/sys.rst:1427 msgid "See :pep:`529` for more details." msgstr "Lihat :pep:`529` untuk lebih detail." -#: ../../library/sys.rst:1420 +#: ../../library/sys.rst:1434 msgid "" ":term:`File objects ` used by the interpreter for standard " "input, output and errors:" msgstr "" -#: ../../library/sys.rst:1423 +#: ../../library/sys.rst:1437 msgid "" "``stdin`` is used for all interactive input (including calls to " ":func:`input`);" msgstr "" -#: ../../library/sys.rst:1425 +#: ../../library/sys.rst:1439 msgid "" "``stdout`` is used for the output of :func:`print` and :term:`expression` " "statements and for the prompts of :func:`input`;" msgstr "" -#: ../../library/sys.rst:1427 +#: ../../library/sys.rst:1441 msgid "The interpreter's own prompts and its error messages go to ``stderr``." msgstr "" -#: ../../library/sys.rst:1429 +#: ../../library/sys.rst:1443 msgid "" "These streams are regular :term:`text files ` like those returned" " by the :func:`open` function. Their parameters are chosen as follows:" msgstr "" -#: ../../library/sys.rst:1433 +#: ../../library/sys.rst:1447 msgid "" "The character encoding is platform-dependent. Non-Windows platforms use the" " locale encoding (see :meth:`locale.getpreferredencoding()`)." msgstr "" -#: ../../library/sys.rst:1437 +#: ../../library/sys.rst:1451 msgid "" "On Windows, UTF-8 is used for the console device. Non-character devices " "such as disk files and pipes use the system locale encoding (i.e. the ANSI " -"codepage). Non-console character devices such as NUL (i.e. where isatty() " -"returns True) use the value of the console input and output codepages at " -"startup, respectively for stdin and stdout/stderr. This defaults to the " -"system locale encoding if the process is not initially attached to a " -"console." +"codepage). Non-console character devices such as NUL (i.e. where " +"``isatty()`` returns ``True``) use the value of the console input and output" +" codepages at startup, respectively for stdin and stdout/stderr. This " +"defaults to the system locale encoding if the process is not initially " +"attached to a console." msgstr "" -#: ../../library/sys.rst:1446 +#: ../../library/sys.rst:1460 msgid "" "The special behaviour of the console can be overridden by setting the " "environment variable PYTHONLEGACYWINDOWSSTDIO before starting Python. In " "that case, the console codepages are used as for any other character device." msgstr "" -#: ../../library/sys.rst:1451 +#: ../../library/sys.rst:1465 msgid "" "Under all platforms, you can override the character encoding by setting the " ":envvar:`PYTHONIOENCODING` environment variable before starting Python or by" @@ -2047,21 +2069,21 @@ msgid "" "set." msgstr "" -#: ../../library/sys.rst:1458 +#: ../../library/sys.rst:1472 msgid "" "When interactive, ``stdout`` and ``stderr`` streams are line-buffered. " "Otherwise, they are block-buffered like regular text files. You can " "override this value with the :option:`-u` command-line option." msgstr "" -#: ../../library/sys.rst:1464 +#: ../../library/sys.rst:1478 msgid "" "To write or read binary data from/to the standard streams, use the " "underlying binary :data:`~io.TextIOBase.buffer` object. For example, to " "write bytes to :data:`stdout`, use ``sys.stdout.buffer.write(b'abc')``." msgstr "" -#: ../../library/sys.rst:1468 +#: ../../library/sys.rst:1482 msgid "" "However, if you are writing a library (and do not control in which context " "its code will be executed), be aware that the standard streams may be " @@ -2069,7 +2091,7 @@ msgid "" "support the :attr:`~io.BufferedIOBase.buffer` attribute." msgstr "" -#: ../../library/sys.rst:1478 +#: ../../library/sys.rst:1492 msgid "" "These objects contain the original values of ``stdin``, ``stderr`` and " "``stdout`` at the start of the program. They are used during finalization, " @@ -2077,7 +2099,7 @@ msgid "" "``sys.std*`` object has been redirected." msgstr "" -#: ../../library/sys.rst:1483 +#: ../../library/sys.rst:1497 msgid "" "It can also be used to restore the actual files to known working file " "objects in case they have been overwritten with a broken object. However, " @@ -2085,7 +2107,7 @@ msgid "" "before replacing it, and restore the saved object." msgstr "" -#: ../../library/sys.rst:1489 +#: ../../library/sys.rst:1503 msgid "" "Under some conditions ``stdin``, ``stdout`` and ``stderr`` as well as the " "original values ``__stdin__``, ``__stdout__`` and ``__stderr__`` can be " @@ -2093,62 +2115,62 @@ msgid "" "to a console and Python apps started with :program:`pythonw`." msgstr "" -#: ../../library/sys.rst:1497 +#: ../../library/sys.rst:1511 msgid "" "A :term:`named tuple` holding information about the thread implementation." msgstr "" -#: ../../library/sys.rst:1505 +#: ../../library/sys.rst:1519 msgid ":const:`name`" msgstr ":const:`name`" -#: ../../library/sys.rst:1505 +#: ../../library/sys.rst:1519 msgid "Name of the thread implementation:" msgstr "" -#: ../../library/sys.rst:1507 +#: ../../library/sys.rst:1521 msgid "``'nt'``: Windows threads" msgstr "" -#: ../../library/sys.rst:1508 +#: ../../library/sys.rst:1522 msgid "``'pthread'``: POSIX threads" msgstr "" -#: ../../library/sys.rst:1509 +#: ../../library/sys.rst:1523 msgid "``'solaris'``: Solaris threads" msgstr "" -#: ../../library/sys.rst:1511 +#: ../../library/sys.rst:1525 msgid ":const:`lock`" msgstr ":const:`lock`" -#: ../../library/sys.rst:1511 +#: ../../library/sys.rst:1525 msgid "Name of the lock implementation:" msgstr "" -#: ../../library/sys.rst:1513 +#: ../../library/sys.rst:1527 msgid "``'semaphore'``: a lock uses a semaphore" msgstr "" -#: ../../library/sys.rst:1514 +#: ../../library/sys.rst:1528 msgid "``'mutex+cond'``: a lock uses a mutex and a condition variable" msgstr "" -#: ../../library/sys.rst:1516 +#: ../../library/sys.rst:1530 msgid "``None`` if this information is unknown" msgstr "" -#: ../../library/sys.rst:1518 +#: ../../library/sys.rst:1532 msgid ":const:`version`" msgstr ":const:`version`" -#: ../../library/sys.rst:1518 +#: ../../library/sys.rst:1532 msgid "" "Name and version of the thread library. It is a string, or ``None`` if this " "information is unknown." msgstr "" -#: ../../library/sys.rst:1527 +#: ../../library/sys.rst:1541 msgid "" "When this variable is set to an integer value, it determines the maximum " "number of levels of traceback information printed when an unhandled " @@ -2157,73 +2179,87 @@ msgid "" "are printed." msgstr "" -#: ../../library/sys.rst:1535 +#: ../../library/sys.rst:1549 msgid "Handle an unraisable exception." msgstr "" -#: ../../library/sys.rst:1537 +#: ../../library/sys.rst:1551 msgid "" "Called when an exception has occurred but there is no way for Python to " "handle it. For example, when a destructor raises an exception or during " "garbage collection (:func:`gc.collect`)." msgstr "" -#: ../../library/sys.rst:1541 +#: ../../library/sys.rst:1555 msgid "The *unraisable* argument has the following attributes:" msgstr "" -#: ../../library/sys.rst:1543 +#: ../../library/sys.rst:1557 msgid "*exc_type*: Exception type." msgstr "" -#: ../../library/sys.rst:1544 +#: ../../library/sys.rst:1558 msgid "*exc_value*: Exception value, can be ``None``." msgstr "" -#: ../../library/sys.rst:1545 +#: ../../library/sys.rst:1559 msgid "*exc_traceback*: Exception traceback, can be ``None``." msgstr "" -#: ../../library/sys.rst:1546 +#: ../../library/sys.rst:1560 msgid "*err_msg*: Error message, can be ``None``." msgstr "" -#: ../../library/sys.rst:1547 +#: ../../library/sys.rst:1561 msgid "*object*: Object causing the exception, can be ``None``." msgstr "" -#: ../../library/sys.rst:1549 +#: ../../library/sys.rst:1563 msgid "" "The default hook formats *err_msg* and *object* as: ``f'{err_msg}: " "{object!r}'``; use \"Exception ignored in\" error message if *err_msg* is " "``None``." msgstr "" -#: ../../library/sys.rst:1553 +#: ../../library/sys.rst:1567 msgid "" ":func:`sys.unraisablehook` can be overridden to control how unraisable " "exceptions are handled." msgstr "" -#: ../../library/sys.rst:1556 +#: ../../library/sys.rst:1570 msgid "" "Storing *exc_value* using a custom hook can create a reference cycle. It " "should be cleared explicitly to break the reference cycle when the exception" " is no longer needed." msgstr "" -#: ../../library/sys.rst:1560 +#: ../../library/sys.rst:1574 msgid "" "Storing *object* using a custom hook can resurrect it if it is set to an " "object which is being finalized. Avoid storing *object* after the custom " "hook completes to avoid resurrecting objects." msgstr "" -#: ../../library/sys.rst:1564 +#: ../../library/sys.rst:1578 msgid "See also :func:`excepthook` which handles uncaught exceptions." msgstr "" -#: ../../library/sys.rst:1570 +#: ../../library/sys.rstNone +msgid "" +"Raises an :ref:`auditing event ` ``sys.unraisablehook`` with " +"arguments ``hook``, ``unraisable``." +msgstr "" + +#: ../../library/sys.rst:1582 +msgid "" +"Raise an auditing event ``sys.unraisablehook`` with arguments ``hook``, " +"``unraisable`` when an exception that cannot be handled occurs. The " +"``unraisable`` object is the same as what will be passed to the hook. If no " +"hook has been set, ``hook`` may be ``None``." +msgstr "" + +#: ../../library/sys.rst:1591 msgid "" "A string containing the version number of the Python interpreter plus " "additional information on the build number and compiler used. This string " @@ -2232,13 +2268,13 @@ msgid "" "functions provided by the :mod:`platform` module." msgstr "" -#: ../../library/sys.rst:1579 +#: ../../library/sys.rst:1600 msgid "" "The C API version for this interpreter. Programmers may find this useful " "when debugging version conflicts between Python and extension modules." msgstr "" -#: ../../library/sys.rst:1585 +#: ../../library/sys.rst:1606 msgid "" "A tuple containing the five components of the version number: *major*, " "*minor*, *micro*, *releaselevel*, and *serial*. All values except " @@ -2249,18 +2285,18 @@ msgid "" "``sys.version_info.major`` and so on." msgstr "" -#: ../../library/sys.rst:1593 +#: ../../library/sys.rst:1614 msgid "Added named component attributes." msgstr "" -#: ../../library/sys.rst:1598 +#: ../../library/sys.rst:1619 msgid "" "This is an implementation detail of the warnings framework; do not modify " "this value. Refer to the :mod:`warnings` module for more information on the" " warnings framework." msgstr "" -#: ../../library/sys.rst:1605 +#: ../../library/sys.rst:1626 msgid "" "The version number used to form registry keys on Windows platforms. This is " "stored as string resource 1000 in the Python DLL. The value is normally the" @@ -2269,25 +2305,25 @@ msgid "" "effect on the registry keys used by Python." msgstr "" -#: ../../library/sys.rst:1616 +#: ../../library/sys.rst:1637 msgid "" "A dictionary of the various implementation-specific flags passed through the" " :option:`-X` command-line option. Option names are either mapped to their " "values, if given explicitly, or to :const:`True`. Example:" msgstr "" -#: ../../library/sys.rst:1632 +#: ../../library/sys.rst:1653 msgid "" "This is a CPython-specific way of accessing options passed through " ":option:`-X`. Other implementations may export them through other means, or" " not at all." msgstr "" -#: ../../library/sys.rst:1640 +#: ../../library/sys.rst:1661 msgid "Citations" msgstr "" -#: ../../library/sys.rst:1641 +#: ../../library/sys.rst:1662 msgid "" "ISO/IEC 9899:1999. \"Programming languages -- C.\" A public draft of this " "standard is available at http://www.open-" diff --git a/library/tempfile.po b/library/tempfile.po index f2072b7..b55e7ab 100644 --- a/library/tempfile.po +++ b/library/tempfile.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-11 00:37+0000\n" +"POT-Creation-Date: 2019-11-28 12:03+0000\n" "PO-Revision-Date: 2017-02-16 23:30+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -149,8 +149,8 @@ msgstr "" #: ../../library/tempfile.rst:107 msgid "" "The returned object is a file-like object whose :attr:`_file` attribute is " -"either an :class:`io.BytesIO` or :class:`io.StringIO` object (depending on " -"whether binary or text *mode* was specified) or a true file object, " +"either an :class:`io.BytesIO` or :class:`io.TextIOWrapper` object (depending" +" on whether binary or text *mode* was specified) or a true file object, " "depending on whether :func:`rollover` has been called. This file-like " "object can be used in a :keyword:`with` statement, just like a normal file." msgstr "" diff --git a/library/threading.po b/library/threading.po index 92353d8..307f861 100644 --- a/library/threading.po +++ b/library/threading.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-23 11:45+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:30+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -728,21 +728,22 @@ msgstr "" #: ../../library/threading.rst:537 msgid "" "When invoked with the *blocking* argument set to true, do the same thing as " -"when called without arguments, and return true." +"when called without arguments, and return ``True``." msgstr "" #: ../../library/threading.rst:540 msgid "" "When invoked with the *blocking* argument set to false, do not block. If a " -"call without an argument would block, return false immediately; otherwise, " -"do the same thing as when called without arguments, and return true." +"call without an argument would block, return ``False`` immediately; " +"otherwise, do the same thing as when called without arguments, and return " +"``True``." msgstr "" #: ../../library/threading.rst:544 msgid "" "When invoked with the floating-point *timeout* argument set to a positive " "value, block for at most the number of seconds specified by *timeout* and as" -" long as the lock cannot be acquired. Return true if the lock has been " +" long as the lock cannot be acquired. Return ``True`` if the lock has been " "acquired, false if the timeout has elapsed." msgstr "" @@ -1032,30 +1033,30 @@ msgstr "" #: ../../library/threading.rst:778 msgid "" "If the internal counter is larger than zero on entry, decrement it by one " -"and return true immediately." +"and return ``True`` immediately." msgstr "" #: ../../library/threading.rst:780 msgid "" "If the internal counter is zero on entry, block until awoken by a call to " ":meth:`~Semaphore.release`. Once awoken (and the counter is greater than " -"0), decrement the counter by 1 and return true. Exactly one thread will be " -"awoken by each call to :meth:`~Semaphore.release`. The order in which " +"0), decrement the counter by 1 and return ``True``. Exactly one thread will" +" be awoken by each call to :meth:`~Semaphore.release`. The order in which " "threads are awoken should not be relied on." msgstr "" #: ../../library/threading.rst:786 msgid "" "When invoked with *blocking* set to false, do not block. If a call without " -"an argument would block, return false immediately; otherwise, do the same " -"thing as when called without arguments, and return true." +"an argument would block, return ``False`` immediately; otherwise, do the " +"same thing as when called without arguments, and return ``True``." msgstr "" #: ../../library/threading.rst:790 msgid "" "When invoked with a *timeout* other than ``None``, it will block for at most" " *timeout* seconds. If acquire does not complete successfully in that " -"interval, return false. Return true otherwise." +"interval, return ``False``. Return ``True`` otherwise." msgstr "" #: ../../library/threading.rst:799 @@ -1125,7 +1126,7 @@ msgid "" msgstr "" #: ../../library/threading.rst:869 -msgid "Return true if and only if the internal flag is true." +msgid "Return ``True`` if and only if the internal flag is true." msgstr "" #: ../../library/threading.rst:873 @@ -1158,8 +1159,8 @@ msgstr "" #: ../../library/threading.rst:893 msgid "" -"This method returns true if and only if the internal flag has been set to " -"true, either before the wait call or after the wait starts, so it will " +"This method returns ``True`` if and only if the internal flag has been set " +"to true, either before the wait call or after the wait starts, so it will " "always return ``True`` except if a timeout is given and the operation times " "out." msgstr "" diff --git a/library/time.po b/library/time.po index 76b2eaf..ac64105 100644 --- a/library/time.po +++ b/library/time.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-12 11:28+0000\n" +"POT-Creation-Date: 2019-11-23 11:59+0000\n" "PO-Revision-Date: 2017-02-16 23:30+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -65,25 +65,22 @@ msgid "" " C library; for 32-bit systems, it is typically in 2038." msgstr "" -#: ../../library/time.rst:50 +#: ../../library/time.rst:47 msgid "" -"**Year 2000 (Y2K) issues**: Python depends on the platform's C library, " -"which generally doesn't have year 2000 issues, since all dates and times are" -" represented internally as seconds since the epoch. Function " -":func:`strptime` can parse 2-digit years when given ``%y`` format code. " -"When 2-digit years are parsed, they are converted according to the POSIX and" -" ISO C standards: values 69--99 are mapped to 1969--1999, and values 0--68 " -"are mapped to 2000--2068." +"Function :func:`strptime` can parse 2-digit years when given ``%y`` format " +"code. When 2-digit years are parsed, they are converted according to the " +"POSIX and ISO C standards: values 69--99 are mapped to 1969--1999, and " +"values 0--68 are mapped to 2000--2068." msgstr "" -#: ../../library/time.rst:62 +#: ../../library/time.rst:57 msgid "" "UTC is Coordinated Universal Time (formerly known as Greenwich Mean Time, or" " GMT). The acronym UTC is not a mistake but a compromise between English " "and French." msgstr "" -#: ../../library/time.rst:68 +#: ../../library/time.rst:63 msgid "" "DST is Daylight Saving Time, an adjustment of the timezone by (usually) one " "hour during part of the year. DST rules are magic (determined by local law)" @@ -92,14 +89,14 @@ msgid "" "the only source of True Wisdom in this respect." msgstr "" -#: ../../library/time.rst:74 +#: ../../library/time.rst:69 msgid "" "The precision of the various real-time functions may be less than suggested " "by the units in which their value or argument is expressed. E.g. on most " "Unix systems, the clock \"ticks\" only 50 or 100 times a second." msgstr "" -#: ../../library/time.rst:78 +#: ../../library/time.rst:73 msgid "" "On the other hand, the precision of :func:`.time` and :func:`sleep` is " "better than their Unix equivalents: times are expressed as floating point " @@ -109,7 +106,7 @@ msgid "" "this, where available)." msgstr "" -#: ../../library/time.rst:85 +#: ../../library/time.rst:80 msgid "" "The time value as returned by :func:`gmtime`, :func:`localtime`, and " ":func:`strptime`, and accepted by :func:`asctime`, :func:`mktime` and " @@ -118,73 +115,73 @@ msgid "" " names for individual fields." msgstr "" -#: ../../library/time.rst:91 +#: ../../library/time.rst:86 msgid "See :class:`struct_time` for a description of these objects." msgstr "" -#: ../../library/time.rst:93 +#: ../../library/time.rst:88 msgid "" "The :class:`struct_time` type was extended to provide the :attr:`tm_gmtoff` " "and :attr:`tm_zone` attributes when platform supports corresponding ``struct" " tm`` members." msgstr "" -#: ../../library/time.rst:98 +#: ../../library/time.rst:93 msgid "" "The :class:`struct_time` attributes :attr:`tm_gmtoff` and :attr:`tm_zone` " "are now available on all platforms." msgstr "" -#: ../../library/time.rst:102 +#: ../../library/time.rst:97 msgid "Use the following functions to convert between time representations:" msgstr "" -#: ../../library/time.rst:105 +#: ../../library/time.rst:100 msgid "From" msgstr "dari" -#: ../../library/time.rst:105 +#: ../../library/time.rst:100 msgid "To" msgstr "Ke" -#: ../../library/time.rst:105 +#: ../../library/time.rst:100 msgid "Use" msgstr "Gunakan" -#: ../../library/time.rst:107 ../../library/time.rst:110 -#: ../../library/time.rst:113 ../../library/time.rst:116 +#: ../../library/time.rst:102 ../../library/time.rst:105 +#: ../../library/time.rst:108 ../../library/time.rst:111 msgid "seconds since the epoch" msgstr "" -#: ../../library/time.rst:107 ../../library/time.rst:113 +#: ../../library/time.rst:102 ../../library/time.rst:108 msgid ":class:`struct_time` in UTC" msgstr "" -#: ../../library/time.rst:107 +#: ../../library/time.rst:102 msgid ":func:`gmtime`" msgstr ":func:`gmtime`" -#: ../../library/time.rst:110 ../../library/time.rst:116 +#: ../../library/time.rst:105 ../../library/time.rst:111 msgid ":class:`struct_time` in local time" msgstr "" -#: ../../library/time.rst:110 +#: ../../library/time.rst:105 msgid ":func:`localtime`" msgstr ":func:`localtime`" -#: ../../library/time.rst:113 +#: ../../library/time.rst:108 msgid ":func:`calendar.timegm`" msgstr ":func:`calendar.timegm`" -#: ../../library/time.rst:116 +#: ../../library/time.rst:111 msgid ":func:`mktime`" msgstr ":func:`mktime`" -#: ../../library/time.rst:124 +#: ../../library/time.rst:119 msgid "Functions" msgstr "Fungsi-Fungsi" -#: ../../library/time.rst:128 +#: ../../library/time.rst:123 msgid "" "Convert a tuple or :class:`struct_time` representing a time as returned by " ":func:`gmtime` or :func:`localtime` to a string of the following form: " @@ -193,78 +190,78 @@ msgid "" "1993'``." msgstr "" -#: ../../library/time.rst:134 +#: ../../library/time.rst:129 msgid "" "If *t* is not provided, the current time as returned by :func:`localtime` is" " used. Locale information is not used by :func:`asctime`." msgstr "" -#: ../../library/time.rst:139 +#: ../../library/time.rst:134 msgid "" "Unlike the C function of the same name, :func:`asctime` does not add a " "trailing newline." msgstr "" -#: ../../library/time.rst:144 +#: ../../library/time.rst:139 msgid "" "Return the *clk_id* of the thread-specific CPU-time clock for the specified " "*thread_id*." msgstr "" -#: ../../library/time.rst:146 +#: ../../library/time.rst:141 msgid "" "Use :func:`threading.get_ident` or the :attr:`~threading.Thread.ident` " "attribute of :class:`threading.Thread` objects to get a suitable value for " "*thread_id*." msgstr "" -#: ../../library/time.rst:151 +#: ../../library/time.rst:146 msgid "" "Passing an invalid or expired *thread_id* may result in undefined behavior, " "such as segmentation fault." msgstr "" -#: ../../library/time.rst:156 +#: ../../library/time.rst:151 msgid "" ":ref:`Availability `: Unix (see the man page for " ":manpage:`pthread_getcpuclockid(3)` for further information)." msgstr "" -#: ../../library/time.rst:161 +#: ../../library/time.rst:156 msgid "" "Return the resolution (precision) of the specified clock *clk_id*. Refer to" " :ref:`time-clock-id-constants` for a list of accepted values for *clk_id*." msgstr "" -#: ../../library/time.rst:165 ../../library/time.rst:175 -#: ../../library/time.rst:184 ../../library/time.rst:194 -#: ../../library/time.rst:203 ../../library/time.rst:635 -#: ../../library/time.rst:752 ../../library/time.rst:771 -#: ../../library/time.rst:789 ../../library/time.rst:825 +#: ../../library/time.rst:160 ../../library/time.rst:170 +#: ../../library/time.rst:179 ../../library/time.rst:189 +#: ../../library/time.rst:198 ../../library/time.rst:630 +#: ../../library/time.rst:747 ../../library/time.rst:766 +#: ../../library/time.rst:784 ../../library/time.rst:820 msgid ":ref:`Availability `: Unix." msgstr ":ref:`Availability `: Unix." -#: ../../library/time.rst:171 +#: ../../library/time.rst:166 msgid "" "Return the time of the specified clock *clk_id*. Refer to :ref:`time-clock-" "id-constants` for a list of accepted values for *clk_id*." msgstr "" -#: ../../library/time.rst:181 +#: ../../library/time.rst:176 msgid "Similar to :func:`clock_gettime` but return time as nanoseconds." msgstr "" -#: ../../library/time.rst:190 +#: ../../library/time.rst:185 msgid "" "Set the time of the specified clock *clk_id*. Currently, " ":data:`CLOCK_REALTIME` is the only accepted value for *clk_id*." msgstr "" -#: ../../library/time.rst:200 +#: ../../library/time.rst:195 msgid "Similar to :func:`clock_settime` but set time with nanoseconds." msgstr "" -#: ../../library/time.rst:209 +#: ../../library/time.rst:204 msgid "" "Convert a time expressed in seconds since the epoch to a string of a form: " "``'Sun Jun 20 23:21:05 1993'`` representing local time. The day field is two" @@ -272,7 +269,7 @@ msgid "" "``'Wed Jun 9 04:26:40 1993'``." msgstr "" -#: ../../library/time.rst:214 +#: ../../library/time.rst:209 msgid "" "If *secs* is not provided or :const:`None`, the current time as returned by " ":func:`.time` is used. ``ctime(secs)`` is equivalent to " @@ -280,62 +277,62 @@ msgid "" ":func:`ctime`." msgstr "" -#: ../../library/time.rst:222 +#: ../../library/time.rst:217 msgid "" "Get information on the specified clock as a namespace object. Supported " "clock names and the corresponding functions to read their value are:" msgstr "" -#: ../../library/time.rst:226 +#: ../../library/time.rst:221 msgid "``'clock'``: :func:`time.clock`" msgstr "``'clock'``: :func:`time.clock`" -#: ../../library/time.rst:227 +#: ../../library/time.rst:222 msgid "``'monotonic'``: :func:`time.monotonic`" msgstr "``'monotonic'``: :func:`time.monotonic`" -#: ../../library/time.rst:228 +#: ../../library/time.rst:223 msgid "``'perf_counter'``: :func:`time.perf_counter`" msgstr "``'perf_counter'``: :func:`time.perf_counter`" -#: ../../library/time.rst:229 +#: ../../library/time.rst:224 msgid "``'process_time'``: :func:`time.process_time`" msgstr "``'process_time'``: :func:`time.process_time`" -#: ../../library/time.rst:230 +#: ../../library/time.rst:225 msgid "``'thread_time'``: :func:`time.thread_time`" msgstr "``'thread_time'``: :func:`time.thread_time`" -#: ../../library/time.rst:231 +#: ../../library/time.rst:226 msgid "``'time'``: :func:`time.time`" msgstr "``'time'``: :func:`time.time`" -#: ../../library/time.rst:233 +#: ../../library/time.rst:228 msgid "The result has the following attributes:" msgstr "" -#: ../../library/time.rst:235 +#: ../../library/time.rst:230 msgid "" "*adjustable*: ``True`` if the clock can be changed automatically (e.g. by a " "NTP daemon) or manually by the system administrator, ``False`` otherwise" msgstr "" -#: ../../library/time.rst:237 +#: ../../library/time.rst:232 msgid "" "*implementation*: The name of the underlying C function used to get the " "clock value. Refer to :ref:`time-clock-id-constants` for possible values." msgstr "" -#: ../../library/time.rst:239 +#: ../../library/time.rst:234 msgid "" "*monotonic*: ``True`` if the clock cannot go backward, ``False`` otherwise" msgstr "" -#: ../../library/time.rst:241 +#: ../../library/time.rst:236 msgid "*resolution*: The resolution of the clock in seconds (:class:`float`)" msgstr "" -#: ../../library/time.rst:248 +#: ../../library/time.rst:243 msgid "" "Convert a time expressed in seconds since the epoch to a " ":class:`struct_time` in UTC in which the dst flag is always zero. If *secs*" @@ -345,14 +342,14 @@ msgid "" "for the inverse of this function." msgstr "" -#: ../../library/time.rst:258 +#: ../../library/time.rst:253 msgid "" "Like :func:`gmtime` but converts to local time. If *secs* is not provided " "or :const:`None`, the current time as returned by :func:`.time` is used. " "The dst flag is set to ``1`` when DST applies to the given time." msgstr "" -#: ../../library/time.rst:265 +#: ../../library/time.rst:260 msgid "" "This is the inverse function of :func:`localtime`. Its argument is the " ":class:`struct_time` or full 9-tuple (since the dst flag is needed; use " @@ -365,7 +362,7 @@ msgid "" "dependent." msgstr "" -#: ../../library/time.rst:277 +#: ../../library/time.rst:272 msgid "" "Return the value (in fractional seconds) of a monotonic clock, i.e. a clock " "that cannot go backwards. The clock is not affected by system clock " @@ -373,15 +370,15 @@ msgid "" "only the difference between the results of consecutive calls is valid." msgstr "" -#: ../../library/time.rst:283 +#: ../../library/time.rst:278 msgid "The function is now always available and always system-wide." msgstr "" -#: ../../library/time.rst:289 +#: ../../library/time.rst:284 msgid "Similar to :func:`monotonic`, but return time as nanoseconds." msgstr "" -#: ../../library/time.rst:298 +#: ../../library/time.rst:293 msgid "" "Return the value (in fractional seconds) of a performance counter, i.e. a " "clock with the highest available resolution to measure a short duration. It" @@ -390,11 +387,11 @@ msgid "" "between the results of consecutive calls is valid." msgstr "" -#: ../../library/time.rst:308 +#: ../../library/time.rst:303 msgid "Similar to :func:`perf_counter`, but return time as nanoseconds." msgstr "" -#: ../../library/time.rst:320 +#: ../../library/time.rst:315 msgid "" "Return the value (in fractional seconds) of the sum of the system and user " "CPU time of the current process. It does not include time elapsed during " @@ -403,11 +400,11 @@ msgid "" " of consecutive calls is valid." msgstr "" -#: ../../library/time.rst:330 +#: ../../library/time.rst:325 msgid "Similar to :func:`process_time` but return time as nanoseconds." msgstr "" -#: ../../library/time.rst:336 +#: ../../library/time.rst:331 msgid "" "Suspend execution of the calling thread for the given number of seconds. The" " argument may be a floating point number to indicate a more precise sleep " @@ -418,14 +415,14 @@ msgid "" " in the system." msgstr "" -#: ../../library/time.rst:344 +#: ../../library/time.rst:339 msgid "" "The function now sleeps at least *secs* even if the sleep is interrupted by " "a signal, except if the signal handler raises an exception (see :pep:`475` " "for the rationale)." msgstr "" -#: ../../library/time.rst:355 +#: ../../library/time.rst:350 msgid "" "Convert a tuple or :class:`struct_time` representing a time as returned by " ":func:`gmtime` or :func:`localtime` to a string as specified by the *format*" @@ -434,267 +431,267 @@ msgid "" " raised if any field in *t* is outside of the allowed range." msgstr "" -#: ../../library/time.rst:361 +#: ../../library/time.rst:356 msgid "" "0 is a legal argument for any position in the time tuple; if it is normally " "illegal the value is forced to a correct one." msgstr "" -#: ../../library/time.rst:364 +#: ../../library/time.rst:359 msgid "" "The following directives can be embedded in the *format* string. They are " "shown without the optional field width and precision specification, and are " "replaced by the indicated characters in the :func:`strftime` result:" msgstr "" -#: ../../library/time.rst:369 +#: ../../library/time.rst:364 msgid "Directive" msgstr "Petunjuk" -#: ../../library/time.rst:369 +#: ../../library/time.rst:364 msgid "Meaning" msgstr "Artinya" -#: ../../library/time.rst:369 +#: ../../library/time.rst:364 msgid "Notes" msgstr "Catatan" -#: ../../library/time.rst:371 +#: ../../library/time.rst:366 msgid "``%a``" msgstr "``%a``" -#: ../../library/time.rst:371 +#: ../../library/time.rst:366 msgid "Locale's abbreviated weekday name." msgstr "" -#: ../../library/time.rst:374 +#: ../../library/time.rst:369 msgid "``%A``" msgstr "``%A``" -#: ../../library/time.rst:374 +#: ../../library/time.rst:369 msgid "Locale's full weekday name." msgstr "" -#: ../../library/time.rst:376 +#: ../../library/time.rst:371 msgid "``%b``" msgstr "``%b``" -#: ../../library/time.rst:376 +#: ../../library/time.rst:371 msgid "Locale's abbreviated month name." msgstr "" -#: ../../library/time.rst:379 +#: ../../library/time.rst:374 msgid "``%B``" msgstr "``%B``" -#: ../../library/time.rst:379 +#: ../../library/time.rst:374 msgid "Locale's full month name." msgstr "" -#: ../../library/time.rst:381 +#: ../../library/time.rst:376 msgid "``%c``" msgstr "``%c``" -#: ../../library/time.rst:381 +#: ../../library/time.rst:376 msgid "Locale's appropriate date and time representation." msgstr "" -#: ../../library/time.rst:384 +#: ../../library/time.rst:379 msgid "``%d``" msgstr "``%d``" -#: ../../library/time.rst:384 +#: ../../library/time.rst:379 msgid "Day of the month as a decimal number [01,31]." msgstr "" -#: ../../library/time.rst:387 +#: ../../library/time.rst:382 msgid "``%H``" msgstr "``%H``" -#: ../../library/time.rst:387 +#: ../../library/time.rst:382 msgid "Hour (24-hour clock) as a decimal number [00,23]." msgstr "" -#: ../../library/time.rst:390 +#: ../../library/time.rst:385 msgid "``%I``" msgstr "``%I``" -#: ../../library/time.rst:390 +#: ../../library/time.rst:385 msgid "Hour (12-hour clock) as a decimal number [01,12]." msgstr "" -#: ../../library/time.rst:393 +#: ../../library/time.rst:388 msgid "``%j``" msgstr "``%j``" -#: ../../library/time.rst:393 +#: ../../library/time.rst:388 msgid "Day of the year as a decimal number [001,366]." msgstr "" -#: ../../library/time.rst:396 +#: ../../library/time.rst:391 msgid "``%m``" msgstr "``%m``" -#: ../../library/time.rst:396 +#: ../../library/time.rst:391 msgid "Month as a decimal number [01,12]." msgstr "" -#: ../../library/time.rst:399 +#: ../../library/time.rst:394 msgid "``%M``" msgstr "``%M``" -#: ../../library/time.rst:399 +#: ../../library/time.rst:394 msgid "Minute as a decimal number [00,59]." msgstr "" -#: ../../library/time.rst:402 +#: ../../library/time.rst:397 msgid "``%p``" msgstr "``%p``" -#: ../../library/time.rst:402 +#: ../../library/time.rst:397 msgid "Locale's equivalent of either AM or PM." msgstr "" -#: ../../library/time.rst:402 +#: ../../library/time.rst:397 msgid "\\(1)" msgstr "\\(1)" -#: ../../library/time.rst:405 +#: ../../library/time.rst:400 msgid "``%S``" msgstr "``%S``" -#: ../../library/time.rst:405 +#: ../../library/time.rst:400 msgid "Second as a decimal number [00,61]." msgstr "" -#: ../../library/time.rst:405 +#: ../../library/time.rst:400 msgid "\\(2)" msgstr "\\(2)" -#: ../../library/time.rst:408 +#: ../../library/time.rst:403 msgid "``%U``" msgstr "``%U``" -#: ../../library/time.rst:408 +#: ../../library/time.rst:403 msgid "" "Week number of the year (Sunday as the first day of the week) as a decimal " "number [00,53]. All days in a new year preceding the first Sunday are " "considered to be in week 0." msgstr "" -#: ../../library/time.rst:408 ../../library/time.rst:419 +#: ../../library/time.rst:403 ../../library/time.rst:414 msgid "\\(3)" msgstr "\\(3)" -#: ../../library/time.rst:416 +#: ../../library/time.rst:411 msgid "``%w``" msgstr "``%w``" -#: ../../library/time.rst:416 +#: ../../library/time.rst:411 msgid "Weekday as a decimal number [0(Sunday),6]." msgstr "" -#: ../../library/time.rst:419 +#: ../../library/time.rst:414 msgid "``%W``" msgstr "``%W``" -#: ../../library/time.rst:419 +#: ../../library/time.rst:414 msgid "" "Week number of the year (Monday as the first day of the week) as a decimal " "number [00,53]. All days in a new year preceding the first Monday are " "considered to be in week 0." msgstr "" -#: ../../library/time.rst:427 +#: ../../library/time.rst:422 msgid "``%x``" msgstr "``%x``" -#: ../../library/time.rst:427 +#: ../../library/time.rst:422 msgid "Locale's appropriate date representation." msgstr "" -#: ../../library/time.rst:430 +#: ../../library/time.rst:425 msgid "``%X``" msgstr "``%X``" -#: ../../library/time.rst:430 +#: ../../library/time.rst:425 msgid "Locale's appropriate time representation." msgstr "" -#: ../../library/time.rst:433 +#: ../../library/time.rst:428 msgid "``%y``" msgstr "``%y``" -#: ../../library/time.rst:433 +#: ../../library/time.rst:428 msgid "Year without century as a decimal number [00,99]." msgstr "" -#: ../../library/time.rst:436 +#: ../../library/time.rst:431 msgid "``%Y``" msgstr "``%Y``" -#: ../../library/time.rst:436 +#: ../../library/time.rst:431 msgid "Year with century as a decimal number." msgstr "" -#: ../../library/time.rst:439 +#: ../../library/time.rst:434 msgid "``%z``" msgstr "``%z``" -#: ../../library/time.rst:439 +#: ../../library/time.rst:434 msgid "" "Time zone offset indicating a positive or negative time difference from " "UTC/GMT of the form +HHMM or -HHMM, where H represents decimal hour digits " "and M represents decimal minute digits [-23:59, +23:59]." msgstr "" -#: ../../library/time.rst:445 +#: ../../library/time.rst:440 msgid "``%Z``" msgstr "``%Z``" -#: ../../library/time.rst:445 +#: ../../library/time.rst:440 msgid "Time zone name (no characters if no time zone exists)." msgstr "" -#: ../../library/time.rst:448 +#: ../../library/time.rst:443 msgid "``%%``" msgstr "``%%``" -#: ../../library/time.rst:448 +#: ../../library/time.rst:443 msgid "A literal ``'%'`` character." msgstr "" -#: ../../library/time.rst:451 +#: ../../library/time.rst:446 msgid "Notes:" msgstr "Catatan:" -#: ../../library/time.rst:454 +#: ../../library/time.rst:449 msgid "" "When used with the :func:`strptime` function, the ``%p`` directive only " "affects the output hour field if the ``%I`` directive is used to parse the " "hour." msgstr "" -#: ../../library/time.rst:458 +#: ../../library/time.rst:453 msgid "" "The range really is ``0`` to ``61``; value ``60`` is valid in timestamps " "representing `leap seconds`_ and value ``61`` is supported for historical " "reasons." msgstr "" -#: ../../library/time.rst:463 +#: ../../library/time.rst:458 msgid "" "When used with the :func:`strptime` function, ``%U`` and ``%W`` are only " "used in calculations when the day of the week and the year are specified." msgstr "" -#: ../../library/time.rst:466 +#: ../../library/time.rst:461 msgid "" "Here is an example, a format for dates compatible with that specified in " "the :rfc:`2822` Internet email standard. [#]_ ::" msgstr "" -#: ../../library/time.rst:473 +#: ../../library/time.rst:468 msgid "" "Additional directives may be supported on certain platforms, but only the " "ones listed here have a meaning standardized by ANSI C. To see the full set" @@ -702,7 +699,7 @@ msgid "" ":manpage:`strftime(3)` documentation." msgstr "" -#: ../../library/time.rst:478 +#: ../../library/time.rst:473 msgid "" "On some platforms, an optional field width and precision specification can " "immediately follow the initial ``'%'`` of a directive in the following " @@ -710,14 +707,14 @@ msgid "" "``%j`` where it is 3." msgstr "" -#: ../../library/time.rst:489 +#: ../../library/time.rst:484 msgid "" "Parse a string representing a time according to a format. The return value " "is a :class:`struct_time` as returned by :func:`gmtime` or " ":func:`localtime`." msgstr "" -#: ../../library/time.rst:493 +#: ../../library/time.rst:488 msgid "" "The *format* parameter uses the same directives as those used by " ":func:`strftime`; it defaults to ``\"%a %b %d %H:%M:%S %Y\"`` which matches " @@ -728,11 +725,11 @@ msgid "" "0, 0, 1, -1)``. Both *string* and *format* must be strings." msgstr "" -#: ../../library/time.rst:501 +#: ../../library/time.rst:496 msgid "For example:" msgstr "Sebagai contoh:" -#: ../../library/time.rst:508 +#: ../../library/time.rst:503 msgid "" "Support for the ``%Z`` directive is based on the values contained in " "``tzname`` and whether ``daylight`` is true. Because of this, it is " @@ -740,7 +737,7 @@ msgid "" "(and are considered to be non-daylight savings timezones)." msgstr "" -#: ../../library/time.rst:513 +#: ../../library/time.rst:508 msgid "" "Only the directives specified in the documentation are supported. Because " "``strftime()`` is implemented per platform it can sometimes offer more " @@ -749,7 +746,7 @@ msgid "" " are not documented as supported." msgstr "" -#: ../../library/time.rst:522 +#: ../../library/time.rst:517 msgid "" "The type of the time value sequence returned by :func:`gmtime`, " ":func:`localtime`, and :func:`strptime`. It is an object with a " @@ -757,153 +754,153 @@ msgid "" "attribute name. The following values are present:" msgstr "" -#: ../../library/time.rst:528 +#: ../../library/time.rst:523 msgid "Index" msgstr "Indeks" -#: ../../library/time.rst:528 +#: ../../library/time.rst:523 msgid "Attribute" msgstr "Atribut" -#: ../../library/time.rst:528 +#: ../../library/time.rst:523 msgid "Values" msgstr "Nilai" -#: ../../library/time.rst:530 +#: ../../library/time.rst:525 msgid "0" msgstr "0" -#: ../../library/time.rst:530 +#: ../../library/time.rst:525 msgid ":attr:`tm_year`" msgstr ":attr:`tm_year`" -#: ../../library/time.rst:530 +#: ../../library/time.rst:525 msgid "(for example, 1993)" msgstr "" -#: ../../library/time.rst:532 +#: ../../library/time.rst:527 msgid "1" msgstr "1" -#: ../../library/time.rst:532 +#: ../../library/time.rst:527 msgid ":attr:`tm_mon`" msgstr ":attr:`tm_mon`" -#: ../../library/time.rst:532 +#: ../../library/time.rst:527 msgid "range [1, 12]" msgstr "" -#: ../../library/time.rst:534 +#: ../../library/time.rst:529 msgid "2" msgstr "2" -#: ../../library/time.rst:534 +#: ../../library/time.rst:529 msgid ":attr:`tm_mday`" msgstr ":attr:`tm_mday`" -#: ../../library/time.rst:534 +#: ../../library/time.rst:529 msgid "range [1, 31]" msgstr "" -#: ../../library/time.rst:536 +#: ../../library/time.rst:531 msgid "3" msgstr "3" -#: ../../library/time.rst:536 +#: ../../library/time.rst:531 msgid ":attr:`tm_hour`" msgstr ":attr:`tm_hour`" -#: ../../library/time.rst:536 +#: ../../library/time.rst:531 msgid "range [0, 23]" msgstr "" -#: ../../library/time.rst:538 +#: ../../library/time.rst:533 msgid "4" msgstr "4" -#: ../../library/time.rst:538 +#: ../../library/time.rst:533 msgid ":attr:`tm_min`" msgstr ":attr:`tm_min`" -#: ../../library/time.rst:538 +#: ../../library/time.rst:533 msgid "range [0, 59]" msgstr "" -#: ../../library/time.rst:540 +#: ../../library/time.rst:535 msgid "5" msgstr "5" -#: ../../library/time.rst:540 +#: ../../library/time.rst:535 msgid ":attr:`tm_sec`" msgstr ":attr:`tm_sec`" -#: ../../library/time.rst:540 +#: ../../library/time.rst:535 msgid "range [0, 61]; see **(2)** in :func:`strftime` description" msgstr "" -#: ../../library/time.rst:543 +#: ../../library/time.rst:538 msgid "6" msgstr "6" -#: ../../library/time.rst:543 +#: ../../library/time.rst:538 msgid ":attr:`tm_wday`" msgstr ":attr:`tm_wday`" -#: ../../library/time.rst:543 +#: ../../library/time.rst:538 msgid "range [0, 6], Monday is 0" msgstr "" -#: ../../library/time.rst:545 +#: ../../library/time.rst:540 msgid "7" msgstr "7" -#: ../../library/time.rst:545 +#: ../../library/time.rst:540 msgid ":attr:`tm_yday`" msgstr ":attr:`tm_yday`" -#: ../../library/time.rst:545 +#: ../../library/time.rst:540 msgid "range [1, 366]" msgstr "" -#: ../../library/time.rst:547 +#: ../../library/time.rst:542 msgid "8" msgstr "8" -#: ../../library/time.rst:547 +#: ../../library/time.rst:542 msgid ":attr:`tm_isdst`" msgstr ":attr:`tm_isdst`" -#: ../../library/time.rst:547 +#: ../../library/time.rst:542 msgid "0, 1 or -1; see below" msgstr "" -#: ../../library/time.rst:549 ../../library/time.rst:551 +#: ../../library/time.rst:544 ../../library/time.rst:546 msgid "N/A" msgstr "T/A" -#: ../../library/time.rst:549 +#: ../../library/time.rst:544 msgid ":attr:`tm_zone`" msgstr ":attr:`tm_zone`" -#: ../../library/time.rst:549 +#: ../../library/time.rst:544 msgid "abbreviation of timezone name" msgstr "" -#: ../../library/time.rst:551 +#: ../../library/time.rst:546 msgid ":attr:`tm_gmtoff`" msgstr ":attr:`tm_gmtoff`" -#: ../../library/time.rst:551 +#: ../../library/time.rst:546 msgid "offset east of UTC in seconds" msgstr "" -#: ../../library/time.rst:554 +#: ../../library/time.rst:549 msgid "" "Note that unlike the C structure, the month value is a range of [1, 12], not" " [0, 11]." msgstr "" -#: ../../library/time.rst:557 +#: ../../library/time.rst:552 msgid "" "In calls to :func:`mktime`, :attr:`tm_isdst` may be set to 1 when daylight " "savings time is in effect, and 0 when it is not. A value of -1 indicates " @@ -911,14 +908,14 @@ msgid "" "filled in." msgstr "" -#: ../../library/time.rst:561 +#: ../../library/time.rst:556 msgid "" "When a tuple with an incorrect length is passed to a function expecting a " ":class:`struct_time`, or having elements of the wrong type, a " ":exc:`TypeError` is raised." msgstr "" -#: ../../library/time.rst:567 +#: ../../library/time.rst:562 msgid "" "Return the time in seconds since the epoch_ as a floating point number. The " "specific date of the epoch and the handling of `leap seconds`_ is platform " @@ -929,7 +926,7 @@ msgid "" "on a given platform, look at ``gmtime(0)``." msgstr "" -#: ../../library/time.rst:577 +#: ../../library/time.rst:572 msgid "" "Note that even though the time is always returned as a floating point " "number, not all systems provide time with a better precision than 1 second. " @@ -938,7 +935,7 @@ msgid "" "between the two calls." msgstr "" -#: ../../library/time.rst:583 +#: ../../library/time.rst:578 msgid "" "The number returned by :func:`.time` may be converted into a more common " "time format (i.e. year, month, day, hour, etc...) in UTC by passing it to " @@ -948,7 +945,7 @@ msgid "" "attributes." msgstr "" -#: ../../library/time.rst:598 +#: ../../library/time.rst:593 msgid "" "Return the value (in fractional seconds) of the sum of the system and user " "CPU time of the current thread. It does not include time elapsed during " @@ -957,23 +954,23 @@ msgid "" " of consecutive calls in the same thread is valid." msgstr "" -#: ../../library/time.rst:606 +#: ../../library/time.rst:601 msgid "" ":ref:`Availability `: Windows, Linux, Unix systems supporting " "``CLOCK_THREAD_CPUTIME_ID``." msgstr "" -#: ../../library/time.rst:612 +#: ../../library/time.rst:607 msgid "Similar to :func:`thread_time` but return time as nanoseconds." msgstr "" -#: ../../library/time.rst:619 +#: ../../library/time.rst:614 msgid "" "Similar to :func:`~time.time` but returns time as an integer number of " "nanoseconds since the epoch_." msgstr "" -#: ../../library/time.rst:626 +#: ../../library/time.rst:621 msgid "" "Reset the time conversion rules used by the library routines. The " "environment variable :envvar:`TZ` specifies how this is done. It will also " @@ -984,42 +981,42 @@ msgid "" " when daylight saving time applies)." msgstr "" -#: ../../library/time.rst:638 +#: ../../library/time.rst:633 msgid "" "Although in many cases, changing the :envvar:`TZ` environment variable may " "affect the output of functions like :func:`localtime` without calling " ":func:`tzset`, this behavior should not be relied on." msgstr "" -#: ../../library/time.rst:642 +#: ../../library/time.rst:637 msgid "The :envvar:`TZ` environment variable should contain no whitespace." msgstr "" -#: ../../library/time.rst:644 +#: ../../library/time.rst:639 msgid "" "The standard format of the :envvar:`TZ` environment variable is (whitespace " "added for clarity)::" msgstr "" -#: ../../library/time.rst:649 +#: ../../library/time.rst:644 msgid "Where the components are:" msgstr "" -#: ../../library/time.rst:653 +#: ../../library/time.rst:648 msgid "``std`` and ``dst``" msgstr "" -#: ../../library/time.rst:652 +#: ../../library/time.rst:647 msgid "" "Three or more alphanumerics giving the timezone abbreviations. These will be" " propagated into time.tzname" msgstr "" -#: ../../library/time.rst:659 +#: ../../library/time.rst:654 msgid "``offset``" msgstr "``offset``" -#: ../../library/time.rst:656 +#: ../../library/time.rst:651 msgid "" "The offset has the form: ``± hh[:mm[:ss]]``. This indicates the value added " "the local time to arrive at UTC. If preceded by a '-', the timezone is east" @@ -1027,41 +1024,41 @@ msgid "" "summer time is assumed to be one hour ahead of standard time." msgstr "" -#: ../../library/time.rst:681 +#: ../../library/time.rst:676 msgid "``start[/time], end[/time]``" msgstr "" -#: ../../library/time.rst:662 +#: ../../library/time.rst:657 msgid "" "Indicates when to change to and back from DST. The format of the start and " "end dates are one of the following:" msgstr "" -#: ../../library/time.rst:667 +#: ../../library/time.rst:662 msgid ":samp:`J{n}`" msgstr ":samp:`J{n}`" -#: ../../library/time.rst:666 +#: ../../library/time.rst:661 msgid "" "The Julian day *n* (1 <= *n* <= 365). Leap days are not counted, so in all " "years February 28 is day 59 and March 1 is day 60." msgstr "" -#: ../../library/time.rst:671 +#: ../../library/time.rst:666 msgid ":samp:`{n}`" msgstr ":samp:`{n}`" -#: ../../library/time.rst:670 +#: ../../library/time.rst:665 msgid "" "The zero-based Julian day (0 <= *n* <= 365). Leap days are counted, and it " "is possible to refer to February 29." msgstr "" -#: ../../library/time.rst:678 +#: ../../library/time.rst:673 msgid ":samp:`M{m}.{n}.{d}`" msgstr ":samp:`M{m}.{n}.{d}`" -#: ../../library/time.rst:674 +#: ../../library/time.rst:669 msgid "" "The *d*'th day (0 <= *d* <= 6) of week *n* of month *m* of the year (1 <= " "*n* <= 5, 1 <= *m* <= 12, where week 5 means \"the last *d* day in month " @@ -1069,13 +1066,13 @@ msgid "" " first week in which the *d*'th day occurs. Day zero is a Sunday." msgstr "" -#: ../../library/time.rst:680 +#: ../../library/time.rst:675 msgid "" "``time`` has the same format as ``offset`` except that no leading sign ('-' " "or '+') is allowed. The default, if time is not given, is 02:00:00." msgstr "" -#: ../../library/time.rst:694 +#: ../../library/time.rst:689 msgid "" "On many Unix systems (including \\*BSD, Linux, Solaris, and Darwin), it is " "more convenient to use the system's zoneinfo (:manpage:`tzfile(5)`) " @@ -1086,23 +1083,23 @@ msgid "" "``'Australia/Melbourne'``, ``'Egypt'`` or ``'Europe/Amsterdam'``. ::" msgstr "" -#: ../../library/time.rst:715 +#: ../../library/time.rst:710 msgid "Clock ID Constants" msgstr "" -#: ../../library/time.rst:717 +#: ../../library/time.rst:712 msgid "" "These constants are used as parameters for :func:`clock_getres` and " ":func:`clock_gettime`." msgstr "" -#: ../../library/time.rst:722 +#: ../../library/time.rst:717 msgid "" "Identical to :data:`CLOCK_MONOTONIC`, except it also includes any time that " "the system is suspended." msgstr "" -#: ../../library/time.rst:725 +#: ../../library/time.rst:720 msgid "" "This allows applications to get a suspend-aware monotonic clock without " "having to deal with the complications of :data:`CLOCK_REALTIME`, which may " @@ -1110,91 +1107,91 @@ msgid "" "similar." msgstr "" -#: ../../library/time.rst:731 +#: ../../library/time.rst:726 msgid ":ref:`Availability `: Linux 2.6.39 or later." msgstr "" -#: ../../library/time.rst:737 +#: ../../library/time.rst:732 msgid "" "The Solaris OS has a ``CLOCK_HIGHRES`` timer that attempts to use an optimal" " hardware source, and may give close to nanosecond resolution. " "``CLOCK_HIGHRES`` is the nonadjustable, high-resolution clock." msgstr "" -#: ../../library/time.rst:742 +#: ../../library/time.rst:737 msgid ":ref:`Availability `: Solaris." msgstr ":ref:`Availability `: Solaris." -#: ../../library/time.rst:748 +#: ../../library/time.rst:743 msgid "" "Clock that cannot be set and represents monotonic time since some " "unspecified starting point." msgstr "" -#: ../../library/time.rst:758 +#: ../../library/time.rst:753 msgid "" "Similar to :data:`CLOCK_MONOTONIC`, but provides access to a raw hardware-" "based time that is not subject to NTP adjustments." msgstr "" -#: ../../library/time.rst:762 +#: ../../library/time.rst:757 msgid "" ":ref:`Availability `: Linux 2.6.28 and newer, macOS 10.12 and " "newer." msgstr "" -#: ../../library/time.rst:768 ../../library/time.rst:777 +#: ../../library/time.rst:763 ../../library/time.rst:772 msgid "High-resolution per-process timer from the CPU." msgstr "" -#: ../../library/time.rst:780 +#: ../../library/time.rst:775 msgid "" ":ref:`Availability `: FreeBSD, NetBSD 7 or later, OpenBSD." msgstr "" -#: ../../library/time.rst:786 +#: ../../library/time.rst:781 msgid "Thread-specific CPU-time clock." msgstr "" -#: ../../library/time.rst:795 +#: ../../library/time.rst:790 msgid "" "Time whose absolute value is the time the system has been running and not " "suspended, providing accurate uptime measurement, both absolute and " "interval." msgstr "" -#: ../../library/time.rst:800 +#: ../../library/time.rst:795 msgid ":ref:`Availability `: FreeBSD, OpenBSD 5.5 or later." msgstr "" -#: ../../library/time.rst:806 +#: ../../library/time.rst:801 msgid "" "Clock that increments monotonically, tracking the time since an arbitrary " "point, unaffected by frequency or time adjustments and not incremented while" " the system is asleep." msgstr "" -#: ../../library/time.rst:811 +#: ../../library/time.rst:806 msgid ":ref:`Availability `: macOS 10.12 and newer." msgstr "" -#: ../../library/time.rst:815 +#: ../../library/time.rst:810 msgid "" "The following constant is the only parameter that can be sent to " ":func:`clock_settime`." msgstr "" -#: ../../library/time.rst:821 +#: ../../library/time.rst:816 msgid "" "System-wide real-time clock. Setting this clock requires appropriate " "privileges." msgstr "" -#: ../../library/time.rst:832 +#: ../../library/time.rst:827 msgid "Timezone Constants" msgstr "" -#: ../../library/time.rst:836 +#: ../../library/time.rst:831 msgid "" "The offset of the local DST timezone, in seconds west of UTC, if one is " "defined. This is negative if the local DST timezone is east of UTC (as in " @@ -1202,25 +1199,25 @@ msgid "" "nonzero. See note below." msgstr "" -#: ../../library/time.rst:842 +#: ../../library/time.rst:837 msgid "Nonzero if a DST timezone is defined. See note below." msgstr "" -#: ../../library/time.rst:846 +#: ../../library/time.rst:841 msgid "" "The offset of the local (non-DST) timezone, in seconds west of UTC (negative" " in most of Western Europe, positive in the US, zero in the UK). See note " "below." msgstr "" -#: ../../library/time.rst:851 +#: ../../library/time.rst:846 msgid "" "A tuple of two strings: the first is the name of the local non-DST timezone," " the second is the name of the local DST timezone. If no DST timezone is " "defined, the second string should not be used. See note below." msgstr "" -#: ../../library/time.rst:857 +#: ../../library/time.rst:852 msgid "" "For the above Timezone constants (:data:`altzone`, :data:`daylight`, " ":data:`timezone`, and :data:`tzname`), the value is determined by the " @@ -1230,40 +1227,40 @@ msgid "" " to obtain timezone information." msgstr "" -#: ../../library/time.rst:867 +#: ../../library/time.rst:862 msgid "Module :mod:`datetime`" msgstr "Modul :mod:`datetime`" -#: ../../library/time.rst:867 +#: ../../library/time.rst:862 msgid "More object-oriented interface to dates and times." msgstr "" -#: ../../library/time.rst:871 +#: ../../library/time.rst:866 msgid "Module :mod:`locale`" msgstr "Modul :mod:`locale`" -#: ../../library/time.rst:870 +#: ../../library/time.rst:865 msgid "" "Internationalization services. The locale setting affects the " "interpretation of many format specifiers in :func:`strftime` and " ":func:`strptime`." msgstr "" -#: ../../library/time.rst:874 +#: ../../library/time.rst:869 msgid "Module :mod:`calendar`" msgstr "Modul :mod:`calendar`" -#: ../../library/time.rst:874 +#: ../../library/time.rst:869 msgid "" "General calendar-related functions. :func:`~calendar.timegm` is the " "inverse of :func:`gmtime` from this module." msgstr "" -#: ../../library/time.rst:878 +#: ../../library/time.rst:873 msgid "Footnotes" msgstr "Catatan kaki" -#: ../../library/time.rst:879 +#: ../../library/time.rst:874 msgid "" "The use of ``%Z`` is now deprecated, but the ``%z`` escape that expands to " "the preferred hour/minute offset is not supported by all ANSI C libraries. " diff --git a/library/tkinter.ttk.po b/library/tkinter.ttk.po index 4adb348..67460c2 100644 --- a/library/tkinter.ttk.po +++ b/library/tkinter.ttk.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:31+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -1333,8 +1333,8 @@ msgstr "buka" #: ../../library/tkinter.ttk.rst:874 msgid "" -"True/False value indicating whether the item's children should be displayed " -"or hidden." +"``True``/``False`` value indicating whether the item's children should be " +"displayed or hidden." msgstr "" #: ../../library/tkinter.ttk.rst:877 @@ -1544,7 +1544,7 @@ msgid "" msgstr "" #: ../../library/tkinter.ttk.rst:1001 -msgid "stretch: True/False" +msgid "stretch: ``True``/``False``" msgstr "" #: ../../library/tkinter.ttk.rst:1001 diff --git a/library/token.po b/library/token.po index fed9881..b085433 100644 --- a/library/token.po +++ b/library/token.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:31+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -52,15 +52,15 @@ msgid "" msgstr "" #: ../../library/token.rst:32 -msgid "Return true for terminal token values." +msgid "Return ``True`` for terminal token values." msgstr "" #: ../../library/token.rst:37 -msgid "Return true for non-terminal token values." +msgid "Return ``True`` for non-terminal token values." msgstr "" #: ../../library/token.rst:42 -msgid "Return true if *x* is the marker indicating the end of input." +msgid "Return ``True`` if *x* is the marker indicating the end of input." msgstr "" #: ../../library/token.rst:45 diff --git a/library/unittest.mock.po b/library/unittest.mock.po index aa85238..3fbc931 100644 --- a/library/unittest.mock.po +++ b/library/unittest.mock.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30 11:34+0000\n" +"POT-Creation-Date: 2019-11-22 11:59+0000\n" "PO-Revision-Date: 2017-02-16 23:33+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -340,8 +340,8 @@ msgstr "" #: ../../library/unittest.mock.rst:363 msgid "" -"If *any_order* is false (the default) then the calls must be sequential. " -"There can be extra calls before or after the specified calls." +"If *any_order* is false then the calls must be sequential. There can be " +"extra calls before or after the specified calls." msgstr "" #: ../../library/unittest.mock.rst:367 @@ -692,7 +692,7 @@ msgstr "" msgid "" "if ``side_effect`` is an iterable, the async function will return the next " "value of the iterable, however, if the sequence of result is exhausted, " -"``StopIteration`` is raised immediately," +"``StopAsyncIteration`` is raised immediately," msgstr "" #: ../../library/unittest.mock.rst:877 @@ -750,13 +750,13 @@ msgstr "" #: ../../library/unittest.mock.rst:1009 msgid "" -"If *any_order* is False (the default) then the awaits must be sequential. " -"There can be extra calls before or after the specified awaits." +"If *any_order* is false then the awaits must be sequential. There can be " +"extra calls before or after the specified awaits." msgstr "" #: ../../library/unittest.mock.rst:1013 msgid "" -"If *any_order* is True then the awaits can be in any order, but they must " +"If *any_order* is true then the awaits can be in any order, but they must " "all appear in :attr:`await_args_list`." msgstr "" @@ -1715,59 +1715,59 @@ msgid "Methods and their defaults:" msgstr "" #: ../../library/unittest.mock.rst:2088 -msgid "``__lt__``: NotImplemented" +msgid "``__lt__``: ``NotImplemented``" msgstr "" #: ../../library/unittest.mock.rst:2089 -msgid "``__gt__``: NotImplemented" +msgid "``__gt__``: ``NotImplemented``" msgstr "" #: ../../library/unittest.mock.rst:2090 -msgid "``__le__``: NotImplemented" +msgid "``__le__``: ``NotImplemented``" msgstr "" #: ../../library/unittest.mock.rst:2091 -msgid "``__ge__``: NotImplemented" +msgid "``__ge__``: ``NotImplemented``" msgstr "" #: ../../library/unittest.mock.rst:2092 -msgid "``__int__``: 1" +msgid "``__int__``: ``1``" msgstr "" #: ../../library/unittest.mock.rst:2093 -msgid "``__contains__``: False" +msgid "``__contains__``: ``False``" msgstr "" #: ../../library/unittest.mock.rst:2094 -msgid "``__len__``: 0" +msgid "``__len__``: ``0``" msgstr "" #: ../../library/unittest.mock.rst:2095 -msgid "``__iter__``: iter([])" +msgid "``__iter__``: ``iter([])``" msgstr "" #: ../../library/unittest.mock.rst:2096 -msgid "``__exit__``: False" +msgid "``__exit__``: ``False``" msgstr "" #: ../../library/unittest.mock.rst:2097 -msgid "``__aexit__``: False" +msgid "``__aexit__``: ``False``" msgstr "" #: ../../library/unittest.mock.rst:2098 -msgid "``__complex__``: 1j" +msgid "``__complex__``: ``1j``" msgstr "" #: ../../library/unittest.mock.rst:2099 -msgid "``__float__``: 1.0" +msgid "``__float__``: ``1.0``" msgstr "" #: ../../library/unittest.mock.rst:2100 -msgid "``__bool__``: True" +msgid "``__bool__``: ``True``" msgstr "" #: ../../library/unittest.mock.rst:2101 -msgid "``__index__``: 1" +msgid "``__index__``: ``1``" msgstr "" #: ../../library/unittest.mock.rst:2102 diff --git a/library/unittest.po b/library/unittest.po index 867ac5a..efd3fb4 100644 --- a/library/unittest.po +++ b/library/unittest.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-20 11:44+0000\n" +"POT-Creation-Date: 2019-11-20 12:00+0000\n" "PO-Revision-Date: 2017-02-16 23:33+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -1804,9 +1804,9 @@ msgstr "" #: ../../library/unittest.rst:1566 msgid "" -"After running the test ``events`` would contain ``[\"setUp\", " +"After running the test, ``events`` would contain ``[\"setUp\", " "\"asyncSetUp\", \"test_response\", \"asyncTearDown\", \"tearDown\", " -"\"cleanup\"]``" +"\"cleanup\"]``." msgstr "" #: ../../library/unittest.rst:1571 diff --git a/library/urllib.parse.po b/library/urllib.parse.po index dd7befb..e3f750f 100644 --- a/library/urllib.parse.po +++ b/library/urllib.parse.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-19 11:59+0000\n" "PO-Revision-Date: 2017-02-16 23:33+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -640,7 +640,7 @@ msgstr "" #: ../../library/urllib.parse.rst:530 msgid "" "Moved from :rfc:`2396` to :rfc:`3986` for quoting URL strings. \"~\" is now " -"included in the set of reserved characters." +"included in the set of unreserved characters." msgstr "" #: ../../library/urllib.parse.rst:534 diff --git a/library/urllib.request.po b/library/urllib.request.po index ee9e84f..89f8c95 100644 --- a/library/urllib.request.po +++ b/library/urllib.request.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-01 11:49+0000\n" "PO-Revision-Date: 2017-02-16 23:34+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -38,8 +38,8 @@ msgstr "" #: ../../library/urllib.request.rst:21 msgid "" -"The `Requests package `_ is recommended " -"for a higher-level HTTP client interface." +"The `Requests package `_ is " +"recommended for a higher-level HTTP client interface." msgstr "" #: ../../library/urllib.request.rst:25 diff --git a/library/venv.po b/library/venv.po index 798cc42..90ca712 100644 --- a/library/venv.po +++ b/library/venv.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-11 00:37+0000\n" +"POT-Creation-Date: 2019-11-29 12:04+0000\n" "PO-Revision-Date: 2017-02-16 23:34+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -368,11 +368,11 @@ msgid "" " used)." msgstr "" -#: ../../library/venv.rst:127 ../../library/venv.rst:253 +#: ../../library/venv.rst:127 ../../library/venv.rst:245 msgid "Added the ``with_pip`` parameter" msgstr "" -#: ../../library/venv.rst:130 ../../library/venv.rst:256 +#: ../../library/venv.rst:130 ../../library/venv.rst:248 msgid "Added the ``prompt`` parameter" msgstr "" @@ -436,40 +436,33 @@ msgstr "" #: ../../library/venv.rst:191 msgid "" -"Upgrades the core venv dependency packages (currently ``pip`` and " -"``setuptools``) in the environment. This is done by shelling out to the " -"``pip`` executable in the environment." -msgstr "" - -#: ../../library/venv.rst:199 -msgid "" "A placeholder method which can be overridden in third party implementations " "to pre-install packages in the virtual environment or perform other post-" "creation steps." msgstr "" -#: ../../library/venv.rst:203 +#: ../../library/venv.rst:195 msgid "" "Windows now uses redirector scripts for ``python[w].exe`` instead of copying" " the actual binaries. In 3.7.2 only :meth:`setup_python` does nothing unless" " running from a build in the source tree." msgstr "" -#: ../../library/venv.rst:208 +#: ../../library/venv.rst:200 msgid "" "Windows copies the redirector scripts as part of :meth:`setup_python` " "instead of :meth:`setup_scripts`. This was not the case in 3.7.2. When using" " symlinks, the original executables will be linked." msgstr "" -#: ../../library/venv.rst:213 +#: ../../library/venv.rst:205 msgid "" "In addition, :class:`EnvBuilder` provides this utility method that can be " "called from :meth:`setup_scripts` or :meth:`post_setup` in subclasses to " "assist in installing custom scripts into the virtual environment." msgstr "" -#: ../../library/venv.rst:219 +#: ../../library/venv.rst:211 msgid "" "*path* is the path to a directory that should contain subdirectories " "\"common\", \"posix\", \"nt\", each containing scripts destined for the bin " @@ -478,64 +471,64 @@ msgid "" "placeholders:" msgstr "" -#: ../../library/venv.rst:225 +#: ../../library/venv.rst:217 msgid "" "``__VENV_DIR__`` is replaced with the absolute path of the environment " "directory." msgstr "" -#: ../../library/venv.rst:228 +#: ../../library/venv.rst:220 msgid "" "``__VENV_NAME__`` is replaced with the environment name (final path segment " "of environment directory)." msgstr "" -#: ../../library/venv.rst:231 +#: ../../library/venv.rst:223 msgid "" "``__VENV_PROMPT__`` is replaced with the prompt (the environment name " "surrounded by parentheses and with a following space)" msgstr "" -#: ../../library/venv.rst:234 +#: ../../library/venv.rst:226 msgid "" "``__VENV_BIN_NAME__`` is replaced with the name of the bin directory (either" " ``bin`` or ``Scripts``)." msgstr "" -#: ../../library/venv.rst:237 +#: ../../library/venv.rst:229 msgid "" "``__VENV_PYTHON__`` is replaced with the absolute path of the environment's " "executable." msgstr "" -#: ../../library/venv.rst:240 +#: ../../library/venv.rst:232 msgid "" "The directories are allowed to exist (for when an existing environment is " "being upgraded)." msgstr "" -#: ../../library/venv.rst:243 +#: ../../library/venv.rst:235 msgid "There is also a module-level convenience function:" msgstr "" -#: ../../library/venv.rst:248 +#: ../../library/venv.rst:240 msgid "" "Create an :class:`EnvBuilder` with the given keyword arguments, and call its" " :meth:`~EnvBuilder.create` method with the *env_dir* argument." msgstr "" -#: ../../library/venv.rst:260 +#: ../../library/venv.rst:252 msgid "An example of extending ``EnvBuilder``" msgstr "" -#: ../../library/venv.rst:262 +#: ../../library/venv.rst:254 msgid "" "The following script shows how to extend :class:`EnvBuilder` by implementing" " a subclass which installs setuptools and pip into a created virtual " "environment::" msgstr "" -#: ../../library/venv.rst:481 +#: ../../library/venv.rst:473 msgid "" "This script is also available for download `online " "`_." diff --git a/library/winreg.po b/library/winreg.po index 5a30cc1..db577ff 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-31 11:48+0000\n" +"POT-Creation-Date: 2019-12-10 12:08+0000\n" "PO-Revision-Date: 2017-02-16 23:35+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -76,35 +76,41 @@ msgstr "" msgid "*key* is the predefined handle to connect to." msgstr "" -#: ../../library/winreg.rst:53 ../../library/winreg.rst:75 -#: ../../library/winreg.rst:103 +#: ../../library/winreg.rst:53 ../../library/winreg.rst:77 +#: ../../library/winreg.rst:109 msgid "" "The return value is the handle of the opened key. If the function fails, an " ":exc:`OSError` exception is raised." msgstr "" -#: ../../library/winreg.rst:56 ../../library/winreg.rst:78 -#: ../../library/winreg.rst:108 ../../library/winreg.rst:127 -#: ../../library/winreg.rst:163 ../../library/winreg.rst:190 -#: ../../library/winreg.rst:223 ../../library/winreg.rst:306 +#: ../../library/winreg.rst:57 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.ConnectRegistry`` with " +"arguments ``computer_name``, ``key``." +msgstr "" + +#: ../../library/winreg.rst:58 ../../library/winreg.rst:84 +#: ../../library/winreg.rst:118 ../../library/winreg.rst:139 +#: ../../library/winreg.rst:177 ../../library/winreg.rst:208 +#: ../../library/winreg.rst:243 ../../library/winreg.rst:334 msgid "See :ref:`above `." msgstr "" -#: ../../library/winreg.rst:62 ../../library/winreg.rst:84 +#: ../../library/winreg.rst:64 ../../library/winreg.rst:90 msgid "" "Creates or opens the specified key, returning a :ref:`handle object `." msgstr "" -#: ../../library/winreg.rst:65 ../../library/winreg.rst:87 -#: ../../library/winreg.rst:116 ../../library/winreg.rst:141 -#: ../../library/winreg.rst:171 ../../library/winreg.rst:181 -#: ../../library/winreg.rst:198 ../../library/winreg.rst:243 -#: ../../library/winreg.rst:288 ../../library/winreg.rst:314 -#: ../../library/winreg.rst:338 ../../library/winreg.rst:356 -#: ../../library/winreg.rst:378 ../../library/winreg.rst:401 -#: ../../library/winreg.rst:427 ../../library/winreg.rst:456 -#: ../../library/winreg.rst:471 ../../library/winreg.rst:484 +#: ../../library/winreg.rst:67 ../../library/winreg.rst:93 +#: ../../library/winreg.rst:126 ../../library/winreg.rst:153 +#: ../../library/winreg.rst:185 ../../library/winreg.rst:197 +#: ../../library/winreg.rst:216 ../../library/winreg.rst:265 +#: ../../library/winreg.rst:312 ../../library/winreg.rst:342 +#: ../../library/winreg.rst:368 ../../library/winreg.rst:388 +#: ../../library/winreg.rst:412 ../../library/winreg.rst:437 +#: ../../library/winreg.rst:465 ../../library/winreg.rst:496 +#: ../../library/winreg.rst:513 ../../library/winreg.rst:528 msgid "" "*key* is an already open key, or one of the predefined :ref:`HKEY_* " "constants `." @@ -112,54 +118,73 @@ msgstr "" "*key* adalah sebuah kunci yang sudah terbuka, atau kunci yang sudah " "didefinisikan di konstanta :ref:`HKEY_* `." -#: ../../library/winreg.rst:68 ../../library/winreg.rst:90 +#: ../../library/winreg.rst:70 ../../library/winreg.rst:96 msgid "*sub_key* is a string that names the key this method opens or creates." msgstr "" -#: ../../library/winreg.rst:70 ../../library/winreg.rst:98 +#: ../../library/winreg.rst:72 ../../library/winreg.rst:104 msgid "" "If *key* is one of the predefined keys, *sub_key* may be ``None``. In that " "case, the handle returned is the same key handle passed in to the function." msgstr "" -#: ../../library/winreg.rst:73 ../../library/winreg.rst:101 +#: ../../library/winreg.rst:75 ../../library/winreg.rst:107 msgid "If the key already exists, this function opens the existing key." msgstr "" -#: ../../library/winreg.rst:92 ../../library/winreg.rst:148 +#: ../../library/winreg.rst:81 ../../library/winreg.rst:113 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.CreateKey`` with " +"arguments ``key``, ``sub_key``, ``access``." +msgstr "" + +#: ../../library/winreg.rst:83 ../../library/winreg.rst:115 +#: ../../library/winreg.rst:330 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.OpenKey/result`` with " +"argument ``key``." +msgstr "" + +#: ../../library/winreg.rst:98 ../../library/winreg.rst:160 msgid "" "*reserved* is a reserved integer, and must be zero. The default is zero." msgstr "" -#: ../../library/winreg.rst:94 +#: ../../library/winreg.rst:100 msgid "" "*access* is an integer that specifies an access mask that describes the " "desired security access for the key. Default is :const:`KEY_WRITE`. See " ":ref:`Access Rights ` for other allowed values." msgstr "" -#: ../../library/winreg.rst:114 ../../library/winreg.rst:133 +#: ../../library/winreg.rst:124 ../../library/winreg.rst:145 msgid "Deletes the specified key." msgstr "" -#: ../../library/winreg.rst:119 +#: ../../library/winreg.rst:129 msgid "" "*sub_key* is a string that must be a subkey of the key identified by the " "*key* parameter. This value must not be ``None``, and the key may not have " "subkeys." msgstr "" -#: ../../library/winreg.rst:122 ../../library/winreg.rst:154 +#: ../../library/winreg.rst:132 ../../library/winreg.rst:166 msgid "*This method can not delete keys with subkeys.*" msgstr "" -#: ../../library/winreg.rst:124 ../../library/winreg.rst:156 +#: ../../library/winreg.rst:134 ../../library/winreg.rst:168 msgid "" "If the method succeeds, the entire key, including all of its values, is " "removed. If the method fails, an :exc:`OSError` exception is raised." msgstr "" -#: ../../library/winreg.rst:136 +#: ../../library/winreg.rst:138 ../../library/winreg.rst:174 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.DeleteKey`` with " +"arguments ``key``, ``sub_key``, ``access``." +msgstr "" + +#: ../../library/winreg.rst:148 msgid "" "The :func:`DeleteKeyEx` function is implemented with the RegDeleteKeyEx " "Windows API function, which is specific to 64-bit versions of Windows. See " @@ -167,119 +192,143 @@ msgid "" "us/library/ms724847%28VS.85%29.aspx>`__." msgstr "" -#: ../../library/winreg.rst:144 +#: ../../library/winreg.rst:156 msgid "" "*sub_key* is a string that must be a subkey of the key identified by the " "*key* parameter. This value must not be ``None``, and the key may not have " "subkeys." msgstr "" -#: ../../library/winreg.rst:150 +#: ../../library/winreg.rst:162 msgid "" "*access* is an integer that specifies an access mask that describes the " "desired security access for the key. Default is :const:`KEY_WOW64_64KEY`. " "See :ref:`Access Rights ` for other allowed values." msgstr "" -#: ../../library/winreg.rst:159 +#: ../../library/winreg.rst:171 msgid "On unsupported Windows versions, :exc:`NotImplementedError` is raised." msgstr "" -#: ../../library/winreg.rst:169 +#: ../../library/winreg.rst:183 msgid "Removes a named value from a registry key." msgstr "" -#: ../../library/winreg.rst:174 +#: ../../library/winreg.rst:188 msgid "*value* is a string that identifies the value to remove." msgstr "" -#: ../../library/winreg.rst:179 +#: ../../library/winreg.rst:190 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.DeleteValue`` with " +"arguments ``key``, ``value``." +msgstr "" + +#: ../../library/winreg.rst:195 msgid "Enumerates subkeys of an open registry key, returning a string." msgstr "" -#: ../../library/winreg.rst:184 +#: ../../library/winreg.rst:200 msgid "" "*index* is an integer that identifies the index of the key to retrieve." msgstr "" -#: ../../library/winreg.rst:186 +#: ../../library/winreg.rst:202 msgid "" "The function retrieves the name of one subkey each time it is called. It is" " typically called repeatedly until an :exc:`OSError` exception is raised, " "indicating, no more values are available." msgstr "" -#: ../../library/winreg.rst:196 +#: ../../library/winreg.rst:207 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.EnumKey`` with arguments" +" ``key``, ``index``." +msgstr "" + +#: ../../library/winreg.rst:214 msgid "Enumerates values of an open registry key, returning a tuple." msgstr "" -#: ../../library/winreg.rst:201 +#: ../../library/winreg.rst:219 msgid "" "*index* is an integer that identifies the index of the value to retrieve." msgstr "" -#: ../../library/winreg.rst:203 +#: ../../library/winreg.rst:221 msgid "" "The function retrieves the name of one subkey each time it is called. It is " "typically called repeatedly, until an :exc:`OSError` exception is raised, " "indicating no more values." msgstr "" -#: ../../library/winreg.rst:207 ../../library/winreg.rst:317 +#: ../../library/winreg.rst:225 ../../library/winreg.rst:345 msgid "The result is a tuple of 3 items:" msgstr "" -#: ../../library/winreg.rst:210 ../../library/winreg.rst:320 -#: ../../library/winreg.rst:364 +#: ../../library/winreg.rst:228 ../../library/winreg.rst:348 +#: ../../library/winreg.rst:396 msgid "Index" msgstr "Indeks" -#: ../../library/winreg.rst:210 ../../library/winreg.rst:320 -#: ../../library/winreg.rst:364 +#: ../../library/winreg.rst:228 ../../library/winreg.rst:348 +#: ../../library/winreg.rst:396 msgid "Meaning" msgstr "Artinya" -#: ../../library/winreg.rst:212 ../../library/winreg.rst:322 -#: ../../library/winreg.rst:366 +#: ../../library/winreg.rst:230 ../../library/winreg.rst:350 +#: ../../library/winreg.rst:398 msgid "``0``" msgstr "``0``" -#: ../../library/winreg.rst:212 +#: ../../library/winreg.rst:230 msgid "A string that identifies the value name" msgstr "" -#: ../../library/winreg.rst:214 ../../library/winreg.rst:325 -#: ../../library/winreg.rst:368 +#: ../../library/winreg.rst:232 ../../library/winreg.rst:353 +#: ../../library/winreg.rst:400 msgid "``1``" msgstr "``1``" -#: ../../library/winreg.rst:214 +#: ../../library/winreg.rst:232 msgid "" "An object that holds the value data, and whose type depends on the " "underlying registry type" msgstr "" -#: ../../library/winreg.rst:218 ../../library/winreg.rst:328 +#: ../../library/winreg.rst:236 ../../library/winreg.rst:356 msgid "``2``" msgstr "``2``" -#: ../../library/winreg.rst:218 +#: ../../library/winreg.rst:236 msgid "" "An integer that identifies the type of the value data (see table in docs for" " :meth:`SetValueEx`)" msgstr "" -#: ../../library/winreg.rst:232 +#: ../../library/winreg.rst:242 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.EnumValue`` with " +"arguments ``key``, ``index``." +msgstr "" + +#: ../../library/winreg.rst:252 msgid "" "Expands environment variable placeholders ``%NAME%`` in strings like " ":const:`REG_EXPAND_SZ`::" msgstr "" -#: ../../library/winreg.rst:241 +#: ../../library/winreg.rst:258 +msgid "" +"Raises an :ref:`auditing event ` " +"``winreg.ExpandEnvironmentStrings`` with argument ``str``." +msgstr "" + +#: ../../library/winreg.rst:263 msgid "Writes all the attributes of a key to the registry." msgstr "" -#: ../../library/winreg.rst:246 +#: ../../library/winreg.rst:268 msgid "" "It is not necessary to call :func:`FlushKey` to change a key. Registry " "changes are flushed to disk by the registry using its lazy flusher. " @@ -290,36 +339,36 @@ msgid "" " on disk." msgstr "" -#: ../../library/winreg.rst:255 +#: ../../library/winreg.rst:277 msgid "" "If you don't know whether a :func:`FlushKey` call is required, it probably " "isn't." msgstr "" -#: ../../library/winreg.rst:261 +#: ../../library/winreg.rst:283 msgid "" "Creates a subkey under the specified key and stores registration information" " from a specified file into that subkey." msgstr "" -#: ../../library/winreg.rst:264 +#: ../../library/winreg.rst:286 msgid "" "*key* is a handle returned by :func:`ConnectRegistry` or one of the " "constants :const:`HKEY_USERS` or :const:`HKEY_LOCAL_MACHINE`." msgstr "" -#: ../../library/winreg.rst:267 +#: ../../library/winreg.rst:289 msgid "*sub_key* is a string that identifies the subkey to load." msgstr "" -#: ../../library/winreg.rst:269 +#: ../../library/winreg.rst:291 msgid "" "*file_name* is the name of the file to load registry data from. This file " "must have been created with the :func:`SaveKey` function. Under the file " "allocation table (FAT) file system, the filename may not have an extension." msgstr "" -#: ../../library/winreg.rst:273 +#: ../../library/winreg.rst:295 msgid "" "A call to :func:`LoadKey` fails if the calling process does not have the " ":const:`SE_RESTORE_PRIVILEGE` privilege. Note that privileges are different" @@ -328,68 +377,86 @@ msgid "" " more details." msgstr "" -#: ../../library/winreg.rst:279 +#: ../../library/winreg.rst:301 msgid "" "If *key* is a handle returned by :func:`ConnectRegistry`, then the path " "specified in *file_name* is relative to the remote computer." msgstr "" -#: ../../library/winreg.rst:286 +#: ../../library/winreg.rst:304 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.LoadKey`` with arguments" +" ``key``, ``sub_key``, ``file_name``." +msgstr "" + +#: ../../library/winreg.rst:310 msgid "" "Opens the specified key, returning a :ref:`handle object `." msgstr "" -#: ../../library/winreg.rst:291 +#: ../../library/winreg.rst:315 msgid "*sub_key* is a string that identifies the sub_key to open." msgstr "" -#: ../../library/winreg.rst:293 +#: ../../library/winreg.rst:317 msgid "" "*reserved* is a reserved integer, and must be zero. The default is zero." msgstr "" -#: ../../library/winreg.rst:295 +#: ../../library/winreg.rst:319 msgid "" "*access* is an integer that specifies an access mask that describes the " "desired security access for the key. Default is :const:`KEY_READ`. See " ":ref:`Access Rights ` for other allowed values." msgstr "" -#: ../../library/winreg.rst:299 +#: ../../library/winreg.rst:323 msgid "The result is a new handle to the specified key." msgstr "" -#: ../../library/winreg.rst:301 +#: ../../library/winreg.rst:325 msgid "If the function fails, :exc:`OSError` is raised." msgstr "" -#: ../../library/winreg.rst:303 +#: ../../library/winreg.rst:328 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.OpenKey`` with arguments" +" ``key``, ``sub_key``, ``access``." +msgstr "" + +#: ../../library/winreg.rst:331 msgid "Allow the use of named arguments." msgstr "" -#: ../../library/winreg.rst:312 +#: ../../library/winreg.rst:340 msgid "Returns information about a key, as a tuple." msgstr "" -#: ../../library/winreg.rst:322 +#: ../../library/winreg.rst:350 msgid "An integer giving the number of sub keys this key has." msgstr "" -#: ../../library/winreg.rst:325 +#: ../../library/winreg.rst:353 msgid "An integer giving the number of values this key has." msgstr "" -#: ../../library/winreg.rst:328 +#: ../../library/winreg.rst:356 msgid "" "An integer giving when the key was last modified (if available) as 100's of " "nanoseconds since Jan 1, 1601." msgstr "" -#: ../../library/winreg.rst:336 +#: ../../library/winreg.rst:361 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.QueryInfoKey`` with " +"argument ``key``." +msgstr "" + +#: ../../library/winreg.rst:366 msgid "Retrieves the unnamed value for a key, as a string." msgstr "" -#: ../../library/winreg.rst:341 +#: ../../library/winreg.rst:371 msgid "" "*sub_key* is a string that holds the name of the subkey with which the value" " is associated. If this parameter is ``None`` or empty, the function " @@ -397,7 +464,7 @@ msgid "" "identified by *key*." msgstr "" -#: ../../library/winreg.rst:345 +#: ../../library/winreg.rst:375 msgid "" "Values in the registry have name, type, and data components. This method " "retrieves the data for a key's first value that has a ``NULL`` name. But the" @@ -405,35 +472,41 @@ msgid "" ":func:`QueryValueEx` if possible." msgstr "" -#: ../../library/winreg.rst:353 +#: ../../library/winreg.rst:380 ../../library/winreg.rst:405 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.QueryValue`` with " +"arguments ``key``, ``sub_key``, ``value_name``." +msgstr "" + +#: ../../library/winreg.rst:385 msgid "" "Retrieves the type and data for a specified value name associated with an " "open registry key." msgstr "" -#: ../../library/winreg.rst:359 +#: ../../library/winreg.rst:391 msgid "*value_name* is a string indicating the value to query." msgstr "" -#: ../../library/winreg.rst:361 +#: ../../library/winreg.rst:393 msgid "The result is a tuple of 2 items:" msgstr "" -#: ../../library/winreg.rst:366 +#: ../../library/winreg.rst:398 msgid "The value of the registry item." msgstr "" -#: ../../library/winreg.rst:368 +#: ../../library/winreg.rst:400 msgid "" "An integer giving the registry type for this value (see table in docs for " ":meth:`SetValueEx`)" msgstr "" -#: ../../library/winreg.rst:376 +#: ../../library/winreg.rst:410 msgid "Saves the specified key, and all its subkeys to the specified file." msgstr "" -#: ../../library/winreg.rst:381 +#: ../../library/winreg.rst:415 msgid "" "*file_name* is the name of the file to save registry data to. This file " "cannot already exist. If this filename includes an extension, it cannot be " @@ -441,7 +514,7 @@ msgid "" "method." msgstr "" -#: ../../library/winreg.rst:386 +#: ../../library/winreg.rst:420 msgid "" "If *key* represents a key on a remote computer, the path described by " "*file_name* is relative to the remote computer. The caller of this method " @@ -451,140 +524,170 @@ msgid "" "us/library/ms724878%28v=VS.85%29.aspx>`__ for more details." msgstr "" -#: ../../library/winreg.rst:394 +#: ../../library/winreg.rst:428 msgid "This function passes ``NULL`` for *security_attributes* to the API." msgstr "" -#: ../../library/winreg.rst:399 +#: ../../library/winreg.rst:430 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.SaveKey`` with arguments" +" ``key``, ``file_name``." +msgstr "" + +#: ../../library/winreg.rst:435 msgid "Associates a value with a specified key." msgstr "" -#: ../../library/winreg.rst:404 +#: ../../library/winreg.rst:440 msgid "" "*sub_key* is a string that names the subkey with which the value is " "associated." msgstr "" -#: ../../library/winreg.rst:406 +#: ../../library/winreg.rst:442 msgid "" "*type* is an integer that specifies the type of the data. Currently this " "must be :const:`REG_SZ`, meaning only strings are supported. Use the " ":func:`SetValueEx` function for support for other data types." msgstr "" -#: ../../library/winreg.rst:410 ../../library/winreg.rst:438 +#: ../../library/winreg.rst:446 ../../library/winreg.rst:476 msgid "*value* is a string that specifies the new value." msgstr "" -#: ../../library/winreg.rst:412 +#: ../../library/winreg.rst:448 msgid "" "If the key specified by the *sub_key* parameter does not exist, the SetValue" " function creates it." msgstr "" -#: ../../library/winreg.rst:415 ../../library/winreg.rst:446 +#: ../../library/winreg.rst:451 ../../library/winreg.rst:484 msgid "" "Value lengths are limited by available memory. Long values (more than 2048 " "bytes) should be stored as files with the filenames stored in the " "configuration registry. This helps the registry perform efficiently." msgstr "" -#: ../../library/winreg.rst:419 +#: ../../library/winreg.rst:455 msgid "" "The key identified by the *key* parameter must have been opened with " ":const:`KEY_SET_VALUE` access." msgstr "" -#: ../../library/winreg.rst:425 +#: ../../library/winreg.rst:458 ../../library/winreg.rst:488 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.SetValue`` with " +"arguments ``key``, ``sub_key``, ``type``, ``value``." +msgstr "" + +#: ../../library/winreg.rst:463 msgid "Stores data in the value field of an open registry key." msgstr "" -#: ../../library/winreg.rst:430 +#: ../../library/winreg.rst:468 msgid "" "*value_name* is a string that names the subkey with which the value is " "associated." msgstr "" -#: ../../library/winreg.rst:433 +#: ../../library/winreg.rst:471 msgid "*reserved* can be anything -- zero is always passed to the API." msgstr "" -#: ../../library/winreg.rst:435 +#: ../../library/winreg.rst:473 msgid "" "*type* is an integer that specifies the type of the data. See :ref:`Value " "Types ` for the available types." msgstr "" -#: ../../library/winreg.rst:440 +#: ../../library/winreg.rst:478 msgid "" "This method can also set additional value and type information for the " "specified key. The key identified by the key parameter must have been " "opened with :const:`KEY_SET_VALUE` access." msgstr "" -#: ../../library/winreg.rst:444 +#: ../../library/winreg.rst:482 msgid "To open the key, use the :func:`CreateKey` or :func:`OpenKey` methods." msgstr "" -#: ../../library/winreg.rst:453 +#: ../../library/winreg.rst:493 msgid "" "Disables registry reflection for 32-bit processes running on a 64-bit " "operating system." msgstr "" -#: ../../library/winreg.rst:459 ../../library/winreg.rst:474 -#: ../../library/winreg.rst:489 +#: ../../library/winreg.rst:499 ../../library/winreg.rst:516 +#: ../../library/winreg.rst:533 msgid "" "Will generally raise :exc:`NotImplementedError` if executed on a 32-bit " "operating system." msgstr "" -#: ../../library/winreg.rst:462 +#: ../../library/winreg.rst:502 msgid "" "If the key is not on the reflection list, the function succeeds but has no " "effect. Disabling reflection for a key does not affect reflection of any " "subkeys." msgstr "" -#: ../../library/winreg.rst:469 +#: ../../library/winreg.rst:506 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.DisableReflectionKey`` " +"with argument ``key``." +msgstr "" + +#: ../../library/winreg.rst:511 msgid "Restores registry reflection for the specified disabled key." msgstr "" -#: ../../library/winreg.rst:477 +#: ../../library/winreg.rst:519 msgid "" "Restoring reflection for a key does not affect reflection of any subkeys." msgstr "" -#: ../../library/winreg.rst:482 +#: ../../library/winreg.rst:521 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.EnableReflectionKey`` " +"with argument ``key``." +msgstr "" + +#: ../../library/winreg.rst:526 msgid "Determines the reflection state for the specified key." msgstr "" -#: ../../library/winreg.rst:487 +#: ../../library/winreg.rst:531 msgid "Returns ``True`` if reflection is disabled." msgstr "" -#: ../../library/winreg.rst:496 +#: ../../library/winreg.rst:536 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.QueryReflectionKey`` " +"with argument ``key``." +msgstr "" + +#: ../../library/winreg.rst:542 msgid "Constants" msgstr "Konstanta" -#: ../../library/winreg.rst:498 +#: ../../library/winreg.rst:544 msgid "" "The following constants are defined for use in many :mod:`_winreg` " "functions." msgstr "" -#: ../../library/winreg.rst:503 +#: ../../library/winreg.rst:549 msgid "HKEY_* Constants" msgstr "" -#: ../../library/winreg.rst:507 +#: ../../library/winreg.rst:553 msgid "" "Registry entries subordinate to this key define types (or classes) of " "documents and the properties associated with those types. Shell and COM " "applications use the information stored under this key." msgstr "" -#: ../../library/winreg.rst:514 +#: ../../library/winreg.rst:560 msgid "" "Registry entries subordinate to this key define the preferences of the " "current user. These preferences include the settings of environment " @@ -592,48 +695,48 @@ msgid "" " and application preferences." msgstr "" -#: ../../library/winreg.rst:521 +#: ../../library/winreg.rst:567 msgid "" "Registry entries subordinate to this key define the physical state of the " "computer, including data about the bus type, system memory, and installed " "hardware and software." msgstr "" -#: ../../library/winreg.rst:527 +#: ../../library/winreg.rst:573 msgid "" "Registry entries subordinate to this key define the default user " "configuration for new users on the local computer and the user configuration" " for the current user." msgstr "" -#: ../../library/winreg.rst:533 +#: ../../library/winreg.rst:579 msgid "" "Registry entries subordinate to this key allow you to access performance " "data. The data is not actually stored in the registry; the registry " "functions cause the system to collect the data from its source." msgstr "" -#: ../../library/winreg.rst:541 +#: ../../library/winreg.rst:587 msgid "" "Contains information about the current hardware profile of the local " "computer system." msgstr "" -#: ../../library/winreg.rst:546 +#: ../../library/winreg.rst:592 msgid "This key is not used in versions of Windows after 98." msgstr "" -#: ../../library/winreg.rst:552 +#: ../../library/winreg.rst:598 msgid "Access Rights" msgstr "" -#: ../../library/winreg.rst:554 +#: ../../library/winreg.rst:600 msgid "" "For more information, see `Registry Key Security and Access " "`__." msgstr "" -#: ../../library/winreg.rst:559 +#: ../../library/winreg.rst:605 msgid "" "Combines the STANDARD_RIGHTS_REQUIRED, :const:`KEY_QUERY_VALUE`, " ":const:`KEY_SET_VALUE`, :const:`KEY_CREATE_SUB_KEY`, " @@ -641,147 +744,147 @@ msgid "" ":const:`KEY_CREATE_LINK` access rights." msgstr "" -#: ../../library/winreg.rst:566 +#: ../../library/winreg.rst:612 msgid "" "Combines the STANDARD_RIGHTS_WRITE, :const:`KEY_SET_VALUE`, and " ":const:`KEY_CREATE_SUB_KEY` access rights." msgstr "" -#: ../../library/winreg.rst:571 +#: ../../library/winreg.rst:617 msgid "" "Combines the STANDARD_RIGHTS_READ, :const:`KEY_QUERY_VALUE`, " ":const:`KEY_ENUMERATE_SUB_KEYS`, and :const:`KEY_NOTIFY` values." msgstr "" -#: ../../library/winreg.rst:576 +#: ../../library/winreg.rst:622 msgid "Equivalent to :const:`KEY_READ`." msgstr "" -#: ../../library/winreg.rst:580 +#: ../../library/winreg.rst:626 msgid "Required to query the values of a registry key." msgstr "" -#: ../../library/winreg.rst:584 +#: ../../library/winreg.rst:630 msgid "Required to create, delete, or set a registry value." msgstr "" -#: ../../library/winreg.rst:588 +#: ../../library/winreg.rst:634 msgid "Required to create a subkey of a registry key." msgstr "" -#: ../../library/winreg.rst:592 +#: ../../library/winreg.rst:638 msgid "Required to enumerate the subkeys of a registry key." msgstr "" -#: ../../library/winreg.rst:596 +#: ../../library/winreg.rst:642 msgid "" "Required to request change notifications for a registry key or for subkeys " "of a registry key." msgstr "" -#: ../../library/winreg.rst:601 +#: ../../library/winreg.rst:647 msgid "Reserved for system use." msgstr "" -#: ../../library/winreg.rst:607 +#: ../../library/winreg.rst:653 msgid "64-bit Specific" msgstr "" -#: ../../library/winreg.rst:609 +#: ../../library/winreg.rst:655 msgid "" "For more information, see `Accessing an Alternate Registry View " "`__." msgstr "" -#: ../../library/winreg.rst:614 +#: ../../library/winreg.rst:660 msgid "" "Indicates that an application on 64-bit Windows should operate on the 64-bit" " registry view." msgstr "" -#: ../../library/winreg.rst:619 +#: ../../library/winreg.rst:665 msgid "" "Indicates that an application on 64-bit Windows should operate on the 32-bit" " registry view." msgstr "" -#: ../../library/winreg.rst:626 +#: ../../library/winreg.rst:672 msgid "Value Types" msgstr "" -#: ../../library/winreg.rst:628 +#: ../../library/winreg.rst:674 msgid "" "For more information, see `Registry Value Types `__." msgstr "" -#: ../../library/winreg.rst:633 +#: ../../library/winreg.rst:679 msgid "Binary data in any form." msgstr "" -#: ../../library/winreg.rst:637 +#: ../../library/winreg.rst:683 msgid "32-bit number." msgstr "" -#: ../../library/winreg.rst:641 +#: ../../library/winreg.rst:687 msgid "" "A 32-bit number in little-endian format. Equivalent to :const:`REG_DWORD`." msgstr "" -#: ../../library/winreg.rst:645 +#: ../../library/winreg.rst:691 msgid "A 32-bit number in big-endian format." msgstr "" -#: ../../library/winreg.rst:649 +#: ../../library/winreg.rst:695 msgid "" "Null-terminated string containing references to environment variables " "(``%PATH%``)." msgstr "" -#: ../../library/winreg.rst:654 +#: ../../library/winreg.rst:700 msgid "A Unicode symbolic link." msgstr "" -#: ../../library/winreg.rst:658 +#: ../../library/winreg.rst:704 msgid "" "A sequence of null-terminated strings, terminated by two null characters. " "(Python handles this termination automatically.)" msgstr "" -#: ../../library/winreg.rst:663 +#: ../../library/winreg.rst:709 msgid "No defined value type." msgstr "" -#: ../../library/winreg.rst:667 +#: ../../library/winreg.rst:713 msgid "A 64-bit number." msgstr "" -#: ../../library/winreg.rst:673 +#: ../../library/winreg.rst:719 msgid "" "A 64-bit number in little-endian format. Equivalent to :const:`REG_QWORD`." msgstr "" -#: ../../library/winreg.rst:679 +#: ../../library/winreg.rst:725 msgid "A device-driver resource list." msgstr "" -#: ../../library/winreg.rst:683 +#: ../../library/winreg.rst:729 msgid "A hardware setting." msgstr "" -#: ../../library/winreg.rst:687 +#: ../../library/winreg.rst:733 msgid "A hardware resource list." msgstr "" -#: ../../library/winreg.rst:691 +#: ../../library/winreg.rst:737 msgid "A null-terminated string." msgstr "" -#: ../../library/winreg.rst:697 +#: ../../library/winreg.rst:743 msgid "Registry Handle Objects" msgstr "" -#: ../../library/winreg.rst:699 +#: ../../library/winreg.rst:745 msgid "" "This object wraps a Windows HKEY object, automatically closing it when the " "object is destroyed. To guarantee cleanup, you can call either the " @@ -789,33 +892,33 @@ msgid "" "function." msgstr "" -#: ../../library/winreg.rst:703 +#: ../../library/winreg.rst:749 msgid "All registry functions in this module return one of these objects." msgstr "" -#: ../../library/winreg.rst:705 +#: ../../library/winreg.rst:751 msgid "" "All registry functions in this module which accept a handle object also " "accept an integer, however, use of the handle object is encouraged." msgstr "" -#: ../../library/winreg.rst:708 +#: ../../library/winreg.rst:754 msgid "Handle objects provide semantics for :meth:`__bool__` -- thus ::" msgstr "" -#: ../../library/winreg.rst:713 +#: ../../library/winreg.rst:759 msgid "" "will print ``Yes`` if the handle is currently valid (has not been closed or " "detached)." msgstr "" -#: ../../library/winreg.rst:716 +#: ../../library/winreg.rst:762 msgid "" "The object also support comparison semantics, so handle objects will compare" " true if they both reference the same underlying Windows handle value." msgstr "" -#: ../../library/winreg.rst:719 +#: ../../library/winreg.rst:765 msgid "" "Handle objects can be converted to an integer (e.g., using the built-in " ":func:`int` function), in which case the underlying Windows handle value is " @@ -824,40 +927,46 @@ msgid "" "object." msgstr "" -#: ../../library/winreg.rst:727 +#: ../../library/winreg.rst:773 msgid "Closes the underlying Windows handle." msgstr "" -#: ../../library/winreg.rst:729 +#: ../../library/winreg.rst:775 msgid "If the handle is already closed, no error is raised." msgstr "" -#: ../../library/winreg.rst:734 +#: ../../library/winreg.rst:780 msgid "Detaches the Windows handle from the handle object." msgstr "" -#: ../../library/winreg.rst:736 +#: ../../library/winreg.rst:782 msgid "" "The result is an integer that holds the value of the handle before it is " "detached. If the handle is already detached or closed, this will return " "zero." msgstr "" -#: ../../library/winreg.rst:740 +#: ../../library/winreg.rst:786 msgid "" "After calling this function, the handle is effectively invalidated, but the " "handle is not closed. You would call this function when you need the " "underlying Win32 handle to exist beyond the lifetime of the handle object." msgstr "" -#: ../../library/winreg.rst:747 +#: ../../library/winreg.rst:790 +msgid "" +"Raises an :ref:`auditing event ` ``winreg.PyHKEY.Detach`` with " +"argument ``key``." +msgstr "" + +#: ../../library/winreg.rst:796 msgid "" "The HKEY object implements :meth:`~object.__enter__` and " ":meth:`~object.__exit__` and thus supports the context protocol for the " ":keyword:`with` statement::" msgstr "" -#: ../../library/winreg.rst:754 +#: ../../library/winreg.rst:803 msgid "" "will automatically close *key* when control leaves the :keyword:`with` " "block." diff --git a/library/wsgiref.po b/library/wsgiref.po index c4be175..e8ee6a7 100644 --- a/library/wsgiref.po +++ b/library/wsgiref.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:35+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -171,7 +171,7 @@ msgstr "" #: ../../library/wsgiref.rst:147 msgid "" -"Return true if 'header_name' is an HTTP/1.1 \"Hop-by-Hop\" header, as " +"Return ``True`` if 'header_name' is an HTTP/1.1 \"Hop-by-Hop\" header, as " "defined by :rfc:`2616`." msgstr "" diff --git a/library/xml.dom.po b/library/xml.dom.po index 66fbb44..bcd408a 100644 --- a/library/xml.dom.po +++ b/library/xml.dom.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:36+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -375,8 +375,8 @@ msgstr "" #: ../../library/xml.dom.rst:213 msgid "" -"Return true if the feature identified by the pair of strings *feature* and " -"*version* is implemented." +"Return ``True`` if the feature identified by the pair of strings *feature* " +"and *version* is implemented." msgstr "" #: ../../library/xml.dom.rst:219 @@ -501,16 +501,16 @@ msgid "" msgstr "" #: ../../library/xml.dom.rst:338 -msgid "Returns true if the node has any attributes." +msgid "Return ``True`` if the node has any attributes." msgstr "" #: ../../library/xml.dom.rst:343 -msgid "Returns true if the node has any child nodes." +msgid "Return ``True`` if the node has any child nodes." msgstr "" #: ../../library/xml.dom.rst:348 msgid "" -"Returns true if *other* refers to the same node as this node. This is " +"Return ``True`` if *other* refers to the same node as this node. This is " "especially useful for DOM implementations which use any sort of proxy " "architecture (because more than one object can refer to the same node)." msgstr "" @@ -778,12 +778,12 @@ msgid "Same as equivalent method in the :class:`Document` class." msgstr "" #: ../../library/xml.dom.rst:607 -msgid "Returns true if the element has an attribute named by *name*." +msgid "Return ``True`` if the element has an attribute named by *name*." msgstr "" #: ../../library/xml.dom.rst:612 msgid "" -"Returns true if the element has an attribute named by *namespaceURI* and " +"Return ``True`` if the element has an attribute named by *namespaceURI* and " "*localName*." msgstr "" diff --git a/library/xml.etree.elementtree.po b/library/xml.etree.elementtree.po index 286da24..a3a37ce 100644 --- a/library/xml.etree.elementtree.po +++ b/library/xml.etree.elementtree.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-12 11:28+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:36+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -596,8 +596,8 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:577 msgid "" -"Checks if an object appears to be a valid element object. *element* is an " -"element instance. Returns a true value if this is an element object." +"Check if an object appears to be a valid element object. *element* is an " +"element instance. Return ``True`` if this is an element object." msgstr "" #: ../../library/xml.etree.elementtree.rst:583 diff --git a/reference/datamodel.po b/reference/datamodel.po index 9e6bdc1..0a230ba 100644 --- a/reference/datamodel.po +++ b/reference/datamodel.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-11 00:37+0000\n" +"POT-Creation-Date: 2019-11-28 12:03+0000\n" "PO-Revision-Date: 2017-02-16 23:38+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -1815,8 +1815,8 @@ msgstr "" #: ../../reference/datamodel.rst:1569 msgid "" -"The ``__dir__`` function should accept no arguments, and return a list of " -"strings that represents the names accessible on module. If present, this " +"The ``__dir__`` function should accept no arguments, and return a sequence " +"of strings that represents the names accessible on module. If present, this " "function overrides the standard :func:`dir` search on a module." msgstr "" @@ -1914,7 +1914,18 @@ msgid "" "been assigned to *name*." msgstr "" -#: ../../reference/datamodel.rst:1661 +#: ../../reference/datamodel.rst:1660 +msgid "" +":meth:`__set_name__` is only called implicitly as part of the :class:`type` " +"constructor, so it will need to be called explicitly with the appropriate " +"parameters when a descriptor is added to a class after initial creation::" +msgstr "" + +#: ../../reference/datamodel.rst:1671 +msgid "See :ref:`class-object-creation` for more details." +msgstr "" + +#: ../../reference/datamodel.rst:1675 msgid "" "The attribute :attr:`__objclass__` is interpreted by the :mod:`inspect` " "module as specifying the class where this object was defined (setting this " @@ -1925,11 +1936,11 @@ msgid "" "are implemented in C)." msgstr "" -#: ../../reference/datamodel.rst:1672 +#: ../../reference/datamodel.rst:1686 msgid "Invoking Descriptors" msgstr "" -#: ../../reference/datamodel.rst:1674 +#: ../../reference/datamodel.rst:1688 msgid "" "In general, a descriptor is an object attribute with \"binding behavior\", " "one whose attribute access has been overridden by methods in the descriptor " @@ -1937,7 +1948,7 @@ msgid "" "of those methods are defined for an object, it is said to be a descriptor." msgstr "" -#: ../../reference/datamodel.rst:1679 +#: ../../reference/datamodel.rst:1693 msgid "" "The default behavior for attribute access is to get, set, or delete the " "attribute from an object's dictionary. For instance, ``a.x`` has a lookup " @@ -1945,7 +1956,7 @@ msgid "" " continuing through the base classes of ``type(a)`` excluding metaclasses." msgstr "" -#: ../../reference/datamodel.rst:1684 +#: ../../reference/datamodel.rst:1698 msgid "" "However, if the looked-up value is an object defining one of the descriptor " "methods, then Python may override the default behavior and invoke the " @@ -1953,47 +1964,47 @@ msgid "" "depends on which descriptor methods were defined and how they were called." msgstr "" -#: ../../reference/datamodel.rst:1689 +#: ../../reference/datamodel.rst:1703 msgid "" "The starting point for descriptor invocation is a binding, ``a.x``. How the " "arguments are assembled depends on ``a``:" msgstr "" -#: ../../reference/datamodel.rst:1694 +#: ../../reference/datamodel.rst:1708 msgid "Direct Call" msgstr "" -#: ../../reference/datamodel.rst:1693 +#: ../../reference/datamodel.rst:1707 msgid "" "The simplest and least common call is when user code directly invokes a " "descriptor method: ``x.__get__(a)``." msgstr "" -#: ../../reference/datamodel.rst:1698 +#: ../../reference/datamodel.rst:1712 msgid "Instance Binding" msgstr "" -#: ../../reference/datamodel.rst:1697 +#: ../../reference/datamodel.rst:1711 msgid "" "If binding to an object instance, ``a.x`` is transformed into the call: " "``type(a).__dict__['x'].__get__(a, type(a))``." msgstr "" -#: ../../reference/datamodel.rst:1702 +#: ../../reference/datamodel.rst:1716 msgid "Class Binding" msgstr "" -#: ../../reference/datamodel.rst:1701 +#: ../../reference/datamodel.rst:1715 msgid "" "If binding to a class, ``A.x`` is transformed into the call: " "``A.__dict__['x'].__get__(None, A)``." msgstr "" -#: ../../reference/datamodel.rst:1708 +#: ../../reference/datamodel.rst:1722 msgid "Super Binding" msgstr "" -#: ../../reference/datamodel.rst:1705 +#: ../../reference/datamodel.rst:1719 msgid "" "If ``a`` is an instance of :class:`super`, then the binding ``super(B, " "obj).m()`` searches ``obj.__class__.__mro__`` for the base class ``A`` " @@ -2001,7 +2012,7 @@ msgid "" "``A.__dict__['m'].__get__(obj, obj.__class__)``." msgstr "" -#: ../../reference/datamodel.rst:1710 +#: ../../reference/datamodel.rst:1724 msgid "" "For instance bindings, the precedence of descriptor invocation depends on " "the which descriptor methods are defined. A descriptor can define any " @@ -2018,7 +2029,7 @@ msgid "" "instances." msgstr "" -#: ../../reference/datamodel.rst:1723 +#: ../../reference/datamodel.rst:1737 msgid "" "Python methods (including :func:`staticmethod` and :func:`classmethod`) are " "implemented as non-data descriptors. Accordingly, instances can redefine " @@ -2026,30 +2037,30 @@ msgid "" " that differ from other instances of the same class." msgstr "" -#: ../../reference/datamodel.rst:1728 +#: ../../reference/datamodel.rst:1742 msgid "" "The :func:`property` function is implemented as a data descriptor. " "Accordingly, instances cannot override the behavior of a property." msgstr "" -#: ../../reference/datamodel.rst:1735 +#: ../../reference/datamodel.rst:1749 msgid "__slots__" msgstr "" -#: ../../reference/datamodel.rst:1737 +#: ../../reference/datamodel.rst:1751 msgid "" "*__slots__* allow us to explicitly declare data members (like properties) " "and deny the creation of *__dict__* and *__weakref__* (unless explicitly " "declared in *__slots__* or available in a parent.)" msgstr "" -#: ../../reference/datamodel.rst:1741 +#: ../../reference/datamodel.rst:1755 msgid "" "The space saved over using *__dict__* can be significant. Attribute lookup " "speed can be significantly improved as well." msgstr "" -#: ../../reference/datamodel.rst:1746 +#: ../../reference/datamodel.rst:1760 msgid "" "This class variable can be assigned a string, iterable, or sequence of " "strings with variable names used by instances. *__slots__* reserves space " @@ -2057,17 +2068,17 @@ msgid "" " and *__weakref__* for each instance." msgstr "" -#: ../../reference/datamodel.rst:1753 +#: ../../reference/datamodel.rst:1767 msgid "Notes on using *__slots__*" msgstr "" -#: ../../reference/datamodel.rst:1755 +#: ../../reference/datamodel.rst:1769 msgid "" "When inheriting from a class without *__slots__*, the *__dict__* and " "*__weakref__* attribute of the instances will always be accessible." msgstr "" -#: ../../reference/datamodel.rst:1758 +#: ../../reference/datamodel.rst:1772 msgid "" "Without a *__dict__* variable, instances cannot be assigned new variables " "not listed in the *__slots__* definition. Attempts to assign to an unlisted" @@ -2076,7 +2087,7 @@ msgid "" "the *__slots__* declaration." msgstr "" -#: ../../reference/datamodel.rst:1764 +#: ../../reference/datamodel.rst:1778 msgid "" "Without a *__weakref__* variable for each instance, classes defining " "*__slots__* do not support weak references to its instances. If weak " @@ -2084,7 +2095,7 @@ msgid "" "strings in the *__slots__* declaration." msgstr "" -#: ../../reference/datamodel.rst:1769 +#: ../../reference/datamodel.rst:1783 msgid "" "*__slots__* are implemented at the class level by creating descriptors " "(:ref:`descriptors`) for each variable name. As a result, class attributes " @@ -2093,7 +2104,7 @@ msgid "" "assignment." msgstr "" -#: ../../reference/datamodel.rst:1775 +#: ../../reference/datamodel.rst:1789 msgid "" "The action of a *__slots__* declaration is not limited to the class where it" " is defined. *__slots__* declared in parents are available in child " @@ -2102,7 +2113,7 @@ msgid "" "*additional* slots)." msgstr "" -#: ../../reference/datamodel.rst:1781 +#: ../../reference/datamodel.rst:1795 msgid "" "If a class defines a slot also defined in a base class, the instance " "variable defined by the base class slot is inaccessible (except by " @@ -2111,37 +2122,44 @@ msgid "" "prevent this." msgstr "" -#: ../../reference/datamodel.rst:1786 +#: ../../reference/datamodel.rst:1800 msgid "" "Nonempty *__slots__* does not work for classes derived from \"variable-" "length\" built-in types such as :class:`int`, :class:`bytes` and " ":class:`tuple`." msgstr "" -#: ../../reference/datamodel.rst:1789 +#: ../../reference/datamodel.rst:1803 msgid "" "Any non-string iterable may be assigned to *__slots__*. Mappings may also be" " used; however, in the future, special meaning may be assigned to the values" " corresponding to each key." msgstr "" -#: ../../reference/datamodel.rst:1793 +#: ../../reference/datamodel.rst:1807 msgid "" "*__class__* assignment works only if both classes have the same *__slots__*." msgstr "" -#: ../../reference/datamodel.rst:1795 +#: ../../reference/datamodel.rst:1809 msgid "" "Multiple inheritance with multiple slotted parent classes can be used, but " "only one parent is allowed to have attributes created by slots (the other " "bases must have empty slot layouts) - violations raise :exc:`TypeError`." msgstr "" -#: ../../reference/datamodel.rst:1803 +#: ../../reference/datamodel.rst:1814 +msgid "" +"If an iterator is used for *__slots__* then a descriptor is created for each" +" of the iterator's values. However, the *__slots__* attribute will be an " +"empty iterator." +msgstr "" + +#: ../../reference/datamodel.rst:1821 msgid "Customizing class creation" msgstr "" -#: ../../reference/datamodel.rst:1805 +#: ../../reference/datamodel.rst:1823 msgid "" "Whenever a class inherits from another class, *__init_subclass__* is called " "on that class. This way, it is possible to write classes which change the " @@ -2151,14 +2169,14 @@ msgid "" "defining the method." msgstr "" -#: ../../reference/datamodel.rst:1814 +#: ../../reference/datamodel.rst:1832 msgid "" "This method is called whenever the containing class is subclassed. *cls* is " "then the new subclass. If defined as a normal instance method, this method " "is implicitly converted to a class method." msgstr "" -#: ../../reference/datamodel.rst:1818 +#: ../../reference/datamodel.rst:1836 msgid "" "Keyword arguments which are given to a new class are passed to the parent's " "class ``__init_subclass__``. For compatibility with other classes using " @@ -2166,13 +2184,13 @@ msgid "" "pass the others over to the base class, as in::" msgstr "" -#: ../../reference/datamodel.rst:1832 +#: ../../reference/datamodel.rst:1850 msgid "" "The default implementation ``object.__init_subclass__`` does nothing, but " "raises an error if it is called with any arguments." msgstr "" -#: ../../reference/datamodel.rst:1837 +#: ../../reference/datamodel.rst:1855 msgid "" "The metaclass hint ``metaclass`` is consumed by the rest of the type " "machinery, and is never passed to ``__init_subclass__`` implementations. The" @@ -2180,18 +2198,18 @@ msgid "" "``type(cls)``." msgstr "" -#: ../../reference/datamodel.rst:1848 +#: ../../reference/datamodel.rst:1866 msgid "Metaclasses" msgstr "" -#: ../../reference/datamodel.rst:1855 +#: ../../reference/datamodel.rst:1873 msgid "" "By default, classes are constructed using :func:`type`. The class body is " "executed in a new namespace and the class name is bound locally to the " "result of ``type(name, bases, namespace)``." msgstr "" -#: ../../reference/datamodel.rst:1859 +#: ../../reference/datamodel.rst:1877 msgid "" "The class creation process can be customized by passing the ``metaclass`` " "keyword argument in the class definition line, or by inheriting from an " @@ -2199,41 +2217,41 @@ msgid "" "both ``MyClass`` and ``MySubclass`` are instances of ``Meta``::" msgstr "" -#: ../../reference/datamodel.rst:1873 +#: ../../reference/datamodel.rst:1891 msgid "" "Any other keyword arguments that are specified in the class definition are " "passed through to all metaclass operations described below." msgstr "" -#: ../../reference/datamodel.rst:1876 +#: ../../reference/datamodel.rst:1894 msgid "When a class definition is executed, the following steps occur:" msgstr "" -#: ../../reference/datamodel.rst:1878 +#: ../../reference/datamodel.rst:1896 msgid "MRO entries are resolved;" msgstr "" -#: ../../reference/datamodel.rst:1879 +#: ../../reference/datamodel.rst:1897 msgid "the appropriate metaclass is determined;" msgstr "" -#: ../../reference/datamodel.rst:1880 +#: ../../reference/datamodel.rst:1898 msgid "the class namespace is prepared;" msgstr "" -#: ../../reference/datamodel.rst:1881 +#: ../../reference/datamodel.rst:1899 msgid "the class body is executed;" msgstr "" -#: ../../reference/datamodel.rst:1882 +#: ../../reference/datamodel.rst:1900 msgid "the class object is created." msgstr "" -#: ../../reference/datamodel.rst:1886 +#: ../../reference/datamodel.rst:1904 msgid "Resolving MRO entries" msgstr "" -#: ../../reference/datamodel.rst:1888 +#: ../../reference/datamodel.rst:1906 msgid "" "If a base that appears in class definition is not an instance of " ":class:`type`, then an ``__mro_entries__`` method is searched on it. If " @@ -2242,37 +2260,37 @@ msgid "" "empty, in such case the original base is ignored." msgstr "" -#: ../../reference/datamodel.rst:1896 ../../reference/datamodel.rst:2083 +#: ../../reference/datamodel.rst:1914 ../../reference/datamodel.rst:2101 msgid ":pep:`560` - Core support for typing module and generic types" msgstr "" -#: ../../reference/datamodel.rst:1900 +#: ../../reference/datamodel.rst:1918 msgid "Determining the appropriate metaclass" msgstr "" -#: ../../reference/datamodel.rst:1904 +#: ../../reference/datamodel.rst:1922 msgid "" "The appropriate metaclass for a class definition is determined as follows:" msgstr "" -#: ../../reference/datamodel.rst:1906 +#: ../../reference/datamodel.rst:1924 msgid "" "if no bases and no explicit metaclass are given, then :func:`type` is used;" msgstr "" -#: ../../reference/datamodel.rst:1907 +#: ../../reference/datamodel.rst:1925 msgid "" "if an explicit metaclass is given and it is *not* an instance of " ":func:`type`, then it is used directly as the metaclass;" msgstr "" -#: ../../reference/datamodel.rst:1909 +#: ../../reference/datamodel.rst:1927 msgid "" "if an instance of :func:`type` is given as the explicit metaclass, or bases " "are defined, then the most derived metaclass is used." msgstr "" -#: ../../reference/datamodel.rst:1912 +#: ../../reference/datamodel.rst:1930 msgid "" "The most derived metaclass is selected from the explicitly specified " "metaclass (if any) and the metaclasses (i.e. ``type(cls)``) of all specified" @@ -2281,11 +2299,11 @@ msgid "" "that criterion, then the class definition will fail with ``TypeError``." msgstr "" -#: ../../reference/datamodel.rst:1922 +#: ../../reference/datamodel.rst:1940 msgid "Preparing the class namespace" msgstr "" -#: ../../reference/datamodel.rst:1927 +#: ../../reference/datamodel.rst:1945 msgid "" "Once the appropriate metaclass has been identified, then the class namespace" " is prepared. If the metaclass has a ``__prepare__`` attribute, it is called" @@ -2293,25 +2311,25 @@ msgid "" "additional keyword arguments, if any, come from the class definition)." msgstr "" -#: ../../reference/datamodel.rst:1932 +#: ../../reference/datamodel.rst:1950 msgid "" "If the metaclass has no ``__prepare__`` attribute, then the class namespace " "is initialised as an empty ordered mapping." msgstr "" -#: ../../reference/datamodel.rst:1937 +#: ../../reference/datamodel.rst:1955 msgid ":pep:`3115` - Metaclasses in Python 3000" msgstr "" -#: ../../reference/datamodel.rst:1938 +#: ../../reference/datamodel.rst:1956 msgid "Introduced the ``__prepare__`` namespace hook" msgstr "" -#: ../../reference/datamodel.rst:1942 +#: ../../reference/datamodel.rst:1960 msgid "Executing the class body" msgstr "" -#: ../../reference/datamodel.rst:1947 +#: ../../reference/datamodel.rst:1965 msgid "" "The class body is executed (approximately) as ``exec(body, globals(), " "namespace)``. The key difference from a normal call to :func:`exec` is that " @@ -2320,7 +2338,7 @@ msgid "" "inside a function." msgstr "" -#: ../../reference/datamodel.rst:1953 +#: ../../reference/datamodel.rst:1971 msgid "" "However, even when the class definition occurs inside the function, methods " "defined inside the class still cannot see names defined at the class scope. " @@ -2329,11 +2347,11 @@ msgid "" "reference described in the next section." msgstr "" -#: ../../reference/datamodel.rst:1962 +#: ../../reference/datamodel.rst:1980 msgid "Creating the class object" msgstr "" -#: ../../reference/datamodel.rst:1969 +#: ../../reference/datamodel.rst:1987 msgid "" "Once the class namespace has been populated by executing the class body, the" " class object is created by calling ``metaclass(name, bases, namespace, " @@ -2341,7 +2359,7 @@ msgid "" "to ``__prepare__``)." msgstr "" -#: ../../reference/datamodel.rst:1974 +#: ../../reference/datamodel.rst:1992 msgid "" "This class object is the one that will be referenced by the zero-argument " "form of :func:`super`. ``__class__`` is an implicit closure reference " @@ -2352,7 +2370,7 @@ msgid "" " is identified based on the first argument passed to the method." msgstr "" -#: ../../reference/datamodel.rst:1984 +#: ../../reference/datamodel.rst:2002 msgid "" "In CPython 3.6 and later, the ``__class__`` cell is passed to the metaclass " "as a ``__classcell__`` entry in the class namespace. If present, this must " @@ -2361,39 +2379,39 @@ msgid "" " in Python 3.8." msgstr "" -#: ../../reference/datamodel.rst:1990 +#: ../../reference/datamodel.rst:2008 msgid "" "When using the default metaclass :class:`type`, or any metaclass that " "ultimately calls ``type.__new__``, the following additional customisation " "steps are invoked after creating the class object:" msgstr "" -#: ../../reference/datamodel.rst:1994 +#: ../../reference/datamodel.rst:2012 msgid "" "first, ``type.__new__`` collects all of the descriptors in the class " "namespace that define a :meth:`~object.__set_name__` method;" msgstr "" -#: ../../reference/datamodel.rst:1996 +#: ../../reference/datamodel.rst:2014 msgid "" "second, all of these ``__set_name__`` methods are called with the class " "being defined and the assigned name of that particular descriptor;" msgstr "" -#: ../../reference/datamodel.rst:1998 +#: ../../reference/datamodel.rst:2016 msgid "" "finally, the :meth:`~object.__init_subclass__` hook is called on the " "immediate parent of the new class in its method resolution order." msgstr "" -#: ../../reference/datamodel.rst:2001 +#: ../../reference/datamodel.rst:2019 msgid "" "After the class object is created, it is passed to the class decorators " "included in the class definition (if any) and the resulting object is bound " "in the local namespace as the defined class." msgstr "" -#: ../../reference/datamodel.rst:2005 +#: ../../reference/datamodel.rst:2023 msgid "" "When a new class is created by ``type.__new__``, the object provided as the " "namespace parameter is copied to a new ordered mapping and the original " @@ -2401,19 +2419,19 @@ msgid "" "becomes the :attr:`~object.__dict__` attribute of the class object." msgstr "" -#: ../../reference/datamodel.rst:2012 +#: ../../reference/datamodel.rst:2030 msgid ":pep:`3135` - New super" msgstr "" -#: ../../reference/datamodel.rst:2013 +#: ../../reference/datamodel.rst:2031 msgid "Describes the implicit ``__class__`` closure reference" msgstr "" -#: ../../reference/datamodel.rst:2017 +#: ../../reference/datamodel.rst:2035 msgid "Uses for metaclasses" msgstr "" -#: ../../reference/datamodel.rst:2019 +#: ../../reference/datamodel.rst:2037 msgid "" "The potential uses for metaclasses are boundless. Some ideas that have been " "explored include enum, logging, interface checking, automatic delegation, " @@ -2421,17 +2439,17 @@ msgid "" "locking/synchronization." msgstr "" -#: ../../reference/datamodel.rst:2026 +#: ../../reference/datamodel.rst:2044 msgid "Customizing instance and subclass checks" msgstr "" -#: ../../reference/datamodel.rst:2028 +#: ../../reference/datamodel.rst:2046 msgid "" "The following methods are used to override the default behavior of the " ":func:`isinstance` and :func:`issubclass` built-in functions." msgstr "" -#: ../../reference/datamodel.rst:2031 +#: ../../reference/datamodel.rst:2049 msgid "" "In particular, the metaclass :class:`abc.ABCMeta` implements these methods " "in order to allow the addition of Abstract Base Classes (ABCs) as \"virtual " @@ -2439,21 +2457,21 @@ msgid "" "other ABCs." msgstr "" -#: ../../reference/datamodel.rst:2038 +#: ../../reference/datamodel.rst:2056 msgid "" "Return true if *instance* should be considered a (direct or indirect) " "instance of *class*. If defined, called to implement ``isinstance(instance, " "class)``." msgstr "" -#: ../../reference/datamodel.rst:2045 +#: ../../reference/datamodel.rst:2063 msgid "" "Return true if *subclass* should be considered a (direct or indirect) " "subclass of *class*. If defined, called to implement ``issubclass(subclass," " class)``." msgstr "" -#: ../../reference/datamodel.rst:2050 +#: ../../reference/datamodel.rst:2068 msgid "" "Note that these methods are looked up on the type (metaclass) of a class. " "They cannot be defined as class methods in the actual class. This is " @@ -2461,11 +2479,11 @@ msgid "" "only in this case the instance is itself a class." msgstr "" -#: ../../reference/datamodel.rst:2061 +#: ../../reference/datamodel.rst:2079 msgid ":pep:`3119` - Introducing Abstract Base Classes" msgstr "" -#: ../../reference/datamodel.rst:2058 +#: ../../reference/datamodel.rst:2076 msgid "" "Includes the specification for customizing :func:`isinstance` and " ":func:`issubclass` behavior through :meth:`~class.__instancecheck__` and " @@ -2474,23 +2492,23 @@ msgid "" "the language." msgstr "" -#: ../../reference/datamodel.rst:2066 +#: ../../reference/datamodel.rst:2084 msgid "Emulating generic types" msgstr "" -#: ../../reference/datamodel.rst:2068 +#: ../../reference/datamodel.rst:2086 msgid "" "One can implement the generic class syntax as specified by :pep:`484` (for " "example ``List[int]``) by defining a special method:" msgstr "" -#: ../../reference/datamodel.rst:2073 +#: ../../reference/datamodel.rst:2091 msgid "" "Return an object representing the specialization of a generic class by type " "arguments found in *key*." msgstr "" -#: ../../reference/datamodel.rst:2076 +#: ../../reference/datamodel.rst:2094 msgid "" "This method is looked up on the class object itself, and when defined in the" " class body, this method is implicitly a class method. Note, this mechanism" @@ -2498,22 +2516,22 @@ msgid "" "discouraged." msgstr "" -#: ../../reference/datamodel.rst:2089 +#: ../../reference/datamodel.rst:2107 msgid "Emulating callable objects" msgstr "" -#: ../../reference/datamodel.rst:2096 +#: ../../reference/datamodel.rst:2114 msgid "" "Called when the instance is \"called\" as a function; if this method is " "defined, ``x(arg1, arg2, ...)`` is a shorthand for ``x.__call__(arg1, arg2, " "...)``." msgstr "" -#: ../../reference/datamodel.rst:2103 +#: ../../reference/datamodel.rst:2121 msgid "Emulating container types" msgstr "" -#: ../../reference/datamodel.rst:2105 +#: ../../reference/datamodel.rst:2123 msgid "" "The following methods can be defined to implement container objects. " "Containers usually are sequences (such as lists or tuples) or mappings (like" @@ -2542,11 +2560,11 @@ msgid "" "keys; for sequences, it should search through the values. It is further " "recommended that both mappings and sequences implement the :meth:`__iter__` " "method to allow efficient iteration through the container; for mappings, " -":meth:`__iter__` should be the same as :meth:`keys`; for sequences, it " -"should iterate through the values." +":meth:`__iter__` should iterate through the object's keys; for sequences, it" +" should iterate through the values." msgstr "" -#: ../../reference/datamodel.rst:2140 +#: ../../reference/datamodel.rst:2158 msgid "" "Called to implement the built-in function :func:`len`. Should return the " "length of the object, an integer ``>=`` 0. Also, an object that doesn't " @@ -2554,7 +2572,7 @@ msgid "" "zero is considered to be false in a Boolean context." msgstr "" -#: ../../reference/datamodel.rst:2147 +#: ../../reference/datamodel.rst:2165 msgid "" "In CPython, the length is required to be at most :attr:`sys.maxsize`. If the" " length is larger than :attr:`!sys.maxsize` some features (such as " @@ -2563,7 +2581,7 @@ msgid "" ":meth:`__bool__` method." msgstr "" -#: ../../reference/datamodel.rst:2156 +#: ../../reference/datamodel.rst:2174 msgid "" "Called to implement :func:`operator.length_hint`. Should return an estimated" " length for the object (which may be greater or less than the actual " @@ -2573,21 +2591,21 @@ msgid "" "optimization and is never required for correctness." msgstr "" -#: ../../reference/datamodel.rst:2170 +#: ../../reference/datamodel.rst:2188 msgid "" "Slicing is done exclusively with the following three methods. A call like " "::" msgstr "" -#: ../../reference/datamodel.rst:2174 +#: ../../reference/datamodel.rst:2192 msgid "is translated to ::" msgstr "" -#: ../../reference/datamodel.rst:2178 +#: ../../reference/datamodel.rst:2196 msgid "and so forth. Missing slice items are always filled in with ``None``." msgstr "" -#: ../../reference/datamodel.rst:2183 +#: ../../reference/datamodel.rst:2201 msgid "" "Called to implement evaluation of ``self[key]``. For sequence types, the " "accepted keys should be integers and slice objects. Note that the special " @@ -2599,13 +2617,13 @@ msgid "" "*key* is missing (not in the container), :exc:`KeyError` should be raised." msgstr "" -#: ../../reference/datamodel.rst:2194 +#: ../../reference/datamodel.rst:2212 msgid "" ":keyword:`for` loops expect that an :exc:`IndexError` will be raised for " "illegal indexes to allow proper detection of the end of the sequence." msgstr "" -#: ../../reference/datamodel.rst:2200 +#: ../../reference/datamodel.rst:2218 msgid "" "Called to implement assignment to ``self[key]``. Same note as for " ":meth:`__getitem__`. This should only be implemented for mappings if the " @@ -2614,7 +2632,7 @@ msgid "" "be raised for improper *key* values as for the :meth:`__getitem__` method." msgstr "" -#: ../../reference/datamodel.rst:2209 +#: ../../reference/datamodel.rst:2227 msgid "" "Called to implement deletion of ``self[key]``. Same note as for " ":meth:`__getitem__`. This should only be implemented for mappings if the " @@ -2623,13 +2641,13 @@ msgid "" " values as for the :meth:`__getitem__` method." msgstr "" -#: ../../reference/datamodel.rst:2218 +#: ../../reference/datamodel.rst:2236 msgid "" "Called by :class:`dict`\\ .\\ :meth:`__getitem__` to implement ``self[key]``" " for dict subclasses when key is not in the dictionary." msgstr "" -#: ../../reference/datamodel.rst:2224 +#: ../../reference/datamodel.rst:2242 msgid "" "This method is called when an iterator is required for a container. This " "method should return a new iterator object that can iterate over all the " @@ -2637,21 +2655,21 @@ msgid "" "the container." msgstr "" -#: ../../reference/datamodel.rst:2228 +#: ../../reference/datamodel.rst:2246 msgid "" "Iterator objects also need to implement this method; they are required to " "return themselves. For more information on iterator objects, see " ":ref:`typeiter`." msgstr "" -#: ../../reference/datamodel.rst:2234 +#: ../../reference/datamodel.rst:2252 msgid "" "Called (if present) by the :func:`reversed` built-in to implement reverse " "iteration. It should return a new iterator object that iterates over all " "the objects in the container in reverse order." msgstr "" -#: ../../reference/datamodel.rst:2238 +#: ../../reference/datamodel.rst:2256 msgid "" "If the :meth:`__reversed__` method is not provided, the :func:`reversed` " "built-in will fall back to using the sequence protocol (:meth:`__len__` and " @@ -2660,22 +2678,22 @@ msgid "" " is more efficient than the one provided by :func:`reversed`." msgstr "" -#: ../../reference/datamodel.rst:2245 +#: ../../reference/datamodel.rst:2263 msgid "" "The membership test operators (:keyword:`in` and :keyword:`not in`) are " -"normally implemented as an iteration through a sequence. However, container" +"normally implemented as an iteration through a container. However, container" " objects can supply the following special method with a more efficient " -"implementation, which also does not require the object be a sequence." +"implementation, which also does not require the object be iterable." msgstr "" -#: ../../reference/datamodel.rst:2252 +#: ../../reference/datamodel.rst:2270 msgid "" "Called to implement membership test operators. Should return true if *item*" " is in *self*, false otherwise. For mapping objects, this should consider " "the keys of the mapping rather than the values or the key-item pairs." msgstr "" -#: ../../reference/datamodel.rst:2256 +#: ../../reference/datamodel.rst:2274 msgid "" "For objects that don't define :meth:`__contains__`, the membership test " "first tries iteration via :meth:`__iter__`, then the old sequence iteration " @@ -2683,11 +2701,11 @@ msgid "" "reference `." msgstr "" -#: ../../reference/datamodel.rst:2265 +#: ../../reference/datamodel.rst:2283 msgid "Emulating numeric types" msgstr "" -#: ../../reference/datamodel.rst:2267 +#: ../../reference/datamodel.rst:2285 msgid "" "The following methods can be defined to emulate numeric objects. Methods " "corresponding to operations that are not supported by the particular kind of" @@ -2695,7 +2713,7 @@ msgid "" "should be left undefined." msgstr "" -#: ../../reference/datamodel.rst:2293 +#: ../../reference/datamodel.rst:2311 msgid "" "These methods are called to implement the binary arithmetic operations " "(``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, " @@ -2709,13 +2727,13 @@ msgid "" ":func:`pow` function is to be supported." msgstr "" -#: ../../reference/datamodel.rst:2304 +#: ../../reference/datamodel.rst:2322 msgid "" "If one of those methods does not support the operation with the supplied " "arguments, it should return ``NotImplemented``." msgstr "" -#: ../../reference/datamodel.rst:2327 +#: ../../reference/datamodel.rst:2345 msgid "" "These methods are called to implement the binary arithmetic operations " "(``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, " @@ -2727,13 +2745,13 @@ msgid "" "``y.__rsub__(x)`` is called if ``x.__sub__(y)`` returns *NotImplemented*." msgstr "" -#: ../../reference/datamodel.rst:2338 +#: ../../reference/datamodel.rst:2356 msgid "" "Note that ternary :func:`pow` will not try calling :meth:`__rpow__` (the " "coercion rules would become too complicated)." msgstr "" -#: ../../reference/datamodel.rst:2343 +#: ../../reference/datamodel.rst:2361 msgid "" "If the right operand's type is a subclass of the left operand's type and " "that subclass provides the reflected method for the operation, this method " @@ -2741,7 +2759,7 @@ msgid "" "behavior allows subclasses to override their ancestors' operations." msgstr "" -#: ../../reference/datamodel.rst:2363 +#: ../../reference/datamodel.rst:2381 msgid "" "These methods are called to implement the augmented arithmetic assignments " "(``+=``, ``-=``, ``*=``, ``@=``, ``/=``, ``//=``, ``%=``, ``**=``, ``<<=``, " @@ -2757,19 +2775,19 @@ msgid "" "fact part of the data model." msgstr "" -#: ../../reference/datamodel.rst:2384 +#: ../../reference/datamodel.rst:2402 msgid "" "Called to implement the unary arithmetic operations (``-``, ``+``, " ":func:`abs` and ``~``)." msgstr "" -#: ../../reference/datamodel.rst:2397 +#: ../../reference/datamodel.rst:2415 msgid "" "Called to implement the built-in functions :func:`complex`, :func:`int` and " ":func:`float`. Should return a value of the appropriate type." msgstr "" -#: ../../reference/datamodel.rst:2404 +#: ../../reference/datamodel.rst:2422 msgid "" "Called to implement :func:`operator.index`, and whenever Python needs to " "losslessly convert the numeric object to an integer object (such as in " @@ -2778,14 +2796,14 @@ msgid "" "integer type. Must return an integer." msgstr "" -#: ../../reference/datamodel.rst:2410 +#: ../../reference/datamodel.rst:2428 msgid "" "If :meth:`__int__`, :meth:`__float__` and :meth:`__complex__` are not " "defined then corresponding built-in functions :func:`int`, :func:`float` and" " :func:`complex` fall back to :meth:`__index__`." msgstr "" -#: ../../reference/datamodel.rst:2422 +#: ../../reference/datamodel.rst:2440 msgid "" "Called to implement the built-in function :func:`round` and :mod:`math` " "functions :func:`~math.trunc`, :func:`~math.floor` and :func:`~math.ceil`. " @@ -2794,17 +2812,17 @@ msgid "" "(typically an :class:`int`)." msgstr "" -#: ../../reference/datamodel.rst:2428 +#: ../../reference/datamodel.rst:2446 msgid "" "If :meth:`__int__` is not defined then the built-in function :func:`int` " "falls back to :meth:`__trunc__`." msgstr "" -#: ../../reference/datamodel.rst:2435 +#: ../../reference/datamodel.rst:2453 msgid "With Statement Context Managers" msgstr "" -#: ../../reference/datamodel.rst:2437 +#: ../../reference/datamodel.rst:2455 msgid "" "A :dfn:`context manager` is an object that defines the runtime context to be" " established when executing a :keyword:`with` statement. The context manager" @@ -2814,32 +2832,32 @@ msgid "" " can also be used by directly invoking their methods." msgstr "" -#: ../../reference/datamodel.rst:2448 +#: ../../reference/datamodel.rst:2466 msgid "" "Typical uses of context managers include saving and restoring various kinds " "of global state, locking and unlocking resources, closing opened files, etc." msgstr "" -#: ../../reference/datamodel.rst:2451 +#: ../../reference/datamodel.rst:2469 msgid "" "For more information on context managers, see :ref:`typecontextmanager`." msgstr "" -#: ../../reference/datamodel.rst:2456 +#: ../../reference/datamodel.rst:2474 msgid "" "Enter the runtime context related to this object. The :keyword:`with` " "statement will bind this method's return value to the target(s) specified in" " the :keyword:`!as` clause of the statement, if any." msgstr "" -#: ../../reference/datamodel.rst:2463 +#: ../../reference/datamodel.rst:2481 msgid "" "Exit the runtime context related to this object. The parameters describe the" " exception that caused the context to be exited. If the context was exited " "without an exception, all three arguments will be :const:`None`." msgstr "" -#: ../../reference/datamodel.rst:2467 +#: ../../reference/datamodel.rst:2485 msgid "" "If an exception is supplied, and the method wishes to suppress the exception" " (i.e., prevent it from being propagated), it should return a true value. " @@ -2847,27 +2865,27 @@ msgid "" "method." msgstr "" -#: ../../reference/datamodel.rst:2471 +#: ../../reference/datamodel.rst:2489 msgid "" "Note that :meth:`__exit__` methods should not reraise the passed-in " "exception; this is the caller's responsibility." msgstr "" -#: ../../reference/datamodel.rst:2478 +#: ../../reference/datamodel.rst:2496 msgid ":pep:`343` - The \"with\" statement" msgstr "" -#: ../../reference/datamodel.rst:2478 +#: ../../reference/datamodel.rst:2496 msgid "" "The specification, background, and examples for the Python :keyword:`with` " "statement." msgstr "" -#: ../../reference/datamodel.rst:2485 +#: ../../reference/datamodel.rst:2503 msgid "Special method lookup" msgstr "" -#: ../../reference/datamodel.rst:2487 +#: ../../reference/datamodel.rst:2505 msgid "" "For custom classes, implicit invocations of special methods are only " "guaranteed to work correctly if defined on an object's type, not in the " @@ -2875,7 +2893,7 @@ msgid "" "following code raises an exception::" msgstr "" -#: ../../reference/datamodel.rst:2502 +#: ../../reference/datamodel.rst:2520 msgid "" "The rationale behind this behaviour lies with a number of special methods " "such as :meth:`__hash__` and :meth:`__repr__` that are implemented by all " @@ -2884,21 +2902,21 @@ msgid "" "type object itself::" msgstr "" -#: ../../reference/datamodel.rst:2515 +#: ../../reference/datamodel.rst:2533 msgid "" "Incorrectly attempting to invoke an unbound method of a class in this way is" " sometimes referred to as 'metaclass confusion', and is avoided by bypassing" " the instance when looking up special methods::" msgstr "" -#: ../../reference/datamodel.rst:2524 +#: ../../reference/datamodel.rst:2542 msgid "" "In addition to bypassing any instance attributes in the interest of " "correctness, implicit special method lookup generally also bypasses the " ":meth:`__getattribute__` method even of the object's metaclass::" msgstr "" -#: ../../reference/datamodel.rst:2550 +#: ../../reference/datamodel.rst:2568 msgid "" "Bypassing the :meth:`__getattribute__` machinery in this fashion provides " "significant scope for speed optimisations within the interpreter, at the " @@ -2907,44 +2925,44 @@ msgid "" "invoked by the interpreter)." msgstr "" -#: ../../reference/datamodel.rst:2561 +#: ../../reference/datamodel.rst:2579 msgid "Coroutines" msgstr "*Coroutines*" -#: ../../reference/datamodel.rst:2565 +#: ../../reference/datamodel.rst:2583 msgid "Awaitable Objects" msgstr "" -#: ../../reference/datamodel.rst:2567 +#: ../../reference/datamodel.rst:2585 msgid "" "An :term:`awaitable` object generally implements an :meth:`__await__` " "method. :term:`Coroutine` objects returned from :keyword:`async def` " "functions are awaitable." msgstr "" -#: ../../reference/datamodel.rst:2573 +#: ../../reference/datamodel.rst:2591 msgid "" "The :term:`generator iterator` objects returned from generators decorated " "with :func:`types.coroutine` or :func:`asyncio.coroutine` are also " "awaitable, but they do not implement :meth:`__await__`." msgstr "" -#: ../../reference/datamodel.rst:2579 +#: ../../reference/datamodel.rst:2597 msgid "" "Must return an :term:`iterator`. Should be used to implement " ":term:`awaitable` objects. For instance, :class:`asyncio.Future` implements" " this method to be compatible with the :keyword:`await` expression." msgstr "" -#: ../../reference/datamodel.rst:2585 +#: ../../reference/datamodel.rst:2603 msgid ":pep:`492` for additional information about awaitable objects." msgstr "" -#: ../../reference/datamodel.rst:2591 +#: ../../reference/datamodel.rst:2609 msgid "Coroutine Objects" msgstr "Objek Coroutine" -#: ../../reference/datamodel.rst:2593 +#: ../../reference/datamodel.rst:2611 msgid "" ":term:`Coroutine` objects are :term:`awaitable` objects. A coroutine's " "execution can be controlled by calling :meth:`__await__` and iterating over " @@ -2955,18 +2973,18 @@ msgid "" " should not directly raise unhandled :exc:`StopIteration` exceptions." msgstr "" -#: ../../reference/datamodel.rst:2601 +#: ../../reference/datamodel.rst:2619 msgid "" "Coroutines also have the methods listed below, which are analogous to those " "of generators (see :ref:`generator-methods`). However, unlike generators, " "coroutines do not directly support iteration." msgstr "" -#: ../../reference/datamodel.rst:2605 +#: ../../reference/datamodel.rst:2623 msgid "It is a :exc:`RuntimeError` to await on a coroutine more than once." msgstr "" -#: ../../reference/datamodel.rst:2611 +#: ../../reference/datamodel.rst:2629 msgid "" "Starts or resumes execution of the coroutine. If *value* is ``None``, this " "is equivalent to advancing the iterator returned by :meth:`__await__`. If " @@ -2977,7 +2995,7 @@ msgid "" "value, described above." msgstr "" -#: ../../reference/datamodel.rst:2621 +#: ../../reference/datamodel.rst:2639 msgid "" "Raises the specified exception in the coroutine. This method delegates to " "the :meth:`~generator.throw` method of the iterator that caused the " @@ -2988,7 +3006,7 @@ msgid "" "not caught in the coroutine, it propagates back to the caller." msgstr "" -#: ../../reference/datamodel.rst:2632 +#: ../../reference/datamodel.rst:2650 msgid "" "Causes the coroutine to clean itself up and exit. If the coroutine is " "suspended, this method first delegates to the :meth:`~generator.close` " @@ -2998,97 +3016,97 @@ msgid "" " is marked as having finished executing, even if it was never started." msgstr "" -#: ../../reference/datamodel.rst:2640 +#: ../../reference/datamodel.rst:2658 msgid "" "Coroutine objects are automatically closed using the above process when they" " are about to be destroyed." msgstr "" -#: ../../reference/datamodel.rst:2646 +#: ../../reference/datamodel.rst:2664 msgid "Asynchronous Iterators" msgstr "" -#: ../../reference/datamodel.rst:2648 +#: ../../reference/datamodel.rst:2666 msgid "" "An *asynchronous iterator* can call asynchronous code in its ``__anext__`` " "method." msgstr "" -#: ../../reference/datamodel.rst:2651 +#: ../../reference/datamodel.rst:2669 msgid "" "Asynchronous iterators can be used in an :keyword:`async for` statement." msgstr "" -#: ../../reference/datamodel.rst:2655 +#: ../../reference/datamodel.rst:2673 msgid "Must return an *asynchronous iterator* object." msgstr "" -#: ../../reference/datamodel.rst:2659 +#: ../../reference/datamodel.rst:2677 msgid "" "Must return an *awaitable* resulting in a next value of the iterator. " "Should raise a :exc:`StopAsyncIteration` error when the iteration is over." msgstr "" -#: ../../reference/datamodel.rst:2662 +#: ../../reference/datamodel.rst:2680 msgid "An example of an asynchronous iterable object::" msgstr "" -#: ../../reference/datamodel.rst:2679 +#: ../../reference/datamodel.rst:2697 msgid "" "Prior to Python 3.7, ``__aiter__`` could return an *awaitable* that would " "resolve to an :term:`asynchronous iterator `." msgstr "" -#: ../../reference/datamodel.rst:2684 +#: ../../reference/datamodel.rst:2702 msgid "" "Starting with Python 3.7, ``__aiter__`` must return an asynchronous iterator" " object. Returning anything else will result in a :exc:`TypeError` error." msgstr "" -#: ../../reference/datamodel.rst:2692 +#: ../../reference/datamodel.rst:2710 msgid "Asynchronous Context Managers" msgstr "" -#: ../../reference/datamodel.rst:2694 +#: ../../reference/datamodel.rst:2712 msgid "" "An *asynchronous context manager* is a *context manager* that is able to " "suspend execution in its ``__aenter__`` and ``__aexit__`` methods." msgstr "" -#: ../../reference/datamodel.rst:2697 +#: ../../reference/datamodel.rst:2715 msgid "" "Asynchronous context managers can be used in an :keyword:`async with` " "statement." msgstr "" -#: ../../reference/datamodel.rst:2701 +#: ../../reference/datamodel.rst:2719 msgid "" "Semantically similar to :meth:`__enter__`, the only difference being that it" " must return an *awaitable*." msgstr "" -#: ../../reference/datamodel.rst:2706 +#: ../../reference/datamodel.rst:2724 msgid "" "Semantically similar to :meth:`__exit__`, the only difference being that it " "must return an *awaitable*." msgstr "" -#: ../../reference/datamodel.rst:2709 +#: ../../reference/datamodel.rst:2727 msgid "An example of an asynchronous context manager class::" msgstr "" -#: ../../reference/datamodel.rst:2722 +#: ../../reference/datamodel.rst:2740 msgid "Footnotes" msgstr "Catatan kaki" -#: ../../reference/datamodel.rst:2723 +#: ../../reference/datamodel.rst:2741 msgid "" "It *is* possible in some cases to change an object's type, under certain " "controlled conditions. It generally isn't a good idea though, since it can " "lead to some very strange behaviour if it is handled incorrectly." msgstr "" -#: ../../reference/datamodel.rst:2727 +#: ../../reference/datamodel.rst:2745 msgid "" "The :meth:`__hash__`, :meth:`__iter__`, :meth:`__reversed__`, and " ":meth:`__contains__` methods have special handling for this; others will " @@ -3096,7 +3114,7 @@ msgid "" "that ``None`` is not callable." msgstr "" -#: ../../reference/datamodel.rst:2732 +#: ../../reference/datamodel.rst:2750 msgid "" "\"Does not support\" here means that the class has no such method, or the " "method returns ``NotImplemented``. Do not set the method to ``None`` if you" @@ -3104,7 +3122,7 @@ msgid "" "instead have the opposite effect of explicitly *blocking* such fallback." msgstr "" -#: ../../reference/datamodel.rst:2738 +#: ../../reference/datamodel.rst:2756 msgid "" "For operands of the same type, it is assumed that if the non-reflected " "method (such as :meth:`__add__`) fails the operation is not supported, which" diff --git a/reference/import.po b/reference/import.po index 0df3291..018448f 100644 --- a/reference/import.po +++ b/reference/import.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:38+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -878,7 +878,7 @@ msgid "" "the cache is up-to-date with the source ``.py`` file. By default, Python " "does this by storing the source's last-modified timestamp and size in the " "cache file when writing it. At runtime, the import system then validates the" -" cache file by checking the stored metadata in the cache file against at " +" cache file by checking the stored metadata in the cache file against the " "source's metadata." msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #: ../../reference/import.rst:852 msgid "" -":meth:`~importlib.abc.PathEntryFinder.find_spec` takes two argument, the " +":meth:`~importlib.abc.PathEntryFinder.find_spec` takes two arguments: the " "fully qualified name of the module being imported, and the (optional) target" " module. ``find_spec()`` returns a fully populated spec for the module. " "This spec will always have \"loader\" set (with one exception)." @@ -1193,9 +1193,9 @@ msgstr "" #: ../../reference/import.rst:916 msgid "" -"To selectively prevent import of some modules from a hook early on the meta " -"path (rather than disabling the standard import system entirely), it is " -"sufficient to raise :exc:`ModuleNotFoundError` directly from " +"To selectively prevent the import of some modules from a hook early on the " +"meta path (rather than disabling the standard import system entirely), it is" +" sufficient to raise :exc:`ModuleNotFoundError` directly from " ":meth:`~importlib.abc.MetaPathFinder.find_spec` instead of returning " "``None``. The latter indicates that the meta path search should continue, " "while raising an exception terminates it immediately." diff --git a/tutorial/interpreter.po b/tutorial/interpreter.po index 3bee737..060fbcb 100644 --- a/tutorial/interpreter.po +++ b/tutorial/interpreter.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-17 11:28+0000\n" +"POT-Creation-Date: 2019-11-06 11:52+0000\n" "PO-Revision-Date: 2017-02-16 23:40+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -55,17 +55,12 @@ msgstr "" #: ../../tutorial/interpreter.rst:26 msgid "" -"On Windows machines where you have installed from the :ref:`Microsoft Store " -"`, the :file:`python3.8` command will be available. If you " -"have the :ref:`py.exe launcher ` installed, you can use the " +"On Windows machines where you have installed Python from the :ref:`Microsoft" +" Store `, the :file:`python3.8` command will be available. If" +" you have the :ref:`py.exe launcher ` installed, you can use the " ":file:`py` command. See :ref:`setting-envvars` for other ways to launch " "Python." msgstr "" -"Pada mesin Windows di mana Anda telah menginstal dari :ref:`Microsoft Store " -"`, perintah :file:`python3.8` akan tersedia. Jika Anda telah " -"menginstal :ref:`py.exe launcher `, Anda dapat menggunakan " -"perintah :file:`py`. Lihat :ref:`setting-envvars` untuk cara-cara lain untuk" -" meluncurkan Python." #: ../../tutorial/interpreter.rst:31 msgid "" diff --git a/tutorial/stdlib.po b/tutorial/stdlib.po index e665fb9..5c0e4d9 100644 --- a/tutorial/stdlib.po +++ b/tutorial/stdlib.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-01 14:24+0000\n" +"POT-Creation-Date: 2019-11-18 11:58+0000\n" "PO-Revision-Date: 2017-02-16 23:41+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -93,23 +93,23 @@ msgstr "" #: ../../tutorial/stdlib.rst:75 msgid "" -"The :mod:`argparse` module provides a mechanism to process command line " -"arguments. It should always be preferred over directly processing " -"``sys.argv`` manually." +"The :mod:`argparse` module provides a more sophisticated mechanism to " +"process command line arguments. The following script extracts one or more " +"filenames and an optional number of lines to be displayed::" msgstr "" -"Modul :mod:`argparse` menyediakan mekanisme untuk memproses argumen baris " -"perintah. Itu harus selalu lebih disukai daripada langsung memproses " -"``sys.argv`` secara manual." -#: ../../tutorial/stdlib.rst:78 -msgid "Take, for example, the below snippet of code::" -msgstr "Ambil contoh, misalnya, potongan kode di bawah ini ::" +#: ../../tutorial/stdlib.rst:88 +msgid "" +"When run at the command line with ``python top.py --lines=5 alpha.txt " +"beta.txt``, the script sets ``args.lines`` to ``5`` and ``args.filenames`` " +"to ``['alpha.txt', 'beta.txt']``." +msgstr "" -#: ../../tutorial/stdlib.rst:94 +#: ../../tutorial/stdlib.rst:96 msgid "Error Output Redirection and Program Termination" msgstr "Pengalihan Output Kesalahan dan Pengakhiran Program" -#: ../../tutorial/stdlib.rst:96 +#: ../../tutorial/stdlib.rst:98 msgid "" "The :mod:`sys` module also has attributes for *stdin*, *stdout*, and " "*stderr*. The latter is useful for emitting warnings and error messages to " @@ -119,17 +119,17 @@ msgstr "" "*stderr*. Yang terakhir berguna untuk mengirimkan peringatan dan pesan " "kesalahan untuk membuatnya terlihat bahkan ketika *stdout* telah dialihkan::" -#: ../../tutorial/stdlib.rst:103 +#: ../../tutorial/stdlib.rst:105 msgid "The most direct way to terminate a script is to use ``sys.exit()``." msgstr "" "Cara paling langsung untuk mengakhiri skrip adalah dengan menggunakan " "``sys.exit()``." -#: ../../tutorial/stdlib.rst:109 +#: ../../tutorial/stdlib.rst:111 msgid "String Pattern Matching" msgstr "Pencocokan Pola String" -#: ../../tutorial/stdlib.rst:111 +#: ../../tutorial/stdlib.rst:113 msgid "" "The :mod:`re` module provides regular expression tools for advanced string " "processing. For complex matching and manipulation, regular expressions offer" @@ -139,7 +139,7 @@ msgstr "" "lanjutan. Untuk pencocokan dan manipulasi yang kompleks, ekspresi reguler " "menawarkan solusi yang ringkas dan dioptimalkan::" -#: ../../tutorial/stdlib.rst:121 +#: ../../tutorial/stdlib.rst:123 msgid "" "When only simple capabilities are needed, string methods are preferred " "because they are easier to read and debug::" @@ -147,11 +147,11 @@ msgstr "" "Ketika hanya kemampuan sederhana yang diperlukan, metode string lebih " "disukai karena lebih mudah dibaca dan dilakukan *debug*::" -#: ../../tutorial/stdlib.rst:131 +#: ../../tutorial/stdlib.rst:133 msgid "Mathematics" msgstr "Matematika" -#: ../../tutorial/stdlib.rst:133 +#: ../../tutorial/stdlib.rst:135 msgid "" "The :mod:`math` module gives access to the underlying C library functions " "for floating point math::" @@ -159,11 +159,11 @@ msgstr "" "Modul :mod:`math` memberikan akses ke fungsi-fungsi pustaka C yang mendasari" " untuk matematika angka pecahan *floating point*::" -#: ../../tutorial/stdlib.rst:142 +#: ../../tutorial/stdlib.rst:144 msgid "The :mod:`random` module provides tools for making random selections::" msgstr "Modul :mod:`random` menyediakan alat untuk membuat pilihan acak::" -#: ../../tutorial/stdlib.rst:154 +#: ../../tutorial/stdlib.rst:156 msgid "" "The :mod:`statistics` module calculates basic statistical properties (the " "mean, median, variance, etc.) of numeric data::" @@ -171,7 +171,7 @@ msgstr "" "Modul :mod:`statistics` menghitung sifat statistik dasar (rata-rata, median," " varian, dll.) dari data numerik::" -#: ../../tutorial/stdlib.rst:166 +#: ../../tutorial/stdlib.rst:168 msgid "" "The SciPy project has many other modules for numerical " "computations." @@ -179,11 +179,11 @@ msgstr "" "Proyek SciPy memiliki banyak modul lain untuk " "perhitungan numerik." -#: ../../tutorial/stdlib.rst:172 +#: ../../tutorial/stdlib.rst:174 msgid "Internet Access" msgstr "Akses internet" -#: ../../tutorial/stdlib.rst:174 +#: ../../tutorial/stdlib.rst:176 msgid "" "There are a number of modules for accessing the internet and processing " "internet protocols. Two of the simplest are :mod:`urllib.request` for " @@ -193,18 +193,18 @@ msgstr "" " Dua yang paling sederhana adalah :mod:`urllib.request` untuk mengambil data" " dari URL dan :mod:`smtplib` untuk mengirim email::" -#: ../../tutorial/stdlib.rst:197 +#: ../../tutorial/stdlib.rst:199 msgid "" "(Note that the second example needs a mailserver running on localhost.)" msgstr "" "(Perhatikan bahwa contoh kedua membutuhkan server mail yang beroperasi di " "localhost.)" -#: ../../tutorial/stdlib.rst:203 +#: ../../tutorial/stdlib.rst:205 msgid "Dates and Times" msgstr "Tanggal dan Waktu" -#: ../../tutorial/stdlib.rst:205 +#: ../../tutorial/stdlib.rst:207 msgid "" "The :mod:`datetime` module supplies classes for manipulating dates and times" " in both simple and complex ways. While date and time arithmetic is " @@ -218,11 +218,11 @@ msgstr "" "efisien untuk pemformatan dan manipulasi keluaran. Modul ini juga mendukung " "objek yang sadar zona waktu. ::" -#: ../../tutorial/stdlib.rst:229 +#: ../../tutorial/stdlib.rst:231 msgid "Data Compression" msgstr "Kompresi Data" -#: ../../tutorial/stdlib.rst:231 +#: ../../tutorial/stdlib.rst:233 msgid "" "Common data archiving and compression formats are directly supported by " "modules including: :mod:`zlib`, :mod:`gzip`, :mod:`bz2`, :mod:`lzma`, " @@ -232,11 +232,11 @@ msgstr "" " yang ada antara lain: :mod: `zlib`, :mod:`gzip`, :mod:`bz2`, :mod:`lzma`, " ":mod:`zipfile` dan :mod:`tarfile`. ::" -#: ../../tutorial/stdlib.rst:251 +#: ../../tutorial/stdlib.rst:253 msgid "Performance Measurement" msgstr "Pengukuran Kinerja" -#: ../../tutorial/stdlib.rst:253 +#: ../../tutorial/stdlib.rst:255 msgid "" "Some Python users develop a deep interest in knowing the relative " "performance of different approaches to the same problem. Python provides a " @@ -246,7 +246,7 @@ msgstr "" "kinerja relatif dari berbagai pendekatan untuk masalah yang sama. Python " "menyediakan alat pengukuran yang segera menjawab pertanyaan-pertanyaan itu." -#: ../../tutorial/stdlib.rst:257 +#: ../../tutorial/stdlib.rst:259 msgid "" "For example, it may be tempting to use the tuple packing and unpacking " "feature instead of the traditional approach to swapping arguments. The " @@ -257,7 +257,7 @@ msgstr "" ":mod: `timeit` dengan cepat menunjukkan keunggulan kinerja secara " "sederhana::" -#: ../../tutorial/stdlib.rst:267 +#: ../../tutorial/stdlib.rst:269 msgid "" "In contrast to :mod:`timeit`'s fine level of granularity, the :mod:`profile`" " and :mod:`pstats` modules provide tools for identifying time critical " @@ -267,11 +267,11 @@ msgstr "" " dan :mod:`pstats` menyediakan alat untuk mengidentifikasi bagian kritis " "waktu dalam blok kode yang lebih besar." -#: ../../tutorial/stdlib.rst:275 +#: ../../tutorial/stdlib.rst:277 msgid "Quality Control" msgstr "Kontrol kualitas" -#: ../../tutorial/stdlib.rst:277 +#: ../../tutorial/stdlib.rst:279 msgid "" "One approach for developing high quality software is to write tests for each" " function as it is developed and to run those tests frequently during the " @@ -281,7 +281,7 @@ msgstr "" " adalah dengan menulis tes untuk setiap fungsi yang dikembangkan dan untuk " "sering menjalankan tes tersebut selama proses pengembangan." -#: ../../tutorial/stdlib.rst:281 +#: ../../tutorial/stdlib.rst:283 msgid "" "The :mod:`doctest` module provides a tool for scanning a module and " "validating tests embedded in a program's docstrings. Test construction is " @@ -297,7 +297,7 @@ msgstr "" "memungkinkan modul *doctest* untuk memastikan kode tetap benar untuk " "dokumentasi::" -#: ../../tutorial/stdlib.rst:299 +#: ../../tutorial/stdlib.rst:301 msgid "" "The :mod:`unittest` module is not as effortless as the :mod:`doctest` " "module, but it allows a more comprehensive set of tests to be maintained in " @@ -307,11 +307,11 @@ msgstr "" "memungkinkan serangkaian tes yang lebih komprehensif untuk dipertahankan " "dalam file terpisah::" -#: ../../tutorial/stdlib.rst:321 +#: ../../tutorial/stdlib.rst:323 msgid "Batteries Included" msgstr "Dilengkapi Baterai" -#: ../../tutorial/stdlib.rst:323 +#: ../../tutorial/stdlib.rst:325 msgid "" "Python has a \"batteries included\" philosophy. This is best seen through " "the sophisticated and robust capabilities of its larger packages. For " @@ -321,7 +321,7 @@ msgstr "" "melalui kemampuan yang canggih dan kuat *robust* dengan dukungan paket-paket" " yang lebih besar. Sebagai contoh:" -#: ../../tutorial/stdlib.rst:326 +#: ../../tutorial/stdlib.rst:328 msgid "" "The :mod:`xmlrpc.client` and :mod:`xmlrpc.server` modules make implementing " "remote procedure calls into an almost trivial task. Despite the modules " @@ -332,7 +332,7 @@ msgstr "" "dari nama-nama modul, tidak diperlukan pengetahuan atau penanganan XML " "secara langsung." -#: ../../tutorial/stdlib.rst:330 +#: ../../tutorial/stdlib.rst:332 msgid "" "The :mod:`email` package is a library for managing email messages, including" " MIME and other :rfc:`2822`-based message documents. Unlike :mod:`smtplib` " @@ -348,7 +348,7 @@ msgstr "" "mendekodekan struktur pesan kompleks (termasuk lampiran) dan untuk " "mengimplementasikan pengkodean internet dan protokol header." -#: ../../tutorial/stdlib.rst:337 +#: ../../tutorial/stdlib.rst:339 msgid "" "The :mod:`json` package provides robust support for parsing this popular " "data interchange format. The :mod:`csv` module supports direct reading and " @@ -366,7 +366,7 @@ msgstr "" "sama, modul dan paket ini sangat menyederhanakan pertukaran data antara " "aplikasi Python dan alat lainnya." -#: ../../tutorial/stdlib.rst:346 +#: ../../tutorial/stdlib.rst:348 msgid "" "The :mod:`sqlite3` module is a wrapper for the SQLite database library, " "providing a persistent database that can be updated and accessed using " @@ -376,7 +376,7 @@ msgstr "" "menyediakan basis data persisten yang dapat diperbarui dan diakses " "menggunakan sintaks SQL yang sedikit tidak standar." -#: ../../tutorial/stdlib.rst:350 +#: ../../tutorial/stdlib.rst:352 msgid "" "Internationalization is supported by a number of modules including " ":mod:`gettext`, :mod:`locale`, and the :mod:`codecs` package." diff --git a/using/cmdline.po b/using/cmdline.po index 0d6b844..aeeac3d 100644 --- a/using/cmdline.po +++ b/using/cmdline.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-17 11:28+0000\n" +"POT-Creation-Date: 2019-11-16 11:56+0000\n" "PO-Revision-Date: 2017-02-16 23:41+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -608,7 +608,7 @@ msgstr "Mengaktifkan :ref:`asyncio debug mode `." #: ../../using/cmdline.rst:456 msgid "" "Set the :attr:`~sys.flags.dev_mode` attribute of :attr:`sys.flags` to " -"``True``" +"``True``." msgstr "" #: ../../using/cmdline.rst:458 @@ -973,11 +973,11 @@ msgid "" msgstr "" #: ../../using/cmdline.rst:776 -msgid "``malloc_debug``: same as ``malloc`` but also install debug hooks" +msgid "``malloc_debug``: same as ``malloc`` but also install debug hooks." msgstr "" #: ../../using/cmdline.rst:777 -msgid "``pymalloc_debug``: same as ``pymalloc`` but also install debug hooks" +msgid "``pymalloc_debug``: same as ``pymalloc`` but also install debug hooks." msgstr "" #: ../../using/cmdline.rst:779 diff --git a/whatsnew/3_8.po b/whatsnew/3_8.po index c8de3a1..1717374 100644 --- a/whatsnew/3_8.po +++ b/whatsnew/3_8.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-29 11:47+0000\n" +"POT-Creation-Date: 2019-11-13 11:56+0000\n" "PO-Revision-Date: 2019-09-01 14:44+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -1124,8 +1124,8 @@ msgstr "logging" #: ../../whatsnew/3.8.rst:928 msgid "" "Added a *force* keyword argument to :func:`logging.basicConfig()` When set " -"to *True*, any existing handlers attached to the root logger are removed and" -" closed before carrying out the configuration specified by the other " +"to true, any existing handlers attached to the root logger are removed and " +"closed before carrying out the configuration specified by the other " "arguments." msgstr "" @@ -1299,8 +1299,8 @@ msgstr "" #: ../../whatsnew/3.8.rst:1056 msgid "" -":func:`~os.path.isdir` on Windows no longer returns true for a link to a " -"non-existent directory." +":func:`~os.path.isdir` on Windows no longer returns ``True`` for a link to a" +" non-existent directory." msgstr "" #: ../../whatsnew/3.8.rst:1059 @@ -1364,7 +1364,7 @@ msgstr "" msgid "" "The :mod:`pprint` module added a *sort_dicts* parameter to several " "functions. By default, those functions continue to sort dictionaries before " -"rendering or printing. However, if *sort_dicts* is set to *False*, the " +"rendering or printing. However, if *sort_dicts* is set to false, the " "dictionaries retain the order that keys were inserted. This can be useful " "for comparison to JSON inputs during debugging." msgstr "" @@ -1372,7 +1372,7 @@ msgstr "" #: ../../whatsnew/3.8.rst:1109 msgid "" "In addition, there is a convenience new function, :func:`pprint.pp` that is " -"like :func:`pprint.pprint` but with *sort_dicts* defaulting to *False*::" +"like :func:`pprint.pprint` but with *sort_dicts* defaulting to ``False``::" msgstr "" #: ../../whatsnew/3.8.rst:1123 @@ -2825,3 +2825,7 @@ msgstr "" "Menambahkan skrip patokan atau *benchmark* untuk menentukan waktu berbagai " "cara untuk mengakses variabel: ``Tools/scripts/var_access_benchmark.py``. " "(Dikontribusikan oleh Raymond Hettinger di :issue:`35884`.)" + +#: ../../whatsnew/3.8.rst:2161 +msgid "Here's a summary of performance improvements since Python 3.3:" +msgstr "" diff --git a/whatsnew/changelog.po b/whatsnew/changelog.po index 62781fd..3de709e 100644 --- a/whatsnew/changelog.po +++ b/whatsnew/changelog.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-31 11:48+0000\n" +"POT-Creation-Date: 2019-12-11 12:09+0000\n" "PO-Revision-Date: 2017-02-16 23:45+0000\n" "Last-Translator: oon arfiandwi , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n" @@ -34,24 +34,205 @@ msgstr "Python next" msgid "*Release date: XXXX-XX-XX*" msgstr "*Tanggal rilis: XXXX-XX-XX*" -#: ../../../build/NEWS:10 ../../../build/NEWS:211 ../../../build/NEWS:690 -#: ../../../build/NEWS:977 ../../../build/NEWS:1166 ../../../build/NEWS:1508 -#: ../../../build/NEWS:2264 ../../../build/NEWS:2808 ../../../build/NEWS:3338 -#: ../../../build/NEWS:6869 ../../../build/NEWS:7087 ../../../build/NEWS:8815 -#: ../../../build/NEWS:11266 ../../../build/NEWS:12033 -#: ../../../build/NEWS:12496 ../../../build/NEWS:12598 -#: ../../../build/NEWS:14664 ../../../build/NEWS:14683 -#: ../../../build/NEWS:14848 ../../../build/NEWS:14899 -#: ../../../build/NEWS:15494 ../../../build/NEWS:15605 -#: ../../../build/NEWS:15695 ../../../build/NEWS:16404 -#: ../../../build/NEWS:16463 ../../../build/NEWS:17318 -#: ../../../build/NEWS:17331 ../../../build/NEWS:17722 -#: ../../../build/NEWS:17755 ../../../build/NEWS:17867 -#: ../../../build/NEWS:17922 ../../../build/NEWS:17991 +#: ../../../build/NEWS:10 ../../../build/NEWS:70 ../../../build/NEWS:338 +#: ../../../build/NEWS:449 ../../../build/NEWS:920 ../../../build/NEWS:1206 +#: ../../../build/NEWS:1411 ../../../build/NEWS:1746 ../../../build/NEWS:2505 +#: ../../../build/NEWS:3043 ../../../build/NEWS:3348 ../../../build/NEWS:3610 +#: ../../../build/NEWS:6590 ../../../build/NEWS:6702 ../../../build/NEWS:6915 +#: ../../../build/NEWS:7106 ../../../build/NEWS:7316 ../../../build/NEWS:7560 +#: ../../../build/NEWS:7879 ../../../build/NEWS:8183 ../../../build/NEWS:8783 +#: ../../../build/NEWS:9072 ../../../build/NEWS:11162 +#: ../../../build/NEWS:11499 ../../../build/NEWS:11816 +#: ../../../build/NEWS:12265 ../../../build/NEWS:12746 +#: ../../../build/NEWS:13098 ../../../build/NEWS:13122 +#: ../../../build/NEWS:13446 ../../../build/NEWS:13476 +#: ../../../build/NEWS:13540 ../../../build/NEWS:13654 +#: ../../../build/NEWS:13778 ../../../build/NEWS:14046 +#: ../../../build/NEWS:14555 ../../../build/NEWS:14793 +#: ../../../build/NEWS:15013 ../../../build/NEWS:15316 +#: ../../../build/NEWS:16650 ../../../build/NEWS:16711 +#: ../../../build/NEWS:17103 ../../../build/NEWS:17794 +#: ../../../build/NEWS:17815 ../../../build/NEWS:18572 +#: ../../../build/NEWS:18590 ../../../build/NEWS:19113 +#: ../../../build/NEWS:19148 ../../../build/NEWS:19176 +#: ../../../build/NEWS:19268 ../../../build/NEWS:19355 +#: ../../../build/NEWS:19460 ../../../build/NEWS:19503 +#: ../../../build/NEWS:19779 ../../../build/NEWS:20014 +#: ../../../build/NEWS:20200 ../../../build/NEWS:20339 +msgid "Core and Builtins" +msgstr "Inti dan Bawaan" + +#: ../../../build/NEWS:12 +msgid "" +"`bpo-39008 `__: :c:func:`PySys_Audit` " +"now requires ``Py_ssize_t`` to be used for size arguments in the format " +"string, regardless of whethen ``PY_SSIZE_T_CLEAN`` was defined at include " +"time." +msgstr "" + +#: ../../../build/NEWS:17 ../../../build/NEWS:101 ../../../build/NEWS:352 +#: ../../../build/NEWS:500 ../../../build/NEWS:951 ../../../build/NEWS:1216 +#: ../../../build/NEWS:1451 ../../../build/NEWS:1910 ../../../build/NEWS:2574 +#: ../../../build/NEWS:3118 ../../../build/NEWS:3412 ../../../build/NEWS:4164 +#: ../../../build/NEWS:6572 ../../../build/NEWS:6605 ../../../build/NEWS:6733 +#: ../../../build/NEWS:6941 ../../../build/NEWS:7132 ../../../build/NEWS:7337 +#: ../../../build/NEWS:7635 ../../../build/NEWS:7956 ../../../build/NEWS:8281 +#: ../../../build/NEWS:8871 ../../../build/NEWS:9530 ../../../build/NEWS:11199 +#: ../../../build/NEWS:11545 ../../../build/NEWS:11911 +#: ../../../build/NEWS:12235 ../../../build/NEWS:12337 +#: ../../../build/NEWS:12793 ../../../build/NEWS:12828 +#: ../../../build/NEWS:13190 ../../../build/NEWS:13493 +#: ../../../build/NEWS:13575 ../../../build/NEWS:13678 +#: ../../../build/NEWS:13848 ../../../build/NEWS:14183 +#: ../../../build/NEWS:14601 ../../../build/NEWS:14810 +#: ../../../build/NEWS:14894 ../../../build/NEWS:14911 +#: ../../../build/NEWS:15053 ../../../build/NEWS:15079 +#: ../../../build/NEWS:15129 ../../../build/NEWS:15601 +#: ../../../build/NEWS:15724 ../../../build/NEWS:15834 +#: ../../../build/NEWS:15924 ../../../build/NEWS:16656 +#: ../../../build/NEWS:16674 ../../../build/NEWS:16762 +#: ../../../build/NEWS:17234 ../../../build/NEWS:17548 +#: ../../../build/NEWS:17559 ../../../build/NEWS:17953 +#: ../../../build/NEWS:17985 ../../../build/NEWS:18097 +#: ../../../build/NEWS:18151 ../../../build/NEWS:18220 +#: ../../../build/NEWS:18658 ../../../build/NEWS:19096 +#: ../../../build/NEWS:19123 ../../../build/NEWS:19161 +#: ../../../build/NEWS:19181 ../../../build/NEWS:19288 +#: ../../../build/NEWS:19382 ../../../build/NEWS:19478 +#: ../../../build/NEWS:19553 ../../../build/NEWS:19811 +#: ../../../build/NEWS:20034 ../../../build/NEWS:20207 +#: ../../../build/NEWS:20565 +msgid "Library" +msgstr "Pustaka" + +#: ../../../build/NEWS:19 +msgid "" +"`bpo-39022 `__: Update " +"importliib.metadata to include improvements from importlib_metadata 1.3 " +"including better serialization of EntryPoints and improved documentation for" +" custom finders." +msgstr "" + +#: ../../../build/NEWS:24 ../../../build/NEWS:278 ../../../build/NEWS:395 +#: ../../../build/NEWS:802 ../../../build/NEWS:1118 ../../../build/NEWS:1338 +#: ../../../build/NEWS:1641 ../../../build/NEWS:2407 ../../../build/NEWS:2916 +#: ../../../build/NEWS:3284 ../../../build/NEWS:3529 ../../../build/NEWS:6121 +#: ../../../build/NEWS:6665 ../../../build/NEWS:7048 ../../../build/NEWS:7256 +#: ../../../build/NEWS:7503 ../../../build/NEWS:7842 ../../../build/NEWS:8148 +#: ../../../build/NEWS:8683 ../../../build/NEWS:10791 +#: ../../../build/NEWS:11388 ../../../build/NEWS:11719 +#: ../../../build/NEWS:12130 ../../../build/NEWS:12507 +#: ../../../build/NEWS:13081 ../../../build/NEWS:13330 +#: ../../../build/NEWS:13460 ../../../build/NEWS:13750 +#: ../../../build/NEWS:13991 ../../../build/NEWS:14521 +#: ../../../build/NEWS:14753 ../../../build/NEWS:15274 +#: ../../../build/NEWS:15290 ../../../build/NEWS:16561 +#: ../../../build/NEWS:17066 ../../../build/NEWS:17709 +#: ../../../build/NEWS:18528 ../../../build/NEWS:18560 +#: ../../../build/NEWS:18578 ../../../build/NEWS:19035 +#: ../../../build/NEWS:20324 ../../../build/NEWS:22137 +msgid "Windows" +msgstr "Windows" + +#: ../../../build/NEWS:26 +msgid "" +"`bpo-39007 `__: Add auditing events to " +"functions in :mod:`winreg`." +msgstr "" + +#: ../../../build/NEWS:29 ../../../build/NEWS:300 ../../../build/NEWS:404 +#: ../../../build/NEWS:858 ../../../build/NEWS:1160 ../../../build/NEWS:1344 +#: ../../../build/NEWS:1672 ../../../build/NEWS:2428 ../../../build/NEWS:2977 +#: ../../../build/NEWS:3296 ../../../build/NEWS:3545 ../../../build/NEWS:6267 +#: ../../../build/NEWS:6670 ../../../build/NEWS:6900 ../../../build/NEWS:7058 +#: ../../../build/NEWS:7274 ../../../build/NEWS:7527 ../../../build/NEWS:8703 +#: ../../../build/NEWS:8989 ../../../build/NEWS:10858 +#: ../../../build/NEWS:11398 ../../../build/NEWS:11752 +#: ../../../build/NEWS:12144 ../../../build/NEWS:12521 +#: ../../../build/NEWS:12996 ../../../build/NEWS:13322 +#: ../../../build/NEWS:14436 ../../../build/NEWS:14709 +#: ../../../build/NEWS:14920 ../../../build/NEWS:15190 +#: ../../../build/NEWS:16327 ../../../build/NEWS:17636 +#: ../../../build/NEWS:17804 ../../../build/NEWS:18370 +#: ../../../build/NEWS:18890 ../../../build/NEWS:19223 +#: ../../../build/NEWS:19735 ../../../build/NEWS:21758 +msgid "IDLE" +msgstr "IDLE" + +#: ../../../build/NEWS:31 +msgid "" +"`bpo-38944 `__: Excape key now closes " +"IDLE completion windows. Patch by Johnny Najera." +msgstr "" + +#: ../../../build/NEWS:34 +msgid "" +"`bpo-38943 `__: Fix IDLE autocomplete " +"windows not always appearing on some systems. Patch by Johnny Najera." +msgstr "" + +#: ../../../build/NEWS:39 +msgid "Python 3.8.1 release candidate 1" +msgstr "" + +#: ../../../build/NEWS:41 +msgid "*Release date: 2019-12-09*" +msgstr "" + +#: ../../../build/NEWS:44 ../../../build/NEWS:434 ../../../build/NEWS:913 +#: ../../../build/NEWS:1200 ../../../build/NEWS:1389 ../../../build/NEWS:1731 +#: ../../../build/NEWS:2487 ../../../build/NEWS:3031 ../../../build/NEWS:3561 +#: ../../../build/NEWS:7092 ../../../build/NEWS:7310 ../../../build/NEWS:9038 +#: ../../../build/NEWS:11489 ../../../build/NEWS:12256 +#: ../../../build/NEWS:12719 ../../../build/NEWS:12821 +#: ../../../build/NEWS:14887 ../../../build/NEWS:14906 +#: ../../../build/NEWS:15071 ../../../build/NEWS:15122 +#: ../../../build/NEWS:15717 ../../../build/NEWS:15828 +#: ../../../build/NEWS:15918 ../../../build/NEWS:16627 +#: ../../../build/NEWS:16686 ../../../build/NEWS:17541 +#: ../../../build/NEWS:17554 ../../../build/NEWS:17945 +#: ../../../build/NEWS:17978 ../../../build/NEWS:18090 +#: ../../../build/NEWS:18145 ../../../build/NEWS:18214 msgid "Security" msgstr "Keamanan" -#: ../../../build/NEWS:12 +#: ../../../build/NEWS:46 +msgid "" +"`bpo-38945 `__: Newline characters have " +"been escaped when performing uu encoding to prevent them from overflowing " +"into to content section of the encoded file. This prevents malicious or " +"accidental modification of data during the decoding process." +msgstr "" + +#: ../../../build/NEWS:51 +msgid "" +"`bpo-37228 `__: Due to significant " +"security concerns, the *reuse_address* parameter of " +":meth:`asyncio.loop.create_datagram_endpoint` is no longer supported. This " +"is because of the behavior of ``SO_REUSEADDR`` in UDP. For more details, see" +" the documentation for ``loop.create_datagram_endpoint()``. (Contributed by " +"Kyle Stanley, Antoine Pitrou, and Yury Selivanov in :issue:`37228`.)" +msgstr "" + +#: ../../../build/NEWS:58 +msgid "" +"`bpo-38722 `__: :mod:`runpy` now uses " +":meth:`io.open_code` to open code files. Patch by Jason Killen." +msgstr "" + +#: ../../../build/NEWS:61 +msgid "" +"`bpo-38804 `__: Fixes a ReDoS " +"vulnerability in :mod:`http.cookiejar`. Patch by Ben Caller." +msgstr "" + +#: ../../../build/NEWS:64 +msgid "" +"`bpo-38622 `__: Add additional audit " +"events for the :mod:`ctypes` module." +msgstr "" + +#: ../../../build/NEWS:66 msgid "" "`bpo-38418 `__: Fixes audit event for " ":func:`os.system` to be named ``os.system``." @@ -59,116 +240,245 @@ msgstr "" "`bpo-38418 `__: Memperbaiki *event* " "audit untuk :func:`os.system` untuk diberi nama ``os.system``." -#: ../../../build/NEWS:16 ../../../build/NEWS:115 ../../../build/NEWS:226 -#: ../../../build/NEWS:697 ../../../build/NEWS:983 ../../../build/NEWS:1188 -#: ../../../build/NEWS:1523 ../../../build/NEWS:2282 ../../../build/NEWS:2820 -#: ../../../build/NEWS:3125 ../../../build/NEWS:3387 ../../../build/NEWS:6367 -#: ../../../build/NEWS:6479 ../../../build/NEWS:6692 ../../../build/NEWS:6883 -#: ../../../build/NEWS:7093 ../../../build/NEWS:7337 ../../../build/NEWS:7656 -#: ../../../build/NEWS:7960 ../../../build/NEWS:8560 ../../../build/NEWS:8849 -#: ../../../build/NEWS:10939 ../../../build/NEWS:11276 -#: ../../../build/NEWS:11593 ../../../build/NEWS:12042 -#: ../../../build/NEWS:12523 ../../../build/NEWS:12875 -#: ../../../build/NEWS:12899 ../../../build/NEWS:13223 -#: ../../../build/NEWS:13253 ../../../build/NEWS:13317 -#: ../../../build/NEWS:13431 ../../../build/NEWS:13555 -#: ../../../build/NEWS:13823 ../../../build/NEWS:14332 -#: ../../../build/NEWS:14570 ../../../build/NEWS:14790 -#: ../../../build/NEWS:15093 ../../../build/NEWS:16427 -#: ../../../build/NEWS:16488 ../../../build/NEWS:16880 -#: ../../../build/NEWS:17571 ../../../build/NEWS:17592 -#: ../../../build/NEWS:18349 ../../../build/NEWS:18367 -#: ../../../build/NEWS:18890 ../../../build/NEWS:18925 -#: ../../../build/NEWS:18953 ../../../build/NEWS:19045 -#: ../../../build/NEWS:19132 ../../../build/NEWS:19237 -#: ../../../build/NEWS:19280 ../../../build/NEWS:19556 -#: ../../../build/NEWS:19791 ../../../build/NEWS:19977 -#: ../../../build/NEWS:20116 -msgid "Core and Builtins" -msgstr "Inti dan Bawaan" +#: ../../../build/NEWS:72 +msgid "" +"`bpo-38673 `__: In REPL mode, don't " +"switch to PS2 if the line starts with comment or whitespace. Based on work " +"by Batuhan Taşkaya." +msgstr "" -#: ../../../build/NEWS:18 +#: ../../../build/NEWS:75 +msgid "" +"`bpo-38922 `__: Calling ``replace`` on a" +" code object now raises the ``code.__new__`` audit event." +msgstr "" + +#: ../../../build/NEWS:78 +msgid "" +"`bpo-38920 `__: Add audit hooks for when" +" :func:`sys.excepthook` and :func:`sys.unraisablehook` are invoked" +msgstr "" + +#: ../../../build/NEWS:81 +msgid "" +"`bpo-38892 `__: Improve documentation " +"for audit events table and functions." +msgstr "" + +#: ../../../build/NEWS:83 +msgid "" +"`bpo-38707 `__: ``MainThread.native_id``" +" is now correctly reset in child processes spawned using " +":class:`multiprocessing.Process`, instead of retaining the parent's value." +msgstr "" + +#: ../../../build/NEWS:87 msgid "" "`bpo-38640 `__: Fixed a bug in the " "compiler that was causing to raise in the presence of break statements and " "continue statements inside always false while loops. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:22 +#: ../../../build/NEWS:91 msgid "" "`bpo-38535 `__: Fixed line numbers and " "column offsets for AST nodes for calls without arguments in decorators." msgstr "" -#: ../../../build/NEWS:25 +#: ../../../build/NEWS:94 msgid "" "`bpo-38525 `__: Fix a segmentation fault" " when using reverse iterators of empty ``dict`` objects. Patch by Dong-hee " "Na and Inada Naoki." msgstr "" -#: ../../../build/NEWS:29 ../../../build/NEWS:129 ../../../build/NEWS:277 -#: ../../../build/NEWS:728 ../../../build/NEWS:993 ../../../build/NEWS:1228 -#: ../../../build/NEWS:1687 ../../../build/NEWS:2351 ../../../build/NEWS:2895 -#: ../../../build/NEWS:3189 ../../../build/NEWS:3941 ../../../build/NEWS:6349 -#: ../../../build/NEWS:6382 ../../../build/NEWS:6510 ../../../build/NEWS:6718 -#: ../../../build/NEWS:6909 ../../../build/NEWS:7114 ../../../build/NEWS:7412 -#: ../../../build/NEWS:7733 ../../../build/NEWS:8058 ../../../build/NEWS:8648 -#: ../../../build/NEWS:9307 ../../../build/NEWS:10976 -#: ../../../build/NEWS:11322 ../../../build/NEWS:11688 -#: ../../../build/NEWS:12012 ../../../build/NEWS:12114 -#: ../../../build/NEWS:12570 ../../../build/NEWS:12605 -#: ../../../build/NEWS:12967 ../../../build/NEWS:13270 -#: ../../../build/NEWS:13352 ../../../build/NEWS:13455 -#: ../../../build/NEWS:13625 ../../../build/NEWS:13960 -#: ../../../build/NEWS:14378 ../../../build/NEWS:14587 -#: ../../../build/NEWS:14671 ../../../build/NEWS:14688 -#: ../../../build/NEWS:14830 ../../../build/NEWS:14856 -#: ../../../build/NEWS:14906 ../../../build/NEWS:15378 -#: ../../../build/NEWS:15501 ../../../build/NEWS:15611 -#: ../../../build/NEWS:15701 ../../../build/NEWS:16433 -#: ../../../build/NEWS:16451 ../../../build/NEWS:16539 -#: ../../../build/NEWS:17011 ../../../build/NEWS:17325 -#: ../../../build/NEWS:17336 ../../../build/NEWS:17730 -#: ../../../build/NEWS:17762 ../../../build/NEWS:17874 -#: ../../../build/NEWS:17928 ../../../build/NEWS:17997 -#: ../../../build/NEWS:18435 ../../../build/NEWS:18873 -#: ../../../build/NEWS:18900 ../../../build/NEWS:18938 -#: ../../../build/NEWS:18958 ../../../build/NEWS:19065 -#: ../../../build/NEWS:19159 ../../../build/NEWS:19255 -#: ../../../build/NEWS:19330 ../../../build/NEWS:19588 -#: ../../../build/NEWS:19811 ../../../build/NEWS:19984 -#: ../../../build/NEWS:20342 -msgid "Library" -msgstr "Pustaka" +#: ../../../build/NEWS:97 +msgid "" +"`bpo-35409 `__: Ignore GeneratorExit " +"exceptions when throwing an exception into the aclose coroutine of an " +"asynchronous generator." +msgstr "" -#: ../../../build/NEWS:31 +#: ../../../build/NEWS:103 +msgid "" +"`bpo-39006 `__: Fix asyncio when the ssl" +" module is missing: only check for ssl.SSLSocket instance if the ssl module " +"is available." +msgstr "" + +#: ../../../build/NEWS:106 +msgid "" +"`bpo-38708 `__: Fix a potential " +"IndexError in email parser when parsing an empty msg-id." +msgstr "" + +#: ../../../build/NEWS:109 +msgid "" +"`bpo-38698 `__: Add a new " +"``InvalidMessageID`` token to email parser to represent invalid Message-ID " +"headers. Also, add defects when there is remaining value after parsing the " +"header." +msgstr "" + +#: ../../../build/NEWS:113 +msgid "" +"`bpo-38979 `__: Return class from " +"``ContextVar.__class_getitem__`` to simplify subclassing." +msgstr "" + +#: ../../../build/NEWS:116 +msgid "" +"`bpo-38986 `__: Make repr of C " +"accelerated TaskWakeupMethWrapper the same as of pure Python version." +msgstr "" + +#: ../../../build/NEWS:119 +msgid "" +"`bpo-38529 `__: Drop too noisy asyncio " +"warning about deletion of a stream without explicit ``.close()`` call." +msgstr "" + +#: ../../../build/NEWS:122 +msgid "" +"`bpo-38634 `__: The :mod:`readline` " +"module now detects if Python is linked to libedit at runtime on all " +"platforms. Previously, the check was only done on macOS." +msgstr "" + +#: ../../../build/NEWS:126 +msgid "" +"`bpo-33684 `__: Fix ``json.tool`` failed" +" to read a JSON file with non-ASCII characters when locale encoding is not " +"UTF-8." +msgstr "" + +#: ../../../build/NEWS:129 +msgid "" +"`bpo-38698 `__: Prevent " +"UnboundLocalError to pop up in parse_message_id" +msgstr "" + +#: ../../../build/NEWS:131 +msgid "" +"parse_message_id() was improperly using a token defined inside an exception " +"handler, which was raising `UnboundLocalError` on parsing an invalid value. " +"Patch by Claudiu Popa." +msgstr "" + +#: ../../../build/NEWS:135 +msgid "" +"`bpo-26730 `__: Fix " +"``SpooledTemporaryFile.rollover()`` might corrupt the file when it is in " +"text mode. Patch by Serhiy Storchaka." +msgstr "" + +#: ../../../build/NEWS:138 +msgid "" +"`bpo-38668 `__: Calling " +"func:`shutil.copytree` to copy a directory tree from one directory to " +"another subdirectory resulted in an endless loop and a RecursionError. A fix" +" was added to consume an iterator and create the list of the entries to be " +"copied, avoiding the recursion for newly created directories. Patch by Bruno" +" P. Kinoshita." +msgstr "" + +#: ../../../build/NEWS:144 +msgid "" +"`bpo-37838 `__: " +":meth:`typing.get_type_hints` properly handles functions decorated with " +":meth:`functools.wraps`." +msgstr "" + +#: ../../../build/NEWS:147 +msgid "" +"`bpo-38859 `__: AsyncMock now returns " +"StopAsyncIteration on the exaustion of a side_effects iterable. Since " +"PEP-479 its Impossible to raise a StopIteration exception from a coroutine." +msgstr "" + +#: ../../../build/NEWS:151 +msgid "" +"`bpo-38857 `__: AsyncMock fix for return" +" values that are awaitable types. This also covers side_effect iterable " +"values that happend to be awaitable, and wraps callables that return an " +"awaitable type. Before these awaitables were being awaited instead of being " +"returned as is." +msgstr "" + +#: ../../../build/NEWS:156 +msgid "" +"`bpo-38821 `__: Fix unhandled exceptions" +" in :mod:`argparse` when internationalizing error messages for arguments " +"with ``nargs`` set to special (non-integer) values. Patch by Federico Bond." +msgstr "" + +#: ../../../build/NEWS:160 +msgid "" +"`bpo-38820 `__: Make Python compatible " +"with OpenSSL 3.0.0. :func:`ssl.SSLSocket.getpeercert` no longer returns IPv6" +" addresses with a trailing new line." +msgstr "" + +#: ../../../build/NEWS:164 +msgid "" +"`bpo-38807 `__: Update :exc:`TypeError` " +"messages for :meth:`os.path.join` to include :class:`os.PathLike` objects as" +" acceptable input types." +msgstr "" + +#: ../../../build/NEWS:167 +msgid "" +"`bpo-38785 `__: Prevent asyncio from " +"crashing if parent ``__init__`` is not called from a constructor of object " +"derived from ``asyncio.Future``." +msgstr "" + +#: ../../../build/NEWS:170 +msgid "" +"`bpo-38723 `__: :mod:`pdb` now uses " +":meth:`io.open_code` to trigger auditing events." +msgstr "" + +#: ../../../build/NEWS:173 +msgid "" +"`bpo-27805 `__: Allow opening pipes and " +"other non-seekable files in append mode with :func:`open`." +msgstr "" + +#: ../../../build/NEWS:176 +msgid "" +"`bpo-38686 `__: Added support for " +"multiple ``qop`` values in " +":class:`urllib.request.AbstractDigestAuthHandler`." +msgstr "" + +#: ../../../build/NEWS:179 msgid "" "`bpo-38334 `__: Fixed seeking backward " "on an encrypted :class:`zipfile.ZipExtFile`." msgstr "" -#: ../../../build/NEWS:34 +#: ../../../build/NEWS:182 msgid "" "`bpo-34679 `__: " "asynci.ProactorEventLoop.close() now only calls signal.set_wakeup_fd() in " "the main thread." msgstr "" -#: ../../../build/NEWS:37 +#: ../../../build/NEWS:185 msgid "" "`bpo-31202 `__: The case the result of " ":func:`pathlib.WindowsPath.glob` matches now the case of the pattern for " "literal parts." msgstr "" -#: ../../../build/NEWS:40 +#: ../../../build/NEWS:188 msgid "" "`bpo-38521 `__: Fixed erroneous equality" " comparison in statistics.NormalDist()." msgstr "" -#: ../../../build/NEWS:42 +#: ../../../build/NEWS:190 msgid "" "`bpo-38478 `__: Fixed a bug in " ":meth:`inspect.signature.bind` that was causing it to fail when handling a " @@ -176,7 +486,7 @@ msgid "" " Galindo." msgstr "" -#: ../../../build/NEWS:46 +#: ../../../build/NEWS:194 msgid "" "`bpo-33604 `__: Fixed `hmac.new` and " "`hmac.HMAC` to raise TypeError instead of ValueError when the digestmod " @@ -184,75 +494,156 @@ msgid "" "documentation and docstrings." msgstr "" -#: ../../../build/NEWS:50 +#: ../../../build/NEWS:198 +msgid "" +"`bpo-38422 `__: Clarify docstrings of " +"pathlib suffix(es)" +msgstr "" + +#: ../../../build/NEWS:200 msgid "" "`bpo-36993 `__: Improve error reporting " "for corrupt zip files with bad zip64 extra data. Patch by Daniel Hillier." msgstr "" -#: ../../../build/NEWS:53 +#: ../../../build/NEWS:203 +msgid "" +"`bpo-36820 `__: Break cycle generated " +"when saving an exception in socket.py, codeop.py and dyld.py as they keep " +"alive not only the exception but user objects through the ``__traceback__`` " +"attribute. Patch by Mario Corchero." +msgstr "" + +#: ../../../build/NEWS:207 +msgid "" +"`bpo-34776 `__: Fix dataclasses to " +"support forward references in type annotations" +msgstr "" + +#: ../../../build/NEWS:210 msgid "" "`bpo-33348 `__: lib2to3 now recognizes " "expressions after ``*`` and `**` like in ``f(*[] or [])``." msgstr "" -#: ../../../build/NEWS:56 +#: ../../../build/NEWS:213 msgid "" "`bpo-27657 `__: Fix " "urllib.parse.urlparse() with numeric paths. A string like \"path:80\" is no " "longer parsed as a path but as a scheme (\"path\") and a path (\"80\")." msgstr "" -#: ../../../build/NEWS:61 ../../../build/NEWS:158 ../../../build/NEWS:475 -#: ../../../build/NEWS:862 ../../../build/NEWS:1056 ../../../build/NEWS:1351 -#: ../../../build/NEWS:2077 ../../../build/NEWS:2543 ../../../build/NEWS:3020 -#: ../../../build/NEWS:3262 ../../../build/NEWS:5448 ../../../build/NEWS:6423 -#: ../../../build/NEWS:6633 ../../../build/NEWS:6783 ../../../build/NEWS:7001 -#: ../../../build/NEWS:7246 ../../../build/NEWS:7571 ../../../build/NEWS:7911 -#: ../../../build/NEWS:8394 ../../../build/NEWS:8737 ../../../build/NEWS:10345 -#: ../../../build/NEWS:11099 ../../../build/NEWS:11455 -#: ../../../build/NEWS:11852 ../../../build/NEWS:12250 -#: ../../../build/NEWS:12822 ../../../build/NEWS:13142 -#: ../../../build/NEWS:13298 ../../../build/NEWS:13401 -#: ../../../build/NEWS:14769 ../../../build/NEWS:15029 -#: ../../../build/NEWS:16214 ../../../build/NEWS:16774 -#: ../../../build/NEWS:17450 ../../../build/NEWS:18200 -#: ../../../build/NEWS:18764 ../../../build/NEWS:19017 -#: ../../../build/NEWS:19216 ../../../build/NEWS:19527 -#: ../../../build/NEWS:21727 +#: ../../../build/NEWS:218 ../../../build/NEWS:381 ../../../build/NEWS:698 +#: ../../../build/NEWS:1085 ../../../build/NEWS:1279 ../../../build/NEWS:1574 +#: ../../../build/NEWS:2300 ../../../build/NEWS:2766 ../../../build/NEWS:3243 +#: ../../../build/NEWS:3485 ../../../build/NEWS:5671 ../../../build/NEWS:6646 +#: ../../../build/NEWS:6856 ../../../build/NEWS:7006 ../../../build/NEWS:7224 +#: ../../../build/NEWS:7469 ../../../build/NEWS:7794 ../../../build/NEWS:8134 +#: ../../../build/NEWS:8617 ../../../build/NEWS:8960 ../../../build/NEWS:10568 +#: ../../../build/NEWS:11322 ../../../build/NEWS:11678 +#: ../../../build/NEWS:12075 ../../../build/NEWS:12473 +#: ../../../build/NEWS:13045 ../../../build/NEWS:13365 +#: ../../../build/NEWS:13521 ../../../build/NEWS:13624 +#: ../../../build/NEWS:14992 ../../../build/NEWS:15252 +#: ../../../build/NEWS:16437 ../../../build/NEWS:16997 +#: ../../../build/NEWS:17673 ../../../build/NEWS:18423 +#: ../../../build/NEWS:18987 ../../../build/NEWS:19240 +#: ../../../build/NEWS:19439 ../../../build/NEWS:19750 +#: ../../../build/NEWS:21950 msgid "Documentation" msgstr "Dokumentasi" -#: ../../../build/NEWS:63 +#: ../../../build/NEWS:220 +msgid "" +"`bpo-38816 `__: Provides more details " +"about the interaction between :c:func:`fork` and CPython's runtime, focusing" +" just on the C-API. This includes cautions about where :c:func:`fork` " +"should and shouldn't be called." +msgstr "" + +#: ../../../build/NEWS:225 +msgid "" +"`bpo-38351 `__: Modernize :mod:`email` " +"examples from %-formatting to f-strings." +msgstr "" + +#: ../../../build/NEWS:227 +msgid "" +"`bpo-38778 `__: Document the fact that " +":exc:`RuntimeError` is raised if :meth:`os.fork` is called in a " +"subinterpreter." +msgstr "" + +#: ../../../build/NEWS:230 msgid "" "`bpo-38592 `__: Add Brazilian Portuguese" " to the language switcher at Python Documentation website." msgstr "" -#: ../../../build/NEWS:67 ../../../build/NEWS:163 ../../../build/NEWS:505 -#: ../../../build/NEWS:882 ../../../build/NEWS:1085 ../../../build/NEWS:1357 -#: ../../../build/NEWS:2125 ../../../build/NEWS:2578 ../../../build/NEWS:3034 -#: ../../../build/NEWS:3273 ../../../build/NEWS:5613 ../../../build/NEWS:6648 -#: ../../../build/NEWS:6802 ../../../build/NEWS:7018 ../../../build/NEWS:7270 -#: ../../../build/NEWS:7584 ../../../build/NEWS:7916 ../../../build/NEWS:8400 -#: ../../../build/NEWS:10393 ../../../build/NEWS:11137 -#: ../../../build/NEWS:11250 ../../../build/NEWS:11475 -#: ../../../build/NEWS:11865 ../../../build/NEWS:12262 -#: ../../../build/NEWS:12844 ../../../build/NEWS:13155 -#: ../../../build/NEWS:13406 ../../../build/NEWS:13541 -#: ../../../build/NEWS:13812 ../../../build/NEWS:14242 -#: ../../../build/NEWS:14515 ../../../build/NEWS:14778 -#: ../../../build/NEWS:15041 ../../../build/NEWS:16232 -#: ../../../build/NEWS:16792 ../../../build/NEWS:17455 -#: ../../../build/NEWS:17576 ../../../build/NEWS:18223 -#: ../../../build/NEWS:18788 ../../../build/NEWS:19032 -#: ../../../build/NEWS:19209 ../../../build/NEWS:19518 -#: ../../../build/NEWS:19747 ../../../build/NEWS:19957 -#: ../../../build/NEWS:21767 +#: ../../../build/NEWS:234 ../../../build/NEWS:386 ../../../build/NEWS:728 +#: ../../../build/NEWS:1105 ../../../build/NEWS:1308 ../../../build/NEWS:1580 +#: ../../../build/NEWS:2348 ../../../build/NEWS:2801 ../../../build/NEWS:3257 +#: ../../../build/NEWS:3496 ../../../build/NEWS:5836 ../../../build/NEWS:6871 +#: ../../../build/NEWS:7025 ../../../build/NEWS:7241 ../../../build/NEWS:7493 +#: ../../../build/NEWS:7807 ../../../build/NEWS:8139 ../../../build/NEWS:8623 +#: ../../../build/NEWS:10616 ../../../build/NEWS:11360 +#: ../../../build/NEWS:11473 ../../../build/NEWS:11698 +#: ../../../build/NEWS:12088 ../../../build/NEWS:12485 +#: ../../../build/NEWS:13067 ../../../build/NEWS:13378 +#: ../../../build/NEWS:13629 ../../../build/NEWS:13764 +#: ../../../build/NEWS:14035 ../../../build/NEWS:14465 +#: ../../../build/NEWS:14738 ../../../build/NEWS:15001 +#: ../../../build/NEWS:15264 ../../../build/NEWS:16455 +#: ../../../build/NEWS:17015 ../../../build/NEWS:17678 +#: ../../../build/NEWS:17799 ../../../build/NEWS:18446 +#: ../../../build/NEWS:19011 ../../../build/NEWS:19255 +#: ../../../build/NEWS:19432 ../../../build/NEWS:19741 +#: ../../../build/NEWS:19970 ../../../build/NEWS:20180 +#: ../../../build/NEWS:21990 msgid "Tests" msgstr "Pengujian" -#: ../../../build/NEWS:69 +#: ../../../build/NEWS:236 +msgid "" +"`bpo-38547 `__: Fix test_pty: if the " +"process is the session leader, closing the master file descriptor raises a " +"SIGHUP signal: simply ignore SIGHUP when running the tests." +msgstr "" + +#: ../../../build/NEWS:240 +msgid "" +"`bpo-38992 `__: Fix a test for " +":func:`math.fsum` that was failing due to constant folding." +msgstr "" + +#: ../../../build/NEWS:243 +msgid "" +"`bpo-38965 `__: Fix test_faulthandler on" +" GCC 10. Use the \"volatile\" keyword in ``faulthandler._stack_overflow()`` " +"to prevent tail call optimization on any compiler, rather than relying on " +"compiler specific pragma." +msgstr "" + +#: ../../../build/NEWS:247 +msgid "" +"`bpo-38875 `__: test_capi: trashcan " +"tests now require the test \"cpu\" resource." +msgstr "" + +#: ../../../build/NEWS:249 +msgid "" +"`bpo-38841 `__: Skip asyncio " +"test_create_datagram_endpoint_existing_sock_unix on platforms lacking a " +"functional bind() for named unix domain sockets." +msgstr "" + +#: ../../../build/NEWS:252 +msgid "" +"`bpo-38669 `__: Raise :exc:`TypeError` " +"when passing target as a string with :meth:`unittest.mock.patch.object`." +msgstr "" + +#: ../../../build/NEWS:255 msgid "" "`bpo-35998 `__: Fix a race condition in " "test_asyncio.test_start_tls_server_1(). Previously, there was a race " @@ -262,126 +653,167 @@ msgid "" "longer sends data." msgstr "" -#: ../../../build/NEWS:76 ../../../build/NEWS:553 ../../../build/NEWS:888 -#: ../../../build/NEWS:1102 ../../../build/NEWS:1411 ../../../build/NEWS:2161 -#: ../../../build/NEWS:2632 ../../../build/NEWS:3047 ../../../build/NEWS:5780 -#: ../../../build/NEWS:6435 ../../../build/NEWS:6657 ../../../build/NEWS:6808 -#: ../../../build/NEWS:7028 ../../../build/NEWS:7275 ../../../build/NEWS:7604 -#: ../../../build/NEWS:8427 ../../../build/NEWS:8747 ../../../build/NEWS:10456 -#: ../../../build/NEWS:11145 ../../../build/NEWS:11255 -#: ../../../build/NEWS:11490 ../../../build/NEWS:11882 -#: ../../../build/NEWS:12018 ../../../build/NEWS:12278 -#: ../../../build/NEWS:12802 ../../../build/NEWS:12886 -#: ../../../build/NEWS:13177 ../../../build/NEWS:13242 -#: ../../../build/NEWS:13414 ../../../build/NEWS:13532 -#: ../../../build/NEWS:13801 ../../../build/NEWS:14256 -#: ../../../build/NEWS:14542 ../../../build/NEWS:14739 -#: ../../../build/NEWS:15058 ../../../build/NEWS:16275 -#: ../../../build/NEWS:16830 ../../../build/NEWS:17501 -#: ../../../build/NEWS:18246 ../../../build/NEWS:18801 -#: ../../../build/NEWS:18861 ../../../build/NEWS:18878 -#: ../../../build/NEWS:19120 ../../../build/NEWS:19225 -#: ../../../build/NEWS:19738 ../../../build/NEWS:19952 -#: ../../../build/NEWS:20087 ../../../build/NEWS:21618 +#: ../../../build/NEWS:262 ../../../build/NEWS:776 ../../../build/NEWS:1111 +#: ../../../build/NEWS:1325 ../../../build/NEWS:1634 ../../../build/NEWS:2384 +#: ../../../build/NEWS:2855 ../../../build/NEWS:3270 ../../../build/NEWS:6003 +#: ../../../build/NEWS:6658 ../../../build/NEWS:6880 ../../../build/NEWS:7031 +#: ../../../build/NEWS:7251 ../../../build/NEWS:7498 ../../../build/NEWS:7827 +#: ../../../build/NEWS:8650 ../../../build/NEWS:8970 ../../../build/NEWS:10679 +#: ../../../build/NEWS:11368 ../../../build/NEWS:11478 +#: ../../../build/NEWS:11713 ../../../build/NEWS:12105 +#: ../../../build/NEWS:12241 ../../../build/NEWS:12501 +#: ../../../build/NEWS:13025 ../../../build/NEWS:13109 +#: ../../../build/NEWS:13400 ../../../build/NEWS:13465 +#: ../../../build/NEWS:13637 ../../../build/NEWS:13755 +#: ../../../build/NEWS:14024 ../../../build/NEWS:14479 +#: ../../../build/NEWS:14765 ../../../build/NEWS:14962 +#: ../../../build/NEWS:15281 ../../../build/NEWS:16498 +#: ../../../build/NEWS:17053 ../../../build/NEWS:17724 +#: ../../../build/NEWS:18469 ../../../build/NEWS:19024 +#: ../../../build/NEWS:19084 ../../../build/NEWS:19101 +#: ../../../build/NEWS:19343 ../../../build/NEWS:19448 +#: ../../../build/NEWS:19961 ../../../build/NEWS:20175 +#: ../../../build/NEWS:20310 ../../../build/NEWS:21841 msgid "Build" msgstr "Pembangunan" -#: ../../../build/NEWS:78 +#: ../../../build/NEWS:264 +msgid "" +"`bpo-37404 `__: :mod:`asyncio` now " +"raises :exc:`TyperError` when calling incompatible methods with an " +":class:`ssl.SSLSocket` socket. Patch by Ido Michael." +msgstr "" + +#: ../../../build/NEWS:268 +msgid "" +"`bpo-38809 `__: On Windows, build " +"scripts will now recognize and use python.exe from an active virtual env." +msgstr "" + +#: ../../../build/NEWS:271 +msgid "" +"`bpo-38684 `__: Fix _hashlib build when " +"Blake2 is disabled, but OpenSSL supports it." +msgstr "" + +#: ../../../build/NEWS:274 msgid "" "`bpo-37415 `__: Fix stdatomic.h header " "check for ICC compiler: the ICC implementation lacks atomic_uintptr_t type " "which is needed by Python." msgstr "" -#: ../../../build/NEWS:82 ../../../build/NEWS:172 ../../../build/NEWS:579 -#: ../../../build/NEWS:895 ../../../build/NEWS:1115 ../../../build/NEWS:1418 -#: ../../../build/NEWS:2184 ../../../build/NEWS:2693 ../../../build/NEWS:3061 -#: ../../../build/NEWS:3306 ../../../build/NEWS:5898 ../../../build/NEWS:6442 -#: ../../../build/NEWS:6825 ../../../build/NEWS:7033 ../../../build/NEWS:7280 -#: ../../../build/NEWS:7619 ../../../build/NEWS:7925 ../../../build/NEWS:8460 -#: ../../../build/NEWS:10568 ../../../build/NEWS:11165 -#: ../../../build/NEWS:11496 ../../../build/NEWS:11907 -#: ../../../build/NEWS:12284 ../../../build/NEWS:12858 -#: ../../../build/NEWS:13107 ../../../build/NEWS:13237 -#: ../../../build/NEWS:13527 ../../../build/NEWS:13768 -#: ../../../build/NEWS:14298 ../../../build/NEWS:14530 -#: ../../../build/NEWS:15051 ../../../build/NEWS:15067 -#: ../../../build/NEWS:16338 ../../../build/NEWS:16843 -#: ../../../build/NEWS:17486 ../../../build/NEWS:18305 -#: ../../../build/NEWS:18337 ../../../build/NEWS:18355 -#: ../../../build/NEWS:18812 ../../../build/NEWS:20101 -#: ../../../build/NEWS:21914 -msgid "Windows" -msgstr "Windows" +#: ../../../build/NEWS:280 +msgid "" +"`bpo-33125 `__: Add support for building" +" and releasing Windows ARM64 packages." +msgstr "" -#: ../../../build/NEWS:84 +#: ../../../build/NEWS:282 msgid "" "`bpo-38589 `__: Fixes HTML Help shortcut" " when Windows is not installed to C drive" msgstr "" -#: ../../../build/NEWS:87 +#: ../../../build/NEWS:285 +msgid "" +"`bpo-38453 `__: Ensure ntpath.realpath()" +" correctly resolves relative paths." +msgstr "" + +#: ../../../build/NEWS:287 msgid "" "`bpo-38519 `__: Restores the internal C " "headers that were missing from the nuget.org and Microsoft Store packages." msgstr "" -#: ../../../build/NEWS:90 +#: ../../../build/NEWS:290 msgid "" "`bpo-38492 `__: Remove ``pythonw.exe`` " "dependency on the Microsoft C++ runtime." msgstr "" -#: ../../../build/NEWS:93 ../../../build/NEWS:181 ../../../build/NEWS:635 -#: ../../../build/NEWS:937 ../../../build/NEWS:1121 ../../../build/NEWS:1449 -#: ../../../build/NEWS:2205 ../../../build/NEWS:2754 ../../../build/NEWS:3073 -#: ../../../build/NEWS:3322 ../../../build/NEWS:6044 ../../../build/NEWS:6447 -#: ../../../build/NEWS:6677 ../../../build/NEWS:6835 ../../../build/NEWS:7051 -#: ../../../build/NEWS:7304 ../../../build/NEWS:8480 ../../../build/NEWS:8766 -#: ../../../build/NEWS:10635 ../../../build/NEWS:11175 -#: ../../../build/NEWS:11529 ../../../build/NEWS:11921 -#: ../../../build/NEWS:12298 ../../../build/NEWS:12773 -#: ../../../build/NEWS:13099 ../../../build/NEWS:14213 -#: ../../../build/NEWS:14486 ../../../build/NEWS:14697 -#: ../../../build/NEWS:14967 ../../../build/NEWS:16104 -#: ../../../build/NEWS:17413 ../../../build/NEWS:17581 -#: ../../../build/NEWS:18147 ../../../build/NEWS:18667 -#: ../../../build/NEWS:19000 ../../../build/NEWS:19512 -#: ../../../build/NEWS:21535 -msgid "IDLE" -msgstr "IDLE" +#: ../../../build/NEWS:293 ../../../build/NEWS:850 ../../../build/NEWS:1153 +#: ../../../build/NEWS:1660 ../../../build/NEWS:2421 ../../../build/NEWS:2969 +#: ../../../build/NEWS:6231 ../../../build/NEWS:6893 ../../../build/NEWS:7053 +#: ../../../build/NEWS:7265 ../../../build/NEWS:7522 ../../../build/NEWS:7853 +#: ../../../build/NEWS:8698 ../../../build/NEWS:11393 +#: ../../../build/NEWS:11744 ../../../build/NEWS:12139 +msgid "macOS" +msgstr "macOS" + +#: ../../../build/NEWS:295 +msgid "" +"`bpo-37931 `__: Fixed a crash on OSX " +"dynamic builds that occurred when re-initializing the posix module after a " +"Py_Finalize if the environment had changed since the previous `import " +"posix`. Patch by Benoît Hudson." +msgstr "" + +#: ../../../build/NEWS:302 +msgid "" +"`bpo-38862 `__: 'Strip Trailing " +"Whitespace' on the Format menu removes extra newlines at the end of non-" +"shell files." +msgstr "" + +#: ../../../build/NEWS:305 +msgid "" +"`bpo-26353 `__: Stop adding newline when" +" saving an IDLE shell window." +msgstr "" + +#: ../../../build/NEWS:307 +msgid "" +"`bpo-38636 `__: Fix IDLE Format menu tab" +" toggle and file indent width. These functions (default shortcuts Alt-T and " +"Alt-U) were mistakenly disabled in 3.7.5 and 3.8.0." +msgstr "" -#: ../../../build/NEWS:95 +#: ../../../build/NEWS:311 +msgid "" +"`bpo-4630 `__: Add an option to toggle " +"IDLE's cursor blink for shell, editor, and output windows. See Settings, " +"General, Window Preferences, Cursor Blink. Patch by Zachary Spytz." +msgstr "" + +#: ../../../build/NEWS:315 msgid "" "`bpo-38598 `__: Do not try to compile " "IDLE shell or output windows" msgstr "" -#: ../../../build/NEWS:98 ../../../build/NEWS:197 ../../../build/NEWS:667 -#: ../../../build/NEWS:963 ../../../build/NEWS:1474 ../../../build/NEWS:2228 -#: ../../../build/NEWS:2766 ../../../build/NEWS:3109 ../../../build/NEWS:6265 -#: ../../../build/NEWS:6355 ../../../build/NEWS:7071 ../../../build/NEWS:7641 -#: ../../../build/NEWS:7938 ../../../build/NEWS:8531 ../../../build/NEWS:8793 -#: ../../../build/NEWS:10863 ../../../build/NEWS:11238 -#: ../../../build/NEWS:11571 ../../../build/NEWS:11991 -#: ../../../build/NEWS:12796 ../../../build/NEWS:13125 -#: ../../../build/NEWS:13293 ../../../build/NEWS:13794 -#: ../../../build/NEWS:14233 ../../../build/NEWS:14732 -#: ../../../build/NEWS:15073 ../../../build/NEWS:16377 -#: ../../../build/NEWS:16852 ../../../build/NEWS:17441 -#: ../../../build/NEWS:19780 ../../../build/NEWS:20095 -#: ../../../build/NEWS:21698 +#: ../../../build/NEWS:318 ../../../build/NEWS:420 ../../../build/NEWS:890 +#: ../../../build/NEWS:1186 ../../../build/NEWS:1697 ../../../build/NEWS:2451 +#: ../../../build/NEWS:2989 ../../../build/NEWS:3332 ../../../build/NEWS:6488 +#: ../../../build/NEWS:6578 ../../../build/NEWS:7294 ../../../build/NEWS:7864 +#: ../../../build/NEWS:8161 ../../../build/NEWS:8754 ../../../build/NEWS:9016 +#: ../../../build/NEWS:11086 ../../../build/NEWS:11461 +#: ../../../build/NEWS:11794 ../../../build/NEWS:12214 +#: ../../../build/NEWS:13019 ../../../build/NEWS:13348 +#: ../../../build/NEWS:13516 ../../../build/NEWS:14017 +#: ../../../build/NEWS:14456 ../../../build/NEWS:14955 +#: ../../../build/NEWS:15296 ../../../build/NEWS:16600 +#: ../../../build/NEWS:17075 ../../../build/NEWS:17664 +#: ../../../build/NEWS:20003 ../../../build/NEWS:20318 +#: ../../../build/NEWS:21921 msgid "C API" msgstr "C API" -#: ../../../build/NEWS:100 +#: ../../../build/NEWS:320 +msgid "" +"`bpo-37633 `__: Re-export some function " +"compatibility wrappers for macros in ``pythonrun.h``." +msgstr "" + +#: ../../../build/NEWS:323 msgid "" "`bpo-38540 `__: Fixed possible leak in " ":c:func:`PyArg_Parse` and similar functions for format units ``\"es#\"`` and" " ``\"et#\"`` when the macro :c:macro:`PY_SSIZE_T_CLEAN` is not defined." msgstr "" -#: ../../../build/NEWS:104 +#: ../../../build/NEWS:327 msgid "" "`bpo-36389 `__: The " "``_PyObject_CheckConsistency()`` function is now also available in release " @@ -389,22 +821,22 @@ msgid "" " function of the GC." msgstr "" -#: ../../../build/NEWS:110 +#: ../../../build/NEWS:333 msgid "Python 3.8.0 final" msgstr "Python 3.8.0 final" -#: ../../../build/NEWS:112 +#: ../../../build/NEWS:335 msgid "*Release date: 2019-10-14*" msgstr "*Tanggal rilis: 2019-10-14*" -#: ../../../build/NEWS:117 +#: ../../../build/NEWS:340 msgid "" "`bpo-38469 `__: Fixed a bug where the " "scope of named expressions was not being resolved correctly in the presence " "of the *global* keyword. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:121 +#: ../../../build/NEWS:344 msgid "" "`bpo-38379 `__: When cyclic garbage " "collection (gc) runs finalizers that resurrect unreachable objects, the " @@ -414,21 +846,21 @@ msgid "" "collected. Changed the stats to report that none were collected." msgstr "" -#: ../../../build/NEWS:131 +#: ../../../build/NEWS:354 msgid "" "`bpo-38449 `__: Revert GH-15522, which " "introduces a regression in :meth:`mimetypes.guess_type` due to improper " "handling of filenames as urls." msgstr "" -#: ../../../build/NEWS:135 +#: ../../../build/NEWS:358 msgid "" "`bpo-38431 `__: Fix ``__repr__`` method " "for :class:`dataclasses.InitVar` to support typing objects, patch by Samuel " "Colvin." msgstr "" -#: ../../../build/NEWS:138 +#: ../../../build/NEWS:361 msgid "" "`bpo-38109 `__: Add missing " ":data:`stat.S_IFDOOR`, :data:`stat.S_IFPORT`, :data:`stat.S_IFWHT`, " @@ -436,13 +868,13 @@ msgid "" "values to the Python implementation of :mod:`stat`." msgstr "" -#: ../../../build/NEWS:142 +#: ../../../build/NEWS:365 msgid "" "`bpo-38405 `__: Nested subclasses of " ":class:`typing.NamedTuple` are now pickleable." msgstr "" -#: ../../../build/NEWS:145 +#: ../../../build/NEWS:368 msgid "" "`bpo-38332 `__: Prevent :exc:`KeyError` " "thrown by :func:`_encoded_words.decode` when given an encoded-word with " @@ -450,13 +882,13 @@ msgid "" ":func:`email.message.get`." msgstr "" -#: ../../../build/NEWS:149 +#: ../../../build/NEWS:372 msgid "" "`bpo-38341 `__: Add " ":exc:`smtplib.SMTPNotSupportedError` to the :mod:`smtplib` exported names." msgstr "" -#: ../../../build/NEWS:152 +#: ../../../build/NEWS:375 msgid "" "`bpo-13153 `__: OS native encoding is " "now used for converting between Python strings and Tcl objects. This allows" @@ -465,13 +897,13 @@ msgid "" "MemoryError)." msgstr "" -#: ../../../build/NEWS:160 +#: ../../../build/NEWS:383 msgid "" "`bpo-38294 `__: Add list of no-longer-" "escaped chars to re.escape documentation" msgstr "" -#: ../../../build/NEWS:165 +#: ../../../build/NEWS:388 msgid "" "`bpo-37531 `__: On timeout, regrtest no " "longer attempts to call ``popen.communicate()`` again: it can hang until all" @@ -480,25 +912,25 @@ msgid "" "main process from 1 minute to 5 minutes, for Python slowest buildbots." msgstr "" -#: ../../../build/NEWS:174 +#: ../../../build/NEWS:397 msgid "" "`bpo-38344 `__: Fix error message in " "activate.bat" msgstr "" -#: ../../../build/NEWS:176 +#: ../../../build/NEWS:399 msgid "" "`bpo-38359 `__: Ensures ``pyw.exe`` " "launcher reads correct registry key." msgstr "" -#: ../../../build/NEWS:178 +#: ../../../build/NEWS:401 msgid "" "`bpo-38355 `__: Fixes " "``ntpath.realpath`` failing on ``sys.executable``." msgstr "" -#: ../../../build/NEWS:183 +#: ../../../build/NEWS:406 msgid "" "`bpo-36698 `__: IDLE no longer fails " "when write non-encodable characters to stderr. It now escapes them with a " @@ -506,37 +938,37 @@ msgid "" "the standard streams." msgstr "" -#: ../../../build/NEWS:188 ../../../build/NEWS:659 ../../../build/NEWS:954 -#: ../../../build/NEWS:1155 ../../../build/NEWS:2222 ../../../build/NEWS:2761 -#: ../../../build/NEWS:3102 ../../../build/NEWS:6226 ../../../build/NEWS:6848 -#: ../../../build/NEWS:7065 ../../../build/NEWS:7325 ../../../build/NEWS:7931 -#: ../../../build/NEWS:8519 ../../../build/NEWS:10832 -#: ../../../build/NEWS:11220 ../../../build/NEWS:11561 -#: ../../../build/NEWS:11984 ../../../build/NEWS:12470 -#: ../../../build/NEWS:12838 ../../../build/NEWS:13232 -#: ../../../build/NEWS:13306 ../../../build/NEWS:14291 -#: ../../../build/NEWS:14761 ../../../build/NEWS:15081 -#: ../../../build/NEWS:16356 ../../../build/NEWS:17474 -#: ../../../build/NEWS:18321 ../../../build/NEWS:18850 -#: ../../../build/NEWS:19537 ../../../build/NEWS:19756 -#: ../../../build/NEWS:19964 ../../../build/NEWS:21875 +#: ../../../build/NEWS:411 ../../../build/NEWS:882 ../../../build/NEWS:1177 +#: ../../../build/NEWS:1378 ../../../build/NEWS:2445 ../../../build/NEWS:2984 +#: ../../../build/NEWS:3325 ../../../build/NEWS:6449 ../../../build/NEWS:7071 +#: ../../../build/NEWS:7288 ../../../build/NEWS:7548 ../../../build/NEWS:8154 +#: ../../../build/NEWS:8742 ../../../build/NEWS:11055 +#: ../../../build/NEWS:11443 ../../../build/NEWS:11784 +#: ../../../build/NEWS:12207 ../../../build/NEWS:12693 +#: ../../../build/NEWS:13061 ../../../build/NEWS:13455 +#: ../../../build/NEWS:13529 ../../../build/NEWS:14514 +#: ../../../build/NEWS:14984 ../../../build/NEWS:15304 +#: ../../../build/NEWS:16579 ../../../build/NEWS:17697 +#: ../../../build/NEWS:18544 ../../../build/NEWS:19073 +#: ../../../build/NEWS:19760 ../../../build/NEWS:19979 +#: ../../../build/NEWS:20187 ../../../build/NEWS:22098 msgid "Tools/Demos" msgstr "Perkakas/Demo" -#: ../../../build/NEWS:190 +#: ../../../build/NEWS:413 msgid "" "`bpo-38118 `__: Update Valgrind " "suppression file to ignore a false alarm in :c:func:`PyUnicode_Decode` when " "using GCC builtin strcmp()." msgstr "" -#: ../../../build/NEWS:193 +#: ../../../build/NEWS:416 msgid "" "`bpo-38347 `__: pathfix.py: Assume all " "files that end on '.py' are Python scripts when working recursively." msgstr "" -#: ../../../build/NEWS:199 +#: ../../../build/NEWS:422 msgid "" "`bpo-38395 `__: Fix a crash in " ":class:`weakref.proxy` objects due to incorrect lifetime management when " @@ -544,28 +976,28 @@ msgid "" " being referenced by the proxy. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:206 +#: ../../../build/NEWS:429 msgid "Python 3.8.0 release candidate 1" msgstr "Python 3.8.0 kandidat rilis 1" -#: ../../../build/NEWS:208 +#: ../../../build/NEWS:431 msgid "*Release date: 2019-10-01*" msgstr "*Tanggal rilis: 2019-10-01*" -#: ../../../build/NEWS:213 +#: ../../../build/NEWS:436 msgid "" "`bpo-38243 `__: Escape the server title " "of :class:`xmlrpc.server.DocXMLRPCServer` when rendering the document page " "as HTML. (Contributed by Dong-hee Na in :issue:`38243`.)" msgstr "" -#: ../../../build/NEWS:217 +#: ../../../build/NEWS:440 msgid "" "`bpo-38174 `__: Update vendorized expat " "library version to 2.2.8, which resolves CVE-2019-15903." msgstr "" -#: ../../../build/NEWS:220 +#: ../../../build/NEWS:443 msgid "" "`bpo-37764 `__: Fixes " "email._header_value_parser.get_unstructured going into an infinite loop for " @@ -574,7 +1006,7 @@ msgid "" "Ramaswami." msgstr "" -#: ../../../build/NEWS:228 +#: ../../../build/NEWS:451 msgid "" "`bpo-38006 `__: Fix a bug due to the " "interaction of weakrefs and the cyclic garbage collector. We must clear any " @@ -582,14 +1014,14 @@ msgid "" "causing a crash." msgstr "" -#: ../../../build/NEWS:232 +#: ../../../build/NEWS:455 msgid "" "`bpo-38317 `__: Fix warnings options " "priority: ``PyConfig.warnoptions`` has the highest priority, as stated in " "the :pep:`587`." msgstr "" -#: ../../../build/NEWS:235 +#: ../../../build/NEWS:458 msgid "" "`bpo-36871 `__: Improve error handling " "for the assert_has_calls and assert_has_awaits methods of mocks. Fixed a bug" @@ -597,46 +1029,46 @@ msgid "" " spec were silently swallowed, leading to misleading error output." msgstr "" -#: ../../../build/NEWS:240 +#: ../../../build/NEWS:463 msgid "" "`bpo-38236 `__: Python now dumps path " "configuration if it fails to import the Python codecs of the filesystem and " "stdio encodings." msgstr "" -#: ../../../build/NEWS:243 +#: ../../../build/NEWS:466 msgid "" "`bpo-38013 `__: Allow to call " "``async_generator_athrow().throw(...)`` even for non-started async generator" " helper. It fixes annoying warning at the end of :func:`asyncio.run` call." msgstr "" -#: ../../../build/NEWS:247 +#: ../../../build/NEWS:470 msgid "" "`bpo-38124 `__: Fix an off-by-one error " "in PyState_AddModule that could cause out-of-bounds memory access." msgstr "" -#: ../../../build/NEWS:250 +#: ../../../build/NEWS:473 msgid "" "`bpo-38005 `__: Fixed comparing and " "creating of InterpreterID and ChannelID." msgstr "" -#: ../../../build/NEWS:252 +#: ../../../build/NEWS:475 msgid "" "`bpo-37994 `__: Fixed silencing " "arbitrary errors if an attribute lookup fails in several sites. Only " "AttributeError should be silenced." msgstr "" -#: ../../../build/NEWS:255 +#: ../../../build/NEWS:478 msgid "" "`bpo-37990 `__: Fix elapsed time in gc " "stats was not printed correctly. This bug was a regression in 3.8b4." msgstr "" -#: ../../../build/NEWS:258 +#: ../../../build/NEWS:481 msgid "" "`bpo-37966 `__: The implementation of " ":func:`~unicodedata.is_normalized` has been greatly sped up on strings that " @@ -644,14 +1076,14 @@ msgid "" "algorithm from the Unicode standard." msgstr "" -#: ../../../build/NEWS:262 +#: ../../../build/NEWS:485 msgid "" "`bpo-20490 `__: Improve import error " "message for partially initialized module on circular ``from`` imports - by " "Anthony Sottile." msgstr "" -#: ../../../build/NEWS:265 +#: ../../../build/NEWS:488 msgid "" "`bpo-37409 `__: Ensure explicit relative" " imports from interactive sessions and scripts (having no parent package) " @@ -659,7 +1091,7 @@ msgid "" "package. Patch by Ben Lewis." msgstr "" -#: ../../../build/NEWS:269 +#: ../../../build/NEWS:492 msgid "" "`bpo-37619 `__: When adding a wrapper " "descriptor from one class to a different class (for example, setting " @@ -667,33 +1099,33 @@ msgid "" " raised when the operator is called." msgstr "" -#: ../../../build/NEWS:273 +#: ../../../build/NEWS:496 msgid "" "`bpo-30773 `__: Prohibit parallel " "running of aclose() / asend() / athrow(). Fix ag_running to reflect the " "actual running status of the AG." msgstr "" -#: ../../../build/NEWS:279 +#: ../../../build/NEWS:502 msgid "" "`bpo-38319 `__: sendfile() used in " "socket and shutil modules was raising OverflowError for files >= 2GiB on " "32-bit architectures. (patch by Giampaolo Rodola)" msgstr "" -#: ../../../build/NEWS:283 +#: ../../../build/NEWS:506 msgid "" "`bpo-38242 `__: Revert the new asyncio " "Streams API" msgstr "" -#: ../../../build/NEWS:285 +#: ../../../build/NEWS:508 msgid "" "`bpo-38019 `__: Correctly handle " "pause/resume reading of closed asyncio unix pipe." msgstr "" -#: ../../../build/NEWS:288 +#: ../../../build/NEWS:511 msgid "" "`bpo-38163 `__: Child mocks will now " "detect their type as either synchronous or asynchronous, asynchronous child " @@ -701,13 +1133,13 @@ msgid "" "MagicMock or Mock (depending on their parent type)." msgstr "" -#: ../../../build/NEWS:293 +#: ../../../build/NEWS:516 msgid "" "`bpo-38161 `__: Removes _AwaitEvent from" " AsyncMock." msgstr "" -#: ../../../build/NEWS:295 +#: ../../../build/NEWS:518 msgid "" "`bpo-38216 `__: Allow the rare code that" " wants to send invalid http requests from the `http.client` library a way to" @@ -716,27 +1148,27 @@ msgid "" "their own behavior in the face of bad requests." msgstr "" -#: ../../../build/NEWS:300 +#: ../../../build/NEWS:523 msgid "" "`bpo-38108 `__: Any synchronous magic " "methods on an AsyncMock now return a MagicMock. Any asynchronous magic " "methods on a MagicMock now return an AsyncMock." msgstr "" -#: ../../../build/NEWS:304 +#: ../../../build/NEWS:527 msgid "" "`bpo-38248 `__: asyncio: Fix " "inconsistent immediate Task cancellation" msgstr "" -#: ../../../build/NEWS:306 +#: ../../../build/NEWS:529 msgid "" "`bpo-38237 `__: The arguments for the " "builtin pow function are more descriptive. They can now also be passed in as" " keywords." msgstr "" -#: ../../../build/NEWS:309 +#: ../../../build/NEWS:532 msgid "" "`bpo-38191 `__: Constructors of " ":class:`~typing.NamedTuple` and :class:`~typing.TypedDict` types now accept " @@ -745,13 +1177,13 @@ msgid "" " keyword is deprecated." msgstr "" -#: ../../../build/NEWS:314 +#: ../../../build/NEWS:537 msgid "" "`bpo-38185 `__: Fixed case-insensitive " "string comparison in :class:`sqlite3.Row` indexing." msgstr "" -#: ../../../build/NEWS:317 +#: ../../../build/NEWS:540 msgid "" "`bpo-38136 `__: Changes AsyncMock call " "count and await count to be two different counters. Now await count only " @@ -759,32 +1191,32 @@ msgid "" "vice-versa. Update the documentation around this." msgstr "" -#: ../../../build/NEWS:322 +#: ../../../build/NEWS:545 msgid "" "`bpo-37828 `__: Fix default mock name in" " :meth:`unittest.mock.Mock.assert_called` exceptions. Patch by Abraham Toriz" " Cruz." msgstr "" -#: ../../../build/NEWS:326 +#: ../../../build/NEWS:549 msgid "" "`bpo-38175 `__: Fix a memory leak in " "comparison of :class:`sqlite3.Row` objects." msgstr "" -#: ../../../build/NEWS:329 +#: ../../../build/NEWS:552 msgid "" "`bpo-33936 `__: _hashlib no longer calls" " obsolete OpenSSL initialization function with OpenSSL 1.1.0+." msgstr "" -#: ../../../build/NEWS:332 +#: ../../../build/NEWS:555 msgid "" "`bpo-34706 `__: Preserve subclassing in " "inspect.Signature.from_callable." msgstr "" -#: ../../../build/NEWS:334 +#: ../../../build/NEWS:557 msgid "" "`bpo-38153 `__: Names of hashing " "algorithms frome OpenSSL are now normalized to follow Python's naming " @@ -792,7 +1224,7 @@ msgid "" "blake2b512 instead of blake2b." msgstr "" -#: ../../../build/NEWS:338 +#: ../../../build/NEWS:561 msgid "" "`bpo-38115 `__: Fix a bug in " "dis.findlinestarts() where it would return invalid bytecode offsets. " @@ -800,27 +1232,27 @@ msgid "" "offsets." msgstr "" -#: ../../../build/NEWS:342 +#: ../../../build/NEWS:565 msgid "" "`bpo-38148 `__: Add slots to " ":mod:`asyncio` transport classes, which can reduce memory usage." msgstr "" -#: ../../../build/NEWS:345 +#: ../../../build/NEWS:568 msgid "" "`bpo-36991 `__: Fixes a potential " "incorrect AttributeError exception escaping ZipFile.extract() in some " "unsupported input error situations." msgstr "" -#: ../../../build/NEWS:348 +#: ../../../build/NEWS:571 msgid "" "`bpo-38134 `__: Remove obsolete copy of " "PBKDF2_HMAC_fast. All supported OpenSSL versions contain a fast " "implementation." msgstr "" -#: ../../../build/NEWS:351 +#: ../../../build/NEWS:574 msgid "" "`bpo-38132 `__: The OpenSSL hashlib " "wrapper uses a simpler implementation. Several Macros and pointless caches " @@ -828,7 +1260,7 @@ msgid "" "stays the same, except it is now always lower case." msgstr "" -#: ../../../build/NEWS:356 +#: ../../../build/NEWS:579 msgid "" "`bpo-38008 `__: Fix parent class check " "in protocols to correctly identify the module that provides a builtin " @@ -836,41 +1268,41 @@ msgid "" "module" msgstr "" -#: ../../../build/NEWS:360 +#: ../../../build/NEWS:583 msgid "" "`bpo-37405 `__: Fixed regression bug for" " socket.getsockname() for non-CAN_ISOTP AF_CAN address family sockets by " "returning a 1-tuple instead of string." msgstr "" -#: ../../../build/NEWS:363 +#: ../../../build/NEWS:586 msgid "" "`bpo-38121 `__: Update parameter names " "on functions in importlib.metadata matching the changes in the 0.22 release " "of importlib_metadata." msgstr "" -#: ../../../build/NEWS:366 +#: ../../../build/NEWS:589 msgid "" "`bpo-38110 `__: The os.closewalk() " "implementation now uses the libc fdwalk() API on platforms where it is " "available." msgstr "" -#: ../../../build/NEWS:369 +#: ../../../build/NEWS:592 msgid "" "`bpo-38093 `__: Fixes AsyncMock so it " "doesn't crash when used with AsyncContextManagers or AsyncIterators." msgstr "" -#: ../../../build/NEWS:372 +#: ../../../build/NEWS:595 msgid "" "`bpo-37488 `__: Add warning to " ":meth:`datetime.utctimetuple`, :meth:`datetime.utcnow` and " ":meth:`datetime.utcfromtimestamp` ." msgstr "" -#: ../../../build/NEWS:375 +#: ../../../build/NEWS:598 msgid "" "`bpo-38086 `__: Update " "importlib.metadata with changes from `importlib_metadata 0.21 " @@ -878,7 +1310,7 @@ msgid "" "devs/importlib_metadata/blob/0.21/importlib_metadata/docs/changelog.rst>`_." msgstr "" -#: ../../../build/NEWS:379 +#: ../../../build/NEWS:602 msgid "" "`bpo-37251 `__: Remove `__code__` check " "in AsyncMock that incorrectly evaluated function specs as async objects but " @@ -886,40 +1318,40 @@ msgid "" "defined as async objects." msgstr "" -#: ../../../build/NEWS:383 +#: ../../../build/NEWS:606 msgid "" "`bpo-38037 `__: Fix reference counters " "in the :mod:`signal` module." msgstr "" -#: ../../../build/NEWS:385 +#: ../../../build/NEWS:608 msgid "" "`bpo-38066 `__: Hide internal " "asyncio.Stream methods: feed_eof(), feed_data(), set_exception() and " "set_transport()." msgstr "" -#: ../../../build/NEWS:388 +#: ../../../build/NEWS:611 msgid "" "`bpo-38059 `__: inspect.py now uses " "sys.exit() instead of exit()" msgstr "" -#: ../../../build/NEWS:390 +#: ../../../build/NEWS:613 msgid "" "`bpo-37953 `__: In :mod:`typing`, " "improved the ``__hash__`` and ``__eq__`` methods for " ":class:`ForwardReferences`." msgstr "" -#: ../../../build/NEWS:393 +#: ../../../build/NEWS:616 msgid "" "`bpo-38026 `__: Fixed " ":func:`inspect.getattr_static` used ``isinstance`` while it should avoid " "dynamic lookup." msgstr "" -#: ../../../build/NEWS:396 +#: ../../../build/NEWS:619 msgid "" "`bpo-38010 `__: In " "``importlib.metadata`` sync with ``importlib_metadata`` 0.20, clarifying " @@ -927,7 +1359,7 @@ msgid "" "returned for ``requires()`` on ``dist-info`` packages." msgstr "" -#: ../../../build/NEWS:400 +#: ../../../build/NEWS:623 msgid "" "`bpo-38006 `__: " "weakref.WeakValueDictionary defines a local remove() function used as " @@ -935,14 +1367,14 @@ msgid "" "Modify the implementation to avoid the closure." msgstr "" -#: ../../../build/NEWS:404 +#: ../../../build/NEWS:627 msgid "" "`bpo-34410 `__: Fixed a crash in the " ":func:`tee` iterator when re-enter it. RuntimeError is now raised in this " "case." msgstr "" -#: ../../../build/NEWS:407 +#: ../../../build/NEWS:630 msgid "" "`bpo-37140 `__: Fix a ctypes regression " "of Python 3.8. When a ctypes.Structure is passed by copy to a function, " @@ -952,7 +1384,7 @@ msgid "" "longer call the finalizer twice." msgstr "" -#: ../../../build/NEWS:413 +#: ../../../build/NEWS:636 msgid "" "`bpo-37972 `__: Subscripts to the " "`unittest.mock.call` objects now receive the same chaining mechanism as any " @@ -960,40 +1392,40 @@ msgid "" "`TypeError`:" msgstr "" -#: ../../../build/NEWS:417 +#: ../../../build/NEWS:640 msgid "call().foo().__getitem__('bar')" msgstr "call().foo().__getitem__('bar')" -#: ../../../build/NEWS:419 +#: ../../../build/NEWS:642 msgid "Patch by blhsing" msgstr "Ditambal oleh blhsing" -#: ../../../build/NEWS:421 +#: ../../../build/NEWS:644 msgid "" "`bpo-22347 `__: Update " "mimetypes.guess_type to allow proper parsing of URLs with only a host name. " "Patch by Dong-hee Na." msgstr "" -#: ../../../build/NEWS:424 +#: ../../../build/NEWS:647 msgid "" "`bpo-37885 `__: venv: Don't generate " "unset variable warning on deactivate." msgstr "" -#: ../../../build/NEWS:426 +#: ../../../build/NEWS:649 msgid "" "`bpo-37785 `__: Fix xgettext warnings in" " :mod:`argparse`." msgstr "" -#: ../../../build/NEWS:428 +#: ../../../build/NEWS:651 msgid "" "`bpo-11953 `__: Completing WSA* error " "codes in :mod:`socket`." msgstr "" -#: ../../../build/NEWS:430 +#: ../../../build/NEWS:653 msgid "" "`bpo-37424 `__: Fixes a possible hang " "when using a timeout on `subprocess.run()` while capturing output. If the " @@ -1003,21 +1435,21 @@ msgid "" "the pipes." msgstr "" -#: ../../../build/NEWS:436 +#: ../../../build/NEWS:659 msgid "" "`bpo-37212 `__: " ":func:`unittest.mock.call` now preserves the order of keyword arguments in " "repr output. Patch by Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:439 +#: ../../../build/NEWS:662 msgid "" "`bpo-37305 `__: Add .webmanifest -> " "application/manifest+json to list of recognized file types and content type " "headers" msgstr "" -#: ../../../build/NEWS:442 +#: ../../../build/NEWS:665 msgid "" "`bpo-21872 `__: Fix :mod:`lzma`: module " "decompresses data incompletely. When decompressing a FORMAT_ALONE format " @@ -1025,33 +1457,33 @@ msgid "" "bytes can't be output. Patch by Ma Lin." msgstr "" -#: ../../../build/NEWS:447 +#: ../../../build/NEWS:670 msgid "" "`bpo-37206 `__: Default values which " "cannot be represented as Python objects no longer improperly represented as " "``None`` in function signatures." msgstr "" -#: ../../../build/NEWS:450 +#: ../../../build/NEWS:673 msgid "" "`bpo-12144 `__: Ensure cookies with " "``expires`` attribute are handled in :meth:`CookieJar.make_cookies`." msgstr "" -#: ../../../build/NEWS:453 +#: ../../../build/NEWS:676 msgid "" "`bpo-31163 `__: pathlib.Path instance's " "rename and replace methods now return the new Path instance." msgstr "" -#: ../../../build/NEWS:456 +#: ../../../build/NEWS:679 msgid "" "`bpo-25068 `__: " ":class:`urllib.request.ProxyHandler` now lowercases the keys of the passed " "dictionary." msgstr "" -#: ../../../build/NEWS:459 +#: ../../../build/NEWS:682 msgid "" "`bpo-21315 `__: Email headers containing" " RFC2047 encoded words are parsed despite the missing whitespace, and a " @@ -1059,69 +1491,69 @@ msgid "" "now registered as a defect." msgstr "" -#: ../../../build/NEWS:463 +#: ../../../build/NEWS:686 msgid "" "`bpo-36250 `__: Ignore ``ValueError`` " "from ``signal`` with ``interaction`` in non-main thread." msgstr "" -#: ../../../build/NEWS:466 +#: ../../../build/NEWS:689 msgid "" "`bpo-35168 `__: " ":attr:`shlex.shlex.punctuation_chars` is now a read-only property." msgstr "" -#: ../../../build/NEWS:469 +#: ../../../build/NEWS:692 msgid "" "`bpo-20504 `__: Fixes a bug in " ":mod:`cgi` module when a multipart/form-data request has no `Content-Length`" " header." msgstr "" -#: ../../../build/NEWS:472 +#: ../../../build/NEWS:695 msgid "" "`bpo-34519 `__: Add additional aliases " "for HP Roman 8. Patch by Michael Osipov." msgstr "" -#: ../../../build/NEWS:477 +#: ../../../build/NEWS:700 msgid "" "`bpo-26868 `__: Fix example usage of " ":c:func:`PyModule_AddObject` to properly handle errors." msgstr "" -#: ../../../build/NEWS:480 +#: ../../../build/NEWS:703 msgid "" "`bpo-36797 `__: Fix a dead link in the " "distutils API Reference." msgstr "" -#: ../../../build/NEWS:482 +#: ../../../build/NEWS:705 msgid "" "`bpo-37977 `__: Warn more strongly and " "clearly about pickle insecurity" msgstr "" -#: ../../../build/NEWS:484 +#: ../../../build/NEWS:707 msgid "" "`bpo-37937 `__: Mention " "``frame.f_trace`` in :func:`sys.settrace` docs." msgstr "" -#: ../../../build/NEWS:486 +#: ../../../build/NEWS:709 msgid "" "`bpo-36260 `__: Add decompression " "pitfalls to zipfile module documentation." msgstr "" -#: ../../../build/NEWS:488 +#: ../../../build/NEWS:711 msgid "" "`bpo-36960 `__: Restructured the " ":mod:`datetime` docs in the interest of making them more user-friendly and " "improving readability. Patch by Brad Solomon." msgstr "" -#: ../../../build/NEWS:491 +#: ../../../build/NEWS:714 msgid "" "`bpo-23460 `__: The documentation for " "decimal string formatting using the `:g` specifier has been updated to " @@ -1129,32 +1561,32 @@ msgid "" "contributed by Tuomas Suutari." msgstr "" -#: ../../../build/NEWS:495 +#: ../../../build/NEWS:718 msgid "" "`bpo-35803 `__: Document and test that " "``tempfile`` functions may accept a :term:`path-like object` for the ``dir``" " argument. Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:499 +#: ../../../build/NEWS:722 msgid "" "`bpo-33944 `__: Added a note about the " "intended use of code in .pth files." msgstr "" -#: ../../../build/NEWS:501 +#: ../../../build/NEWS:724 msgid "" "`bpo-34293 `__: Fix the Doc/Makefile " "regarding PAPER environment variable and PDF builds" msgstr "" -#: ../../../build/NEWS:507 +#: ../../../build/NEWS:730 msgid "" "`bpo-38239 `__: Fix test_gdb for Link " "Time Optimization (LTO) builds." msgstr "" -#: ../../../build/NEWS:509 +#: ../../../build/NEWS:732 msgid "" "`bpo-38275 `__: test_ssl now handles " "disabled TLS/SSL versions better. OpenSSL's crypto policy and run-time " @@ -1163,7 +1595,7 @@ msgid "" "default with strict settings." msgstr "" -#: ../../../build/NEWS:514 +#: ../../../build/NEWS:737 msgid "" "`bpo-38271 `__: The private keys for " "test_ssl were encrypted with 3DES in traditional PKCS#5 format. 3DES and the" @@ -1171,7 +1603,7 @@ msgid "" "PKCS#8 format with AES256 encryption instead." msgstr "" -#: ../../../build/NEWS:519 +#: ../../../build/NEWS:742 msgid "" "`bpo-38270 `__: test.support now has a " "helper function to check for availibility of a hash digest function. Several" @@ -1179,7 +1611,7 @@ msgid "" "marked to use MD5 and skipped when MD5 is disabled." msgstr "" -#: ../../../build/NEWS:524 +#: ../../../build/NEWS:747 msgid "" "`bpo-37123 `__: Multiprocessing test " "test_mymanager() now also expects -SIGTERM, not only exitcode 0. " @@ -1187,18 +1619,18 @@ msgid "" "takes longer than 1 second to stop, which happens on slow buildbots." msgstr "" -#: ../../../build/NEWS:529 +#: ../../../build/NEWS:752 msgid "" "`bpo-38212 `__: Multiprocessing tests: " "increase test_queue_feeder_donot_stop_onexc() timeout from 1 to 60 seconds." msgstr "" -#: ../../../build/NEWS:532 +#: ../../../build/NEWS:755 msgid "" "`bpo-38117 `__: Test with OpenSSL 1.1.1d" msgstr "" -#: ../../../build/NEWS:534 +#: ../../../build/NEWS:757 msgid "" "`bpo-37531 `__: Enhance regrtest " "multiprocess timeout: write a message when killing a worker process, catch " @@ -1206,45 +1638,45 @@ msgid "" "to popen.communicate()." msgstr "" -#: ../../../build/NEWS:538 +#: ../../../build/NEWS:761 msgid "" "`bpo-37876 `__: Add tests for ROT-13 " "codec." msgstr "" -#: ../../../build/NEWS:540 +#: ../../../build/NEWS:763 msgid "" "`bpo-37252 `__: Fix assertions in " "``test_close`` and ``test_events_mask_overflow`` devpoll tests." msgstr "" -#: ../../../build/NEWS:543 +#: ../../../build/NEWS:766 msgid "" "`bpo-34001 `__: Make test_ssl pass with " "LibreSSL. LibreSSL handles minimum and maximum TLS version differently than " "OpenSSL." msgstr "" -#: ../../../build/NEWS:546 +#: ../../../build/NEWS:769 msgid "" "`bpo-36919 `__: Make " "``test_source_encoding.test_issue2301`` implementation independent. The test" " will work now for both CPython and IronPython." msgstr "" -#: ../../../build/NEWS:549 +#: ../../../build/NEWS:772 msgid "" "`bpo-34596 `__: Fallback to a default " "reason when :func:`unittest.skip` is uncalled. Patch by Naitree Zhu." msgstr "" -#: ../../../build/NEWS:555 +#: ../../../build/NEWS:778 msgid "" "`bpo-38301 `__: In Solaris family, we " "must be sure to use ``-D_REENTRANT``. Patch by Jesús Cea Avión." msgstr "" -#: ../../../build/NEWS:558 +#: ../../../build/NEWS:781 msgid "" "`bpo-36210 `__: Update optional " "extension module detection for AIX. ossaudiodev and spwd are not applicable " @@ -1254,18 +1686,18 @@ msgid "" "_curses_panel." msgstr "" -#: ../../../build/NEWS:564 +#: ../../../build/NEWS:787 msgid "patch by M Felt" msgstr "ditambal oleh M Felt" -#: ../../../build/NEWS:566 +#: ../../../build/NEWS:789 msgid "" "`bpo-36002 `__: Locate ``llvm-profdata``" " and ``llvm-ar`` binaries using ``AC_PATH_TOOL`` rather than " "``AC_PATH_TARGET_TOOL``." msgstr "" -#: ../../../build/NEWS:569 +#: ../../../build/NEWS:792 msgid "" "`bpo-37936 `__: The :file:`.gitignore` " "file systematically keeps \"rooted\", with a non-trailing slash, all the " @@ -1275,142 +1707,133 @@ msgid "" "with the same name anywhere in the tree." msgstr "" -#: ../../../build/NEWS:575 +#: ../../../build/NEWS:798 msgid "" "`bpo-37936 `__: The :file:`.gitignore` " "file no longer applies to any files that are in fact tracked in the Git " "repository. Patch by Greg Price." msgstr "" -#: ../../../build/NEWS:581 +#: ../../../build/NEWS:804 msgid "" "`bpo-38117 `__: Update bundled OpenSSL " "to 1.1.1d" msgstr "" -#: ../../../build/NEWS:583 +#: ../../../build/NEWS:806 msgid "" "`bpo-38092 `__: Reduce overhead when " "using multiprocessing in a Windows virtual environment." msgstr "" -#: ../../../build/NEWS:586 +#: ../../../build/NEWS:809 msgid "" "`bpo-38133 `__: Allow py.exe launcher to" " locate installations from the Microsoft Store and improve display of active" " virtual environments." msgstr "" -#: ../../../build/NEWS:589 +#: ../../../build/NEWS:812 msgid "" "`bpo-38114 `__: The ``pip.ini`` is no " "longer included in the Nuget package." msgstr "" -#: ../../../build/NEWS:591 +#: ../../../build/NEWS:814 msgid "" "`bpo-36634 `__: :func:`os.cpu_count` now" " returns active processors rather than maximum processors." msgstr "" -#: ../../../build/NEWS:594 +#: ../../../build/NEWS:817 msgid "" "`bpo-36634 `__: venv activate.bat now " "works when the existing variables contain double quote characters." msgstr "" -#: ../../../build/NEWS:597 +#: ../../../build/NEWS:820 msgid "" "`bpo-38081 `__: Prevent error calling " ":func:`os.path.realpath` on ``'NUL'``." msgstr "" -#: ../../../build/NEWS:599 +#: ../../../build/NEWS:822 msgid "" "`bpo-38087 `__: Fix case sensitivity in " "test_pathlib and test_ntpath." msgstr "" -#: ../../../build/NEWS:601 +#: ../../../build/NEWS:824 msgid "" "`bpo-38088 `__: Fixes distutils not " "finding vcruntime140.dll with only the v142 toolset installed." msgstr "" -#: ../../../build/NEWS:604 +#: ../../../build/NEWS:827 msgid "" "`bpo-37283 `__: Ensure command-line and " "unattend.xml setting override previously detected states in Windows " "installer." msgstr "" -#: ../../../build/NEWS:607 +#: ../../../build/NEWS:830 msgid "" "`bpo-38030 `__: Fixes :func:`os.stat` " "failing for block devices on Windows" msgstr "" -#: ../../../build/NEWS:609 +#: ../../../build/NEWS:832 msgid "" "`bpo-38020 `__: Fixes potential crash " "when calling :func:`os.readlink` (or indirectly through " ":func:`~os.path.realpath`) on a file that is not a supported link." msgstr "" -#: ../../../build/NEWS:613 +#: ../../../build/NEWS:836 msgid "" "`bpo-37705 `__: Improve the " "implementation of ``winerror_to_errno()``." msgstr "" -#: ../../../build/NEWS:615 +#: ../../../build/NEWS:838 msgid "" "`bpo-37702 `__: Fix memory leak on " "Windows in creating an SSLContext object or running " "urllib.request.urlopen('https://...')." msgstr "" -#: ../../../build/NEWS:618 +#: ../../../build/NEWS:841 msgid "" "`bpo-37445 `__: Include the " "``FORMAT_MESSAGE_IGNORE_INSERTS`` flag in ``FormatMessageW()`` calls." msgstr "" -#: ../../../build/NEWS:621 +#: ../../../build/NEWS:844 msgid "" "`bpo-37380 `__: Don't collect unfinished" " processes with ``subprocess._active`` on Windows to cleanup later. Patch by" " Ruslan Kuprieiev." msgstr "" -#: ../../../build/NEWS:624 +#: ../../../build/NEWS:847 msgid "" "`bpo-32587 `__: Make " ":data:`winreg.REG_MULTI_SZ` support zero-length strings." msgstr "" -#: ../../../build/NEWS:627 ../../../build/NEWS:930 ../../../build/NEWS:1437 -#: ../../../build/NEWS:2198 ../../../build/NEWS:2746 ../../../build/NEWS:6008 -#: ../../../build/NEWS:6670 ../../../build/NEWS:6830 ../../../build/NEWS:7042 -#: ../../../build/NEWS:7299 ../../../build/NEWS:7630 ../../../build/NEWS:8475 -#: ../../../build/NEWS:11170 ../../../build/NEWS:11521 -#: ../../../build/NEWS:11916 -msgid "macOS" -msgstr "macOS" - -#: ../../../build/NEWS:629 +#: ../../../build/NEWS:852 msgid "" "`bpo-38117 `__: Updated OpenSSL to " "1.1.1d in macOS installer." msgstr "" -#: ../../../build/NEWS:631 +#: ../../../build/NEWS:854 msgid "" "`bpo-38089 `__: Move Azure Pipelines to " "latest VM versions and make macOS tests optional" msgstr "" -#: ../../../build/NEWS:637 +#: ../../../build/NEWS:860 msgid "" "`bpo-35379 `__: When exiting IDLE, catch" " any AttributeError. One happens when EditorWindow.close is called twice. " @@ -1418,7 +1841,7 @@ msgid "" "annoying." msgstr "" -#: ../../../build/NEWS:641 +#: ../../../build/NEWS:864 msgid "" "`bpo-38183 `__: To avoid problems, " "test_idle ignores the user config directory. It no longer tries to create or" @@ -1426,14 +1849,14 @@ msgid "" "problems with saving settings." msgstr "" -#: ../../../build/NEWS:645 +#: ../../../build/NEWS:868 msgid "" "`bpo-38077 `__: IDLE no longer adds " "'argv' to the user namespace when initializing it. This bug only affected " "3.7.4 and 3.8.0b2 to 3.8.0b4." msgstr "" -#: ../../../build/NEWS:648 +#: ../../../build/NEWS:871 msgid "" "`bpo-38041 `__: Shell restart lines now " "fill the window width, always start with '=', and avoid wrapping " @@ -1441,33 +1864,33 @@ msgid "" "relative to the width." msgstr "" -#: ../../../build/NEWS:652 +#: ../../../build/NEWS:875 msgid "" "`bpo-35771 `__: To avoid occasional " "spurious test_idle failures on slower machines, increase the ``hover_delay``" " in test_tooltip." msgstr "" -#: ../../../build/NEWS:655 +#: ../../../build/NEWS:878 msgid "" "`bpo-37902 `__: Add mousewheel scrolling" " for IDLE module, path, and stack browsers. Patch by George Zhang." msgstr "" -#: ../../../build/NEWS:661 +#: ../../../build/NEWS:884 msgid "" "`bpo-37803 `__: pdb's ``--help`` and " "``--version`` long options now work." msgstr "" -#: ../../../build/NEWS:663 +#: ../../../build/NEWS:886 msgid "" "`bpo-37064 `__: Add option -k to " "pathscript.py script: preserve shebang flags. Add option -a to pathscript.py" " script: add flags." msgstr "" -#: ../../../build/NEWS:669 +#: ../../../build/NEWS:892 msgid "" "`bpo-38234 `__: :c:func:`Py_SetPath` now" " sets :data:`sys.executable` to the program full path " @@ -1475,7 +1898,7 @@ msgid "" "(:c:func:`Py_GetProgramName`)." msgstr "" -#: ../../../build/NEWS:673 +#: ../../../build/NEWS:896 msgid "" "`bpo-38234 `__: Python ignored arguments" " passed to :c:func:`Py_SetPath`, :c:func:`Py_SetPythonHome` and " @@ -1483,41 +1906,41 @@ msgid "" "arguments." msgstr "" -#: ../../../build/NEWS:677 +#: ../../../build/NEWS:900 msgid "" "`bpo-38205 `__: The " ":c:func:`Py_UNREACHABLE` macro now calls :c:func:`Py_FatalError`." msgstr "" -#: ../../../build/NEWS:680 +#: ../../../build/NEWS:903 msgid "" "`bpo-37879 `__: Fix subtype_dealloc to " "suppress the type decref when the base type is a C heap type" msgstr "" -#: ../../../build/NEWS:685 +#: ../../../build/NEWS:908 msgid "Python 3.8.0 beta 4" msgstr "Python 3.8.0 beta 4" -#: ../../../build/NEWS:687 +#: ../../../build/NEWS:910 msgid "*Release date: 2019-08-29*" msgstr "*Tanggal rilis: 2019-08-29*" -#: ../../../build/NEWS:692 +#: ../../../build/NEWS:915 msgid "" "`bpo-34155 `__: Fix parsing of invalid " "email addresses with more than one ``@`` (e.g. a@b@c.com.) to not return the" " part before 2nd ``@`` as valid email address. Patch by maxking & jpic." msgstr "" -#: ../../../build/NEWS:699 +#: ../../../build/NEWS:922 msgid "" "`bpo-37947 `__: Adjust correctly the " "recursion level in the symtable generation for named expressions. Patch by " "Pablo Galindo." msgstr "" -#: ../../../build/NEWS:702 +#: ../../../build/NEWS:925 msgid "" "`bpo-37830 `__: Fixed compilation of " ":keyword:`break` and :keyword:`continue` in the :keyword:`finally` block " @@ -1525,94 +1948,94 @@ msgid "" "a non-constant value." msgstr "" -#: ../../../build/NEWS:706 +#: ../../../build/NEWS:929 msgid "" "`bpo-32912 `__: Reverted :issue:`32912`:" " emitting :exc:`SyntaxWarning` instead of :exc:`DeprecationWarning` for " "invalid escape sequences in string and bytes literals." msgstr "" -#: ../../../build/NEWS:710 +#: ../../../build/NEWS:933 msgid "" "`bpo-37757 `__: :pep:`572`: As described" " in the PEP, assignment expressions now raise :exc:`SyntaxError` when their " "interaction with comprehension scoping results in an ambiguous target scope." msgstr "" -#: ../../../build/NEWS:714 +#: ../../../build/NEWS:937 msgid "" "The ``TargetScopeError`` subclass originally proposed by the PEP has been " "removed in favour of just raising regular syntax errors for the disallowed " "cases." msgstr "" -#: ../../../build/NEWS:718 +#: ../../../build/NEWS:941 msgid "" "`bpo-36311 `__: Decoding bytes objects " "larger than 2GiB is faster and no longer fails when a multibyte characters " "spans a chunk boundary." msgstr "" -#: ../../../build/NEWS:721 +#: ../../../build/NEWS:944 msgid "" "`bpo-37433 `__: Fix ``SyntaxError`` " "indicator printing too many spaces for multi-line strings - by Anthony " "Sottile." msgstr "" -#: ../../../build/NEWS:724 +#: ../../../build/NEWS:947 msgid "" "`bpo-20523 `__: ``pdb.Pdb`` supports " "~/.pdbrc in Windows 7. Patch by Tim Hopper and Dan Lidral-Porter." msgstr "" -#: ../../../build/NEWS:730 +#: ../../../build/NEWS:953 msgid "" "`bpo-37834 `__: Prevent shutil.rmtree " "exception when built on non-Windows system without fd system call support, " "like older versions of macOS." msgstr "" -#: ../../../build/NEWS:733 +#: ../../../build/NEWS:956 msgid "" "`bpo-37965 `__: Fix C compiler warning " "caused by distutils.ccompiler.CCompiler.has_function." msgstr "" -#: ../../../build/NEWS:736 +#: ../../../build/NEWS:959 msgid "" "`bpo-37960 `__: ``repr()`` of buffered " "and text streams now silences only expected exceptions when get the value of" " \"name\" and \"mode\" attributes." msgstr "" -#: ../../../build/NEWS:739 +#: ../../../build/NEWS:962 msgid "" "`bpo-37951 `__: Most features of the " "subprocess module now work again in subinterpreters. Only *preexec_fn* is " "restricted in subinterpreters." msgstr "" -#: ../../../build/NEWS:742 +#: ../../../build/NEWS:965 msgid "" "`bpo-36205 `__: Fix the rusage " "implementation of time.process_time() to correctly report the sum of the " "system and user CPU time." msgstr "" -#: ../../../build/NEWS:745 +#: ../../../build/NEWS:968 msgid "" "`bpo-37950 `__: Fix :func:`ast.dump` " "when call with incompletely initialized node." msgstr "" -#: ../../../build/NEWS:748 +#: ../../../build/NEWS:971 msgid "" "`bpo-34679 `__: Restores instantiation " "of Windows IOCP event loops from the non-main thread." msgstr "" -#: ../../../build/NEWS:751 +#: ../../../build/NEWS:974 msgid "" "`bpo-36917 `__: Add default " "implementation of the :meth:`ast.NodeVisitor.visit_Constant` method which " @@ -1620,27 +2043,27 @@ msgid "" " ``visit_Str()``, etc." msgstr "" -#: ../../../build/NEWS:756 +#: ../../../build/NEWS:979 msgid "" "`bpo-37798 `__: Update " "test_statistics.py to verify that the statistics module works well for both " "C and Python implementations. Patch by Dong-hee Na" msgstr "" -#: ../../../build/NEWS:759 +#: ../../../build/NEWS:982 msgid "" "`bpo-26589 `__: Added a new status code " "to the http module: 451 UNAVAILABLE_FOR_LEGAL_REASONS" msgstr "" -#: ../../../build/NEWS:762 +#: ../../../build/NEWS:985 msgid "" "`bpo-37915 `__: Fix a segmentation fault" " that appeared when comparing instances of ``datetime.timezone`` and " "``datetime.tzinfo`` objects. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:766 +#: ../../../build/NEWS:989 msgid "" "`bpo-37868 `__: Fix " "dataclasses.is_dataclass when given an instance that never raises " @@ -1648,7 +2071,7 @@ msgid "" "for __dataclass_fields__ even if it's not a dataclass." msgstr "" -#: ../../../build/NEWS:770 +#: ../../../build/NEWS:993 msgid "" "`bpo-37811 `__: Fix ``socket`` module's " "``socket.connect(address)`` function being unable to establish connection in" @@ -1657,7 +2080,7 @@ msgid "" "timeout value." msgstr "" -#: ../../../build/NEWS:775 +#: ../../../build/NEWS:998 msgid "" "`bpo-21131 `__: Fix " "``faulthandler.register(chain=True)`` stack. faulthandler now allocates a " @@ -1666,33 +2089,33 @@ msgid "" "more than ``SIGSTKSZ`` bytes of stack memory on some platforms." msgstr "" -#: ../../../build/NEWS:781 +#: ../../../build/NEWS:1004 msgid "" "`bpo-37798 `__: Add C fastpath for " "statistics.NormalDist.inv_cdf() Patch by Dong-hee Na" msgstr "" -#: ../../../build/NEWS:784 +#: ../../../build/NEWS:1007 msgid "" "`bpo-37819 `__: Add " "Fraction.as_integer_ratio() to match the corresponding methods in bool, int," " float, and decimal." msgstr "" -#: ../../../build/NEWS:787 +#: ../../../build/NEWS:1010 msgid "" "`bpo-37810 `__: Fix :mod:`difflib` ``?``" " hint in diff output when dealing with tabs. Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:790 +#: ../../../build/NEWS:1013 msgid "" "`bpo-37772 `__: In ``zipfile.Path``, " "when adding implicit dirs, ensure that ancestral directories are added and " "that duplicates are excluded." msgstr "" -#: ../../../build/NEWS:793 +#: ../../../build/NEWS:1016 msgid "" "`bpo-28292 `__: Mark calendar.py helper " "functions as being private. The follows PEP 8 guidance to maintain the " @@ -1700,59 +2123,59 @@ msgid "" "confusion." msgstr "" -#: ../../../build/NEWS:797 +#: ../../../build/NEWS:1020 msgid "" "`bpo-18049 `__: Add definition of " "THREAD_STACK_SIZE for AIX in Python/thread_pthread.h The default thread " "stacksize caused crashes with the default recursion limit Patch by M Felt" msgstr "" -#: ../../../build/NEWS:801 +#: ../../../build/NEWS:1024 msgid "" "`bpo-37738 `__: Fix the implementation " "of curses ``addch(str, color_pair)``: pass the color pair to ``setcchar()``," " instead of always passing 0 as the color pair." msgstr "" -#: ../../../build/NEWS:805 +#: ../../../build/NEWS:1028 msgid "" "`bpo-37723 `__: Fix performance " "regression on regular expression parsing with huge character sets. Patch by " "Yann Vaginay." msgstr "" -#: ../../../build/NEWS:808 +#: ../../../build/NEWS:1031 msgid "" "`bpo-32178 `__: Fix IndexError in " ":mod:`email` package when trying to parse invalid address fields starting " "with ``:``." msgstr "" -#: ../../../build/NEWS:811 +#: ../../../build/NEWS:1034 msgid "" "`bpo-37685 `__: Fixed comparisons of " ":class:`datetime.timedelta` and :class:`datetime.timezone`." msgstr "" -#: ../../../build/NEWS:814 +#: ../../../build/NEWS:1037 msgid "" "`bpo-37695 `__: Correct " ":func:`curses.unget_wch` error message. Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:817 +#: ../../../build/NEWS:1040 msgid "" "`bpo-37354 `__: Make Activate.ps1 " "Powershell script static to allow for signing it." msgstr "" -#: ../../../build/NEWS:820 +#: ../../../build/NEWS:1043 msgid "" "`bpo-37664 `__: Update wheels bundled " "with ensurepip (pip 19.2.3 and setuptools 41.2.0)" msgstr "" -#: ../../../build/NEWS:823 +#: ../../../build/NEWS:1046 msgid "" "`bpo-37642 `__: Allowed the pure Python " "implementation of :class:`datetime.timezone` to represent sub-minute offsets" @@ -1760,67 +2183,67 @@ msgid "" " 24:00) and (-23:59, 24:00). Patch by Ngalim Siregar" msgstr "" -#: ../../../build/NEWS:828 +#: ../../../build/NEWS:1051 msgid "" "`bpo-16970 `__: Adding a value error " "when an invalid value in passed to nargs Patch by Robert Leenders" msgstr "" -#: ../../../build/NEWS:831 +#: ../../../build/NEWS:1054 msgid "" "`bpo-37587 `__: Make json.loads faster " "for long strings. (Patch by Marco Paolini)" msgstr "" -#: ../../../build/NEWS:834 +#: ../../../build/NEWS:1057 msgid "" "`bpo-18378 `__: Recognize \"UTF-8\" as a" " valid value for LC_CTYPE in locale._parse_localename." msgstr "" -#: ../../../build/NEWS:837 +#: ../../../build/NEWS:1060 msgid "" "`bpo-37531 `__: \"python3 -m test -jN " "--timeout=TIMEOUT\" now kills a worker process if it runs longer than " "*TIMEOUT* seconds." msgstr "" -#: ../../../build/NEWS:840 +#: ../../../build/NEWS:1063 msgid "" "`bpo-37482 `__: Fix serialization of " "display name in originator or destination address fields with both encoded " "words and special chars." msgstr "" -#: ../../../build/NEWS:843 +#: ../../../build/NEWS:1066 msgid "" "`bpo-37372 `__: Fix error unpickling " "datetime.time objects from Python 2 with seconds>=24. Patch by Justin " "Blanchard." msgstr "" -#: ../../../build/NEWS:846 +#: ../../../build/NEWS:1069 msgid "" "`bpo-37085 `__: Add the optional Linux " "SocketCAN Broadcast Manager constants, used as flags to configure the BCM " "behaviour, in the socket module. Patch by Karl Ding." msgstr "" -#: ../../../build/NEWS:850 +#: ../../../build/NEWS:1073 msgid "" "`bpo-36871 `__: Ensure method signature " "is used instead of constructor signature of a class while asserting mock " "object against method calls. Patch by Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:854 +#: ../../../build/NEWS:1077 msgid "" "`bpo-36582 `__: Fix " "``UserString.encode()`` to correctly return ``bytes`` rather than a " "``UserString`` instance." msgstr "" -#: ../../../build/NEWS:857 +#: ../../../build/NEWS:1080 msgid "" "`bpo-34775 `__: Division handling of " "PurePath now returns NotImplemented instead of raising a TypeError when " @@ -1828,51 +2251,51 @@ msgid "" "Aiudi." msgstr "" -#: ../../../build/NEWS:864 +#: ../../../build/NEWS:1087 msgid "" "`bpo-37979 `__: Added a link to " "dateutil.parser.isoparse in the datetime.fromisoformat documentation. Patch " "by Paul Ganssle" msgstr "" -#: ../../../build/NEWS:867 +#: ../../../build/NEWS:1090 msgid "" "`bpo-37759 `__: Beginning edits to " "Whatsnew 3.8" msgstr "" -#: ../../../build/NEWS:869 +#: ../../../build/NEWS:1092 msgid "" "`bpo-37726 `__: Stop recommending getopt" " in the tutorial for command line argument parsing and promote argparse." msgstr "" -#: ../../../build/NEWS:872 +#: ../../../build/NEWS:1095 msgid "" "`bpo-37256 `__: Fix wording of arguments" " for :class:`Request` in :mod:`urllib.request`" msgstr "" -#: ../../../build/NEWS:875 +#: ../../../build/NEWS:1098 msgid "" "`bpo-37004 `__: In the documentation for" " difflib, a note was added explicitly warning that the results of " "SequenceMatcher's ratio method may depend on the order of the input strings." msgstr "" -#: ../../../build/NEWS:879 +#: ../../../build/NEWS:1102 msgid "" "`bpo-36487 `__: Make C-API docs clear " "about what the \"main\" interpreter is." msgstr "" -#: ../../../build/NEWS:884 +#: ../../../build/NEWS:1107 msgid "" "`bpo-37805 `__: Add tests for " "json.dump(..., skipkeys=True). Patch by Dong-hee Na." msgstr "" -#: ../../../build/NEWS:890 +#: ../../../build/NEWS:1113 msgid "" "`bpo-37707 `__: Mark some individual " "tests to skip when --pgo is used. The tests marked increase the PGO task " @@ -1880,40 +2303,40 @@ msgid "" "executable." msgstr "" -#: ../../../build/NEWS:897 +#: ../../../build/NEWS:1120 msgid "" "`bpo-37549 `__: :func:`os.dup` no longer" " fails for standard streams on Windows 7." msgstr "" -#: ../../../build/NEWS:900 +#: ../../../build/NEWS:1123 msgid "" "`bpo-1311 `__: The ``nul`` file on " "Windows now returns True from :func:`~os.path.exists` and a valid result " "from :func:`os.stat` with ``S_IFCHR`` set." msgstr "" -#: ../../../build/NEWS:904 +#: ../../../build/NEWS:1127 msgid "" "`bpo-9949 `__: Enable support for " "following symlinks in :func:`os.realpath`." msgstr "" -#: ../../../build/NEWS:906 +#: ../../../build/NEWS:1129 msgid "" "`bpo-37834 `__: Treat all name surrogate" " reparse points on Windows in :func:`os.lstat` and other reparse points as " "regular files in :func:`os.stat`." msgstr "" -#: ../../../build/NEWS:910 +#: ../../../build/NEWS:1133 msgid "" "`bpo-36266 `__: Add the module name in " "the formatted error message when DLL load fail happens during module import " "in ``_PyImport_FindSharedFuncptrWindows()``. Patch by Srinivas Nyayapati." msgstr "" -#: ../../../build/NEWS:914 +#: ../../../build/NEWS:1137 msgid "" "`bpo-25172 `__: Trying to import the " ":mod:`crypt` module on Windows will result in an :exc:`ImportError` with a " @@ -1922,118 +2345,118 @@ msgid "" "ImportError will include a message explaining the problem." msgstr "" -#: ../../../build/NEWS:920 +#: ../../../build/NEWS:1143 msgid "" "`bpo-37778 `__: Fixes the icons used for" " file associations to the Microsoft Store package." msgstr "" -#: ../../../build/NEWS:923 +#: ../../../build/NEWS:1146 msgid "" "`bpo-37734 `__: Fix use of registry " "values to launch Python from Microsoft Store app." msgstr "" -#: ../../../build/NEWS:926 +#: ../../../build/NEWS:1149 msgid "" "`bpo-28269 `__: Replace use of " ":c:func:`strcasecmp` for the system function :c:func:`_stricmp`. Patch by " "Minmin Gong." msgstr "" -#: ../../../build/NEWS:932 +#: ../../../build/NEWS:1155 msgid "" "`bpo-18049 `__: Increase the default " "stack size of threads from 5MB to 16MB on macOS, to match the stack size of " "the main thread. This avoids crashes on deep recursion in threads." msgstr "" -#: ../../../build/NEWS:939 +#: ../../../build/NEWS:1162 msgid "" "`bpo-37824 `__: Properly handle user " "input warnings in IDLE shell. Cease turning SyntaxWarnings into " "SyntaxErrors." msgstr "" -#: ../../../build/NEWS:942 +#: ../../../build/NEWS:1165 msgid "" "`bpo-37929 `__: IDLE Settings dialog now" " closes properly when there is no shell window." msgstr "" -#: ../../../build/NEWS:945 +#: ../../../build/NEWS:1168 msgid "" "`bpo-37849 `__: Fixed completions list " "appearing too high or low when shown above the current line." msgstr "" -#: ../../../build/NEWS:948 +#: ../../../build/NEWS:1171 msgid "" "`bpo-36419 `__: Refactor IDLE " "autocomplete and improve testing." msgstr "" -#: ../../../build/NEWS:950 +#: ../../../build/NEWS:1173 msgid "" "`bpo-37748 `__: Reorder the Run menu. " "Put the most common choice, Run Module, at the top." msgstr "" -#: ../../../build/NEWS:956 +#: ../../../build/NEWS:1179 msgid "" "`bpo-37942 `__: Improve ArgumentClinic " "converter for floats." msgstr "" -#: ../../../build/NEWS:958 +#: ../../../build/NEWS:1181 msgid "" "`bpo-37034 `__: Argument Clinic now uses" " the argument name on errors with keyword-only argument instead of their " "position. Patch contributed by Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:965 +#: ../../../build/NEWS:1188 msgid "" "`bpo-36763 `__: Options added by " "``PySys_AddXOption()`` are now handled the same way than " "``PyConfig.xoptions`` and command line ``-X`` options." msgstr "" -#: ../../../build/NEWS:968 +#: ../../../build/NEWS:1191 msgid "" "`bpo-37926 `__: Fix a crash in " "``PySys_SetArgvEx(0, NULL, 0)``." msgstr "" -#: ../../../build/NEWS:972 +#: ../../../build/NEWS:1195 msgid "Python 3.8.0 beta 3" msgstr "Python 3.8.0 beta 3" -#: ../../../build/NEWS:974 +#: ../../../build/NEWS:1197 msgid "*Release date: 2019-07-29*" msgstr "*Tanggal rilis: 2019-07-29*" -#: ../../../build/NEWS:979 +#: ../../../build/NEWS:1202 msgid "" "`bpo-37461 `__: Fix an infinite loop " "when parsing specially crafted email headers. Patch by Abhilash Raj." msgstr "" -#: ../../../build/NEWS:985 +#: ../../../build/NEWS:1208 msgid "" "`bpo-37593 `__: Swap the positions of " "the *posonlyargs* and *args* parameters in the constructor of " ":class:`ast.parameters` nodes." msgstr "" -#: ../../../build/NEWS:988 +#: ../../../build/NEWS:1211 msgid "" "`bpo-36974 `__: Implemented separate " "vectorcall functions for every calling convention of builtin functions and " "methods. This improves performance for calls." msgstr "" -#: ../../../build/NEWS:995 +#: ../../../build/NEWS:1218 msgid "" "`bpo-37697 `__: Syncronize " "``importlib.metadata`` with `importlib_metadata 0.19 `__: Let math.dist() accept " "coordinates as sequences (or iterables) rather than just tuples." msgstr "" -#: ../../../build/NEWS:1003 +#: ../../../build/NEWS:1226 msgid "" "`bpo-37664 `__: Update wheels bundled " "with ensurepip (pip 19.2.1 and setuptools 41.0.1)" msgstr "" -#: ../../../build/NEWS:1006 +#: ../../../build/NEWS:1229 msgid "" "`bpo-36324 `__: Make internal attributes" " for statistics.NormalDist() private." msgstr "" -#: ../../../build/NEWS:1008 +#: ../../../build/NEWS:1231 msgid "" "`bpo-37491 `__: Fix ``IndexError`` when " "parsing email headers with unexpectedly ending bare-quoted string value. " "Patch by Abhilash Raj." msgstr "" -#: ../../../build/NEWS:1011 +#: ../../../build/NEWS:1234 msgid "" "`bpo-37579 `__: Return " ":exc:`NotImplemented` in Python implementation of ``__eq__`` for " @@ -2075,33 +2498,33 @@ msgid "" "Patch by Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:1016 +#: ../../../build/NEWS:1239 msgid "" "`bpo-21478 `__: Record calls to parent " "when autospecced object is attached to a mock using " ":func:`unittest.mock.attach_mock`. Patch by Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:1020 +#: ../../../build/NEWS:1243 msgid "" "`bpo-37502 `__: pickle.loads() no longer" " raises TypeError when the buffers argument is set to None" msgstr "" -#: ../../../build/NEWS:1023 +#: ../../../build/NEWS:1246 msgid "" "`bpo-37520 `__: Correct behavior for " "zipfile.Path.parent when the path object identifies a subdirectory." msgstr "" -#: ../../../build/NEWS:1026 +#: ../../../build/NEWS:1249 msgid "" "`bpo-18374 `__: Fix the ``.col_offset`` " "attribute of nested :class:`ast.BinOp` instances which had a too large value" " in some situations." msgstr "" -#: ../../../build/NEWS:1029 +#: ../../../build/NEWS:1252 msgid "" "`bpo-37421 `__: Fix " ":func:`multiprocessing.util.get_temp_dir` finalizer: clear also the " @@ -2110,14 +2533,14 @@ msgid "" "reusing the removed temporary directory." msgstr "" -#: ../../../build/NEWS:1034 +#: ../../../build/NEWS:1257 msgid "" "`bpo-37481 `__: The distutils " "``bdist_wininst`` command is deprecated in Python 3.8, use ``bdist_wheel`` " "(wheel packages) instead." msgstr "" -#: ../../../build/NEWS:1037 +#: ../../../build/NEWS:1260 msgid "" "`bpo-26967 `__: An " ":class:`~argparse.ArgumentParser` with ``allow_abbrev=False`` no longer " @@ -2125,7 +2548,7 @@ msgid "" "abbreviation of long flags as documented. Patch by Zac Hatfield-Dodds." msgstr "" -#: ../../../build/NEWS:1042 +#: ../../../build/NEWS:1265 msgid "" "`bpo-37347 `__: " ":meth:`sqlite3.Connection.create_aggregate`, " @@ -2137,7 +2560,7 @@ msgid "" "same. Now callbacks are stored more carefully. Patch by Aleksandr Balezin." msgstr "" -#: ../../../build/NEWS:1050 +#: ../../../build/NEWS:1273 msgid "" "`bpo-36564 `__: Fix infinite loop in " "email header folding logic that would be triggered when an email policy's " @@ -2145,89 +2568,89 @@ msgid "" "values in the message. Patch by Paul Ganssle" msgstr "" -#: ../../../build/NEWS:1058 +#: ../../../build/NEWS:1281 msgid "" "`bpo-32910 `__: Remove implementation-" "specific behaviour of how venv's Deactivate works." msgstr "" -#: ../../../build/NEWS:1061 +#: ../../../build/NEWS:1284 msgid "" "`bpo-37284 `__: Add a brief note to " "indicate that any new ``sys.implementation`` required attributes must go " "through the PEP process." msgstr "" -#: ../../../build/NEWS:1065 +#: ../../../build/NEWS:1288 msgid "" "`bpo-30088 `__: Documented that " ":class:`mailbox.Maildir` constructor doesn't attempt to verify the maildir " "folder layout correctness. Patch by Sviatoslav Sydorenko." msgstr "" -#: ../../../build/NEWS:1069 +#: ../../../build/NEWS:1292 msgid "" "`bpo-37521 `__: Fix `importlib` examples" " to insert any newly created modules via importlib.util.module_from_spec() " "immediately into sys.modules instead of after calling loader.exec_module()." msgstr "" -#: ../../../build/NEWS:1073 +#: ../../../build/NEWS:1296 msgid "Thanks to Benjamin Mintz for finding the bug." msgstr "Terima kasih kepada Benjamin Mintz telah menemukan bug." -#: ../../../build/NEWS:1075 +#: ../../../build/NEWS:1298 msgid "" "`bpo-37456 `__: Slash ('/') is now part " "of syntax." msgstr "" -#: ../../../build/NEWS:1077 +#: ../../../build/NEWS:1300 msgid "" "`bpo-37487 `__: Fix PyList_GetItem index" " description to include 0." msgstr "" -#: ../../../build/NEWS:1079 +#: ../../../build/NEWS:1302 msgid "" "`bpo-37149 `__: Replace the dead link to" " the Tkinter 8.5 reference by John Shipman, New Mexico Tech, with a link to " "the archive.org copy." msgstr "" -#: ../../../build/NEWS:1082 +#: ../../../build/NEWS:1305 msgid "" "`bpo-37478 `__: Added possible " "exceptions to the description of os.chdir()." msgstr "" -#: ../../../build/NEWS:1087 +#: ../../../build/NEWS:1310 msgid "" "`bpo-37558 `__: Fix " "test_shared_memory_cleaned_after_process_termination name handling" msgstr "" -#: ../../../build/NEWS:1090 +#: ../../../build/NEWS:1313 msgid "" "`bpo-37526 `__: Add " ":func:`test.support.catch_threading_exception`: context manager catching " ":class:`threading.Thread` exception using :func:`threading.excepthook`." msgstr "" -#: ../../../build/NEWS:1094 +#: ../../../build/NEWS:1317 msgid "" "`bpo-37421 `__: test_concurrent_futures " "now explicitly stops the ForkServer instance if it's running." msgstr "" -#: ../../../build/NEWS:1097 +#: ../../../build/NEWS:1320 msgid "" "`bpo-37421 `__: multiprocessing tests " "now stop the ForkServer instance if it's running: close the \"alive\" file " "descriptor to ask the server to stop and then remove its UNIX address." msgstr "" -#: ../../../build/NEWS:1104 +#: ../../../build/NEWS:1327 msgid "" "`bpo-36044 `__: Reduce the number of " "unit tests run for the PGO generation task. This speeds up the task by a " @@ -2241,60 +2664,60 @@ msgid "" "compiler tool chain." msgstr "" -#: ../../../build/NEWS:1117 +#: ../../../build/NEWS:1340 msgid "" "`bpo-37672 `__: Switch Windows Store " "package's pip to use bundled :file:`pip.ini` instead of :envvar:`PIP_USER` " "variable." msgstr "" -#: ../../../build/NEWS:1123 +#: ../../../build/NEWS:1346 msgid "" "`bpo-37692 `__: Improve highlight config" " sample with example shell interaction and better labels for shell elements." msgstr "" -#: ../../../build/NEWS:1126 +#: ../../../build/NEWS:1349 msgid "" "`bpo-37628 `__: Settings dialog no " "longer expands with font size." msgstr "" -#: ../../../build/NEWS:1128 +#: ../../../build/NEWS:1351 msgid "" "`bpo-37627 `__: Initialize the Customize" " Run dialog with the command line arguments most recently entered before. " "The user can optionally edit before submitting them." msgstr "" -#: ../../../build/NEWS:1132 +#: ../../../build/NEWS:1355 msgid "" "`bpo-33610 `__: Fix code context not " "showing the correct context when first toggled on." msgstr "" -#: ../../../build/NEWS:1135 +#: ../../../build/NEWS:1358 msgid "" "`bpo-37530 `__: Optimize code context to" " reduce unneeded background activity. Font and highlight changes now occur " "along with text changes instead of after a random delay." msgstr "" -#: ../../../build/NEWS:1139 +#: ../../../build/NEWS:1362 msgid "" "`bpo-27452 `__: Cleanup ``config.py`` by" " inlining ``RemoveFile`` and simplifying the handling of ``file`` in " "``CreateConfigHandlers``." msgstr "" -#: ../../../build/NEWS:1142 +#: ../../../build/NEWS:1365 msgid "" "`bpo-17535 `__: Add optional line " "numbers for IDLE editor windows. Windows open without line numbers unless " "set otherwise in the General tab of the configuration dialog." msgstr "" -#: ../../../build/NEWS:1146 +#: ../../../build/NEWS:1369 msgid "" "`bpo-26806 `__: To compensate for stack " "frames added by IDLE and avoid possible problems with low recursion limits, " @@ -2302,34 +2725,34 @@ msgid "" "reporting recursion limits to make this addition mostly transparent." msgstr "" -#: ../../../build/NEWS:1151 +#: ../../../build/NEWS:1374 msgid "" "`bpo-36390 `__: Gather Format menu " "functions into format.py. Combine paragraph.py, rstrip.py, and format " "methods from editor.py." msgstr "" -#: ../../../build/NEWS:1157 +#: ../../../build/NEWS:1380 msgid "" "`bpo-37675 `__: 2to3 now works when run " "from a zipped standard library." msgstr "" -#: ../../../build/NEWS:1161 +#: ../../../build/NEWS:1384 msgid "Python 3.8.0 beta 2" msgstr "Python 3.8.0 beta 2" -#: ../../../build/NEWS:1163 +#: ../../../build/NEWS:1386 msgid "*Release date: 2019-07-04*" msgstr "*Tanggal rilis: 2019-07-04*" -#: ../../../build/NEWS:1168 +#: ../../../build/NEWS:1391 msgid "" "`bpo-37363 `__: Adds audit events for " "the range of supported run commands (see :ref:`using-on-general`)." msgstr "" -#: ../../../build/NEWS:1171 +#: ../../../build/NEWS:1394 msgid "" "`bpo-37463 `__: ssl.match_hostname() no " "longer accepts IPv4 addresses with additional text after the address and " @@ -2338,7 +2761,7 @@ msgid "" "'127.0.0.1 whatever'." msgstr "" -#: ../../../build/NEWS:1176 +#: ../../../build/NEWS:1399 msgid "" "`bpo-37363 `__: Adds audit events for " ":mod:`ensurepip`, :mod:`ftplib`, :mod:`glob`, :mod:`imaplib`, " @@ -2348,19 +2771,19 @@ msgid "" ":func:`breakpoint`." msgstr "" -#: ../../../build/NEWS:1182 +#: ../../../build/NEWS:1405 msgid "" "`bpo-37364 `__: :func:`io.open_code` is " "now used when reading :file:`.pth` files." msgstr "" -#: ../../../build/NEWS:1185 +#: ../../../build/NEWS:1408 msgid "" "`bpo-34631 `__: Updated OpenSSL to " "1.1.1c in Windows installer" msgstr "" -#: ../../../build/NEWS:1190 +#: ../../../build/NEWS:1413 msgid "" "`bpo-37467 `__: Fix " ":func:`sys.excepthook` and :c:func:`PyErr_Display` if a filename is a bytes " @@ -2368,91 +2791,91 @@ msgid "" "attribute is a bytes string." msgstr "" -#: ../../../build/NEWS:1194 +#: ../../../build/NEWS:1417 msgid "" "`bpo-37417 `__: :meth:`bytearray.extend`" " now correctly handles errors that arise during iteration. Patch by Brandt " "Bucher." msgstr "" -#: ../../../build/NEWS:1197 +#: ../../../build/NEWS:1420 msgid "" "`bpo-24214 `__: Improved support of the " "surrogatepass error handler in the UTF-8 and UTF-16 incremental decoders." msgstr "" -#: ../../../build/NEWS:1200 +#: ../../../build/NEWS:1423 msgid "" "`bpo-35224 `__: Reverse evaluation order" " of key: value in dict comprehensions as proposed in PEP 572. I.e. in ``{k: " "v for ...}``, ``k`` will be evaluated before ``v``." msgstr "" -#: ../../../build/NEWS:1204 +#: ../../../build/NEWS:1427 msgid "" "`bpo-37316 `__: Fix the " ":c:func:`PySys_Audit` call in :class:`mmap.mmap`." msgstr "" -#: ../../../build/NEWS:1206 +#: ../../../build/NEWS:1429 msgid "" "`bpo-37269 `__: Fix a bug in the " "peephole optimizer that was not treating correctly constant conditions with " "binary operators. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:1210 +#: ../../../build/NEWS:1433 msgid "" "`bpo-37213 `__: Handle correctly " "negative line offsets in the peephole optimizer. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:1213 +#: ../../../build/NEWS:1436 msgid "" "`bpo-37219 `__: Remove errorneous " "optimization for empty set differences." msgstr "" -#: ../../../build/NEWS:1215 +#: ../../../build/NEWS:1438 msgid "" "`bpo-36922 `__: Slot functions optimize " "any callable with ``Py_TPFLAGS_METHOD_DESCRIPTOR`` instead of only instances" " of ``function``." msgstr "" -#: ../../../build/NEWS:1219 +#: ../../../build/NEWS:1442 msgid "" "`bpo-36974 `__: The slot " "``tp_vectorcall_offset`` is inherited unconditionally to support " "``super().__call__()`` when the base class uses vectorcall." msgstr "" -#: ../../../build/NEWS:1222 +#: ../../../build/NEWS:1445 msgid "" "`bpo-37160 `__: " ":func:`threading.get_native_id` now also supports NetBSD." msgstr "" -#: ../../../build/NEWS:1224 +#: ../../../build/NEWS:1447 msgid "" "`bpo-37077 `__: Add " ":func:`threading.get_native_id` support for AIX. Patch by M. Felt" msgstr "" -#: ../../../build/NEWS:1230 +#: ../../../build/NEWS:1453 msgid "" "`bpo-37440 `__: http.client now enables " "TLS 1.3 post-handshake authentication for default context or if a cert_file " "is passed to HTTPSConnection." msgstr "" -#: ../../../build/NEWS:1233 +#: ../../../build/NEWS:1456 msgid "" "`bpo-37437 `__: Update vendorized expat " "version to 2.2.7." msgstr "" -#: ../../../build/NEWS:1235 +#: ../../../build/NEWS:1458 msgid "" "`bpo-37428 `__: " "SSLContext.post_handshake_auth = True no longer sets " @@ -2461,14 +2884,14 @@ msgid "" " chain validation when the flag is set." msgstr "" -#: ../../../build/NEWS:1240 +#: ../../../build/NEWS:1463 msgid "" "`bpo-37420 `__: " ":func:`os.sched_setaffinity` now correctly handles errors that arise during " "iteration over its ``mask`` argument. Patch by Brandt Bucher." msgstr "" -#: ../../../build/NEWS:1243 +#: ../../../build/NEWS:1466 msgid "" "`bpo-37412 `__: The :func:`os.getcwdb` " "function now uses the UTF-8 encoding on Windows, rather than the ANSI code " @@ -2476,13 +2899,13 @@ msgid "" " on Windows." msgstr "" -#: ../../../build/NEWS:1247 +#: ../../../build/NEWS:1470 msgid "" "`bpo-29412 `__: Fix IndexError in " "parsing a header value ending unexpectedly. Patch by Abhilash Raj." msgstr "" -#: ../../../build/NEWS:1250 +#: ../../../build/NEWS:1473 msgid "" "`bpo-36546 `__: The *dist* argument for " "statistics.quantiles() is now positional only. The current name doesn't " @@ -2491,47 +2914,47 @@ msgid "" "to change the name later." msgstr "" -#: ../../../build/NEWS:1255 +#: ../../../build/NEWS:1478 msgid "" "`bpo-37394 `__: Fix a bug that was " "causing the :mod:`queue` module to fail if the accelerator module was not " "available. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:1258 +#: ../../../build/NEWS:1481 msgid "" "`bpo-33972 `__: Email with single part " "but content-type set to ``multipart/*`` doesn't raise AttributeError " "anymore." msgstr "" -#: ../../../build/NEWS:1261 +#: ../../../build/NEWS:1484 msgid "" "`bpo-37280 `__: Use threadpool for " "reading from file for sendfile fallback mode." msgstr "" -#: ../../../build/NEWS:1264 +#: ../../../build/NEWS:1487 msgid "" "`bpo-37279 `__: Fix asyncio sendfile " "support when sendfile sends extra data in fallback mode." msgstr "" -#: ../../../build/NEWS:1267 +#: ../../../build/NEWS:1490 msgid "" "`bpo-19865 `__: " ":func:`ctypes.create_unicode_buffer()` now also supports non-BMP characters " "on platforms with 16-bit :c:type:`wchar_t` (for example, Windows and AIX)." msgstr "" -#: ../../../build/NEWS:1271 +#: ../../../build/NEWS:1494 msgid "" "`bpo-37210 `__: Allow pure Python " "implementation of :mod:`pickle` to work even when the C :mod:`_pickle` " "module is unavailable." msgstr "" -#: ../../../build/NEWS:1274 +#: ../../../build/NEWS:1497 msgid "" "`bpo-35922 `__: Fix " ":meth:`RobotFileParser.crawl_delay` and :meth:`RobotFileParser.request_rate`" @@ -2539,27 +2962,27 @@ msgid "" " rule is defined in the robots.txt file. Patch by Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:1279 +#: ../../../build/NEWS:1502 msgid "" "`bpo-35766 `__: Change the format of " "feature_version to be a (major, minor) tuple." msgstr "" -#: ../../../build/NEWS:1282 +#: ../../../build/NEWS:1505 msgid "" "`bpo-36607 `__: Eliminate " ":exc:`RuntimeError` raised by :func:`asyncio.all_tasks()` if internal tasks " "weak set is changed by another thread during iteration." msgstr "" -#: ../../../build/NEWS:1286 +#: ../../../build/NEWS:1509 msgid "" "`bpo-18748 `__: :class:`_pyio.IOBase` " "destructor now does nothing if getting the ``closed`` attribute fails to " "better mimick :class:`_io.IOBase` finalizer." msgstr "" -#: ../../../build/NEWS:1290 +#: ../../../build/NEWS:1513 msgid "" "`bpo-36402 `__: Fix a race condition at " "Python shutdown when waiting for threads. Wait until the Python thread state" @@ -2567,7 +2990,7 @@ msgid "" " than just wait until non-daemon Python threads complete." msgstr "" -#: ../../../build/NEWS:1295 +#: ../../../build/NEWS:1518 msgid "" "`bpo-34886 `__: Fix an unintended " "ValueError from :func:`subprocess.run` when checking for conflicting `input`" @@ -2577,50 +3000,50 @@ msgid "" " Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:1301 +#: ../../../build/NEWS:1524 msgid "" "`bpo-37173 `__: The exception message " "for ``inspect.getfile()`` now correctly reports the passed class rather than" " the builtins module." msgstr "" -#: ../../../build/NEWS:1304 +#: ../../../build/NEWS:1527 msgid "" "`bpo-37178 `__: Give math.perm() a one " "argument form that means the same as math.factorial()." msgstr "" -#: ../../../build/NEWS:1307 +#: ../../../build/NEWS:1530 msgid "" "`bpo-37178 `__: For math.perm(n, k), let" " k default to n, giving the same result as factorial." msgstr "" -#: ../../../build/NEWS:1310 +#: ../../../build/NEWS:1533 msgid "" "`bpo-37163 `__: Deprecated passing " "``obj`` argument of :func:`dataclasses.replace` as keyword argument." msgstr "" -#: ../../../build/NEWS:1313 +#: ../../../build/NEWS:1536 msgid "" "`bpo-37165 `__: Converted " "_collections._count_elements to use the Argument Clinic." msgstr "" -#: ../../../build/NEWS:1316 +#: ../../../build/NEWS:1539 msgid "" "`bpo-34767 `__: Do not always create a " ":class:`collections.deque` in :class:`asyncio.Lock`." msgstr "" -#: ../../../build/NEWS:1319 +#: ../../../build/NEWS:1542 msgid "" "`bpo-37158 `__: Speed-up " "statistics.fmean() by switching from a function to a generator." msgstr "" -#: ../../../build/NEWS:1322 +#: ../../../build/NEWS:1545 msgid "" "`bpo-37150 `__: " "`argparse._ActionsContainer.add_argument` now throws error, if someone " @@ -2628,66 +3051,66 @@ msgid "" "`type` argument" msgstr "" -#: ../../../build/NEWS:1326 +#: ../../../build/NEWS:1549 msgid "" "`bpo-35621 `__: Support running asyncio " "subprocesses when execution event loop in a thread on UNIX." msgstr "" -#: ../../../build/NEWS:1329 +#: ../../../build/NEWS:1552 msgid "" "`bpo-36520 `__: Lengthy email headers " "with UTF-8 characters are now properly encoded when they are folded. Patch " "by Jeffrey Kintscher." msgstr "" -#: ../../../build/NEWS:1332 +#: ../../../build/NEWS:1555 msgid "" "`bpo-30835 `__: Fixed a bug in email " "parsing where a message with invalid bytes in content-transfer-encoding of a" " multipart message can cause an AttributeError. Patch by Andrew Donnellan." msgstr "" -#: ../../../build/NEWS:1336 +#: ../../../build/NEWS:1559 msgid "" "`bpo-35805 `__: Add parser for Message-" "ID header and add it to default HeaderRegistry. This should prevent folding " "of Message-ID using RFC 2048 encoded words." msgstr "" -#: ../../../build/NEWS:1340 +#: ../../../build/NEWS:1563 msgid "" "`bpo-35070 `__: posix.getgrouplist() now" " works correctly when the user belongs to NGROUPS_MAX supplemental groups. " "Patch by Jeffrey Kintscher." msgstr "" -#: ../../../build/NEWS:1343 +#: ../../../build/NEWS:1566 msgid "" "`bpo-32627 `__: Fix compile error when " "``_uuid`` headers conflicting included." msgstr "" -#: ../../../build/NEWS:1345 +#: ../../../build/NEWS:1568 msgid "" "`bpo-11122 `__: Distutils won't check " "for rpmbuild in specified paths only." msgstr "" -#: ../../../build/NEWS:1347 +#: ../../../build/NEWS:1570 msgid "" "`bpo-4963 `__: Fixed non-deterministic " "behavior related to mimetypes extension mapping and module reinitialization." msgstr "" -#: ../../../build/NEWS:1353 +#: ../../../build/NEWS:1576 msgid "" "`bpo-34903 `__: Documented that in " ":meth:`datetime.datetime.strptime()`, the leading zero in some two-digit " "formats is optional. Patch by Mike Gleen." msgstr "" -#: ../../../build/NEWS:1359 +#: ../../../build/NEWS:1582 msgid "" "`bpo-37421 `__: " "test_distutils.test_build_ext() is now able to remove the temporary " @@ -2695,67 +3118,67 @@ msgid "" "the current process, but test it in a separated process." msgstr "" -#: ../../../build/NEWS:1363 +#: ../../../build/NEWS:1586 msgid "" "`bpo-37421 `__: test_concurrent_futures " "now cleans up multiprocessing to remove immediately temporary directories " "created by multiprocessing.util.get_temp_dir()." msgstr "" -#: ../../../build/NEWS:1367 +#: ../../../build/NEWS:1590 msgid "" "`bpo-37421 `__: test_winconsoleio " "doesn't leak a temporary file anymore: use tempfile.TemporaryFile() to " "remove it when the test completes." msgstr "" -#: ../../../build/NEWS:1370 +#: ../../../build/NEWS:1593 msgid "" "`bpo-37421 `__: multiprocessing tests " "now explicitly call ``_run_finalizers()`` to immediately remove temporary " "directories created by tests." msgstr "" -#: ../../../build/NEWS:1373 +#: ../../../build/NEWS:1596 msgid "" "`bpo-37199 `__: Fix test failures when " "IPv6 is unavailable or disabled." msgstr "" -#: ../../../build/NEWS:1375 +#: ../../../build/NEWS:1598 msgid "" "`bpo-37335 `__: Remove no longer " "necessary code from c locale coercion tests" msgstr "" -#: ../../../build/NEWS:1377 +#: ../../../build/NEWS:1600 msgid "" "`bpo-37421 `__: Fix test_shutil to no " "longer leak temporary files." msgstr "" -#: ../../../build/NEWS:1379 +#: ../../../build/NEWS:1602 msgid "" "`bpo-37411 `__: Fix " "test_wsgiref.testEnviron() to no longer depend on the environment variables " "(don't fail if \"X\" variable is set)." msgstr "" -#: ../../../build/NEWS:1382 +#: ../../../build/NEWS:1605 msgid "" "`bpo-37400 `__: Fix " "test_os.test_chown(): use os.getgroups() rather than grp.getgrall() to get " "groups. Rename also the test to test_chown_gid()." msgstr "" -#: ../../../build/NEWS:1385 +#: ../../../build/NEWS:1608 msgid "" "`bpo-37359 `__: Add --cleanup option to " "python3 -m test to remove ``test_python_*`` directories of previous failed " "jobs. Add \"make cleantest\" to run ``python3 -m test --cleanup``." msgstr "" -#: ../../../build/NEWS:1389 +#: ../../../build/NEWS:1612 msgid "" "`bpo-37362 `__: test_gdb no longer fails" " if it gets an \"unexpected\" message on stderr: it now ignores stderr. The " @@ -2763,20 +3186,20 @@ msgid "" " not to test gdb." msgstr "" -#: ../../../build/NEWS:1393 +#: ../../../build/NEWS:1616 msgid "" "`bpo-35998 `__: Avoid TimeoutError in " "test_asyncio: test_start_tls_server_1()" msgstr "" -#: ../../../build/NEWS:1395 +#: ../../../build/NEWS:1618 msgid "" "`bpo-37278 `__: Fix test_asyncio " "ProactorLoopCtrlC: join the thread to prevent leaking a running thread and " "leaking a reference." msgstr "" -#: ../../../build/NEWS:1398 +#: ../../../build/NEWS:1621 msgid "" "`bpo-37261 `__: Fix " ":func:`test.support.catch_unraisable_exception`: its __exit__() method now " @@ -2784,27 +3207,27 @@ msgid "" "attribute." msgstr "" -#: ../../../build/NEWS:1402 +#: ../../../build/NEWS:1625 msgid "" "`bpo-37169 `__: Rewrite " "``_PyObject_IsFreed()`` unit tests." msgstr "" -#: ../../../build/NEWS:1404 +#: ../../../build/NEWS:1627 msgid "" "`bpo-37153 `__: " "``test_venv.test_mutiprocessing()`` now explicitly calls " "``pool.terminate()`` to wait until the pool completes." msgstr "" -#: ../../../build/NEWS:1407 +#: ../../../build/NEWS:1630 msgid "" "`bpo-28009 `__: Modify the test_uuid " "logic to test when a program is available AND can be used to obtain a " "MACADDR as basis for an UUID. Patch by M. Felt" msgstr "" -#: ../../../build/NEWS:1413 +#: ../../../build/NEWS:1636 msgid "" "`bpo-37189 `__: Many ``PyRun_XXX()`` " "functions like :c:func:`PyRun_String` were no longer exported in " @@ -2812,45 +3235,45 @@ msgid "" "compatibiliy." msgstr "" -#: ../../../build/NEWS:1420 +#: ../../../build/NEWS:1643 msgid "" "`bpo-10945 `__: Officially drop support " "for creating bdist_wininst installers on non-Windows systems." msgstr "" -#: ../../../build/NEWS:1423 +#: ../../../build/NEWS:1646 msgid "" "`bpo-37369 `__: Fixes path for " ":data:`sys.executable` when running from the Microsoft Store." msgstr "" -#: ../../../build/NEWS:1426 +#: ../../../build/NEWS:1649 msgid "" "`bpo-37351 `__: Removes libpython38.a " "from standard Windows distribution." msgstr "" -#: ../../../build/NEWS:1428 +#: ../../../build/NEWS:1651 msgid "" "`bpo-35360 `__: Update Windows builds to" " use SQLite 3.28.0." msgstr "" -#: ../../../build/NEWS:1430 +#: ../../../build/NEWS:1653 msgid "" "`bpo-37267 `__: On Windows, " ":func:`os.dup` no longer creates an inheritable fd when handling a character" " file." msgstr "" -#: ../../../build/NEWS:1433 +#: ../../../build/NEWS:1656 msgid "" "`bpo-36779 `__: Ensure ``time.tzname`` " "is correct on Windows when the active code page is set to CP_UTF7 or " "CP_UTF8." msgstr "" -#: ../../../build/NEWS:1439 +#: ../../../build/NEWS:1662 msgid "" "`bpo-34602 `__: Avoid test suite " "failures on macOS by no longer calling resource.setrlimit to increase the " @@ -2858,39 +3281,39 @@ msgid "" "since the interpreter is being built with a larger default stack size." msgstr "" -#: ../../../build/NEWS:1444 +#: ../../../build/NEWS:1667 msgid "" "`bpo-35360 `__: Update macOS installer " "to use SQLite 3.28.0." msgstr "" -#: ../../../build/NEWS:1446 +#: ../../../build/NEWS:1669 msgid "" "`bpo-34631 `__: Updated OpenSSL to " "1.1.1c in macOS installer." msgstr "" -#: ../../../build/NEWS:1451 +#: ../../../build/NEWS:1674 msgid "" "`bpo-37325 `__: Fix tab focus traversal " "order for help source and custom run dialogs." msgstr "" -#: ../../../build/NEWS:1454 +#: ../../../build/NEWS:1677 msgid "" "`bpo-37321 `__: Both subprocess " "connection error messages now refer to the 'Startup failure' section of the " "IDLE doc." msgstr "" -#: ../../../build/NEWS:1457 +#: ../../../build/NEWS:1680 msgid "" "`bpo-37177 `__: Properly 'attach' search" " dialogs to their main window so that they behave like other dialogs and do " "not get hidden behind their main window." msgstr "" -#: ../../../build/NEWS:1461 +#: ../../../build/NEWS:1684 msgid "" "`bpo-37039 `__: Adjust \"Zoom Height\" " "to individual screens by momemtarily maximizing the window on first use with" @@ -2898,14 +3321,14 @@ msgid "" "height. While a window is maximized, \"Zoom Height\" has no effect." msgstr "" -#: ../../../build/NEWS:1466 +#: ../../../build/NEWS:1689 msgid "" "`bpo-35763 `__: Make calltip reminder " "about '/' meaning positional-only less obtrusive by only adding it when " "there is room on the first line." msgstr "" -#: ../../../build/NEWS:1469 +#: ../../../build/NEWS:1692 msgid "" "`bpo-5680 `__: Add 'Run... Customized' to" " the Run menu to run a module with customized settings. Any 'command line " @@ -2913,19 +3336,19 @@ msgid "" "main module restart." msgstr "" -#: ../../../build/NEWS:1476 +#: ../../../build/NEWS:1699 msgid "" "`bpo-36763 `__: Add " ":func:`PyConfig_SetWideStringList` function." msgstr "" -#: ../../../build/NEWS:1478 +#: ../../../build/NEWS:1701 msgid "" "`bpo-28805 `__: The " ":const:`METH_FASTCALL` calling convention has been documented." msgstr "" -#: ../../../build/NEWS:1481 +#: ../../../build/NEWS:1704 msgid "" "`bpo-37221 `__: ``tp_print`` is put back" " at the end of the ``PyTypeObject`` structure to restore support for old " @@ -2933,7 +3356,7 @@ msgid "" " ``tp_print`` will be removed entirely in Python 3.9." msgstr "" -#: ../../../build/NEWS:1486 +#: ../../../build/NEWS:1709 msgid "" "`bpo-37221 `__: The new function " ":c:func:`PyCode_NewWithPosOnlyArgs` allows to create code objects like " @@ -2941,13 +3364,13 @@ msgid "" "indicating the number of positonal-only arguments." msgstr "" -#: ../../../build/NEWS:1491 +#: ../../../build/NEWS:1714 msgid "" "`bpo-37215 `__: Fix dtrace issue " "introduce by `bpo-36842 `__" msgstr "" -#: ../../../build/NEWS:1493 +#: ../../../build/NEWS:1716 msgid "" "`bpo-37191 `__: Python.h does not need " "compiler support for intermingled declarations (GCC's ``-Wdeclaration-after-" @@ -2955,21 +3378,21 @@ msgid "" "intermingled declarations will be needed again." msgstr "" -#: ../../../build/NEWS:1498 +#: ../../../build/NEWS:1721 msgid "" "`bpo-37170 `__: Fix the cast on error in" " :c:func:`PyLong_AsUnsignedLongLongMask()`." msgstr "" -#: ../../../build/NEWS:1503 +#: ../../../build/NEWS:1726 msgid "Python 3.8.0 beta 1" msgstr "Python 3.8.0 beta 1" -#: ../../../build/NEWS:1505 +#: ../../../build/NEWS:1728 msgid "*Release date: 2019-06-04*" msgstr "*Tanggal rilis: 2019-06-04*" -#: ../../../build/NEWS:1510 +#: ../../../build/NEWS:1733 msgid "" "`bpo-35907 `__: CVE-2019-9948: Avoid " "file reading by disallowing ``local-file://`` and ``local_file://`` URL " @@ -2977,33 +3400,33 @@ msgid "" ":mod:`urllib.request`." msgstr "" -#: ../../../build/NEWS:1515 +#: ../../../build/NEWS:1738 msgid "" "`bpo-33529 `__: Prevent fold function " "used in email header encoding from entering infinite loop when there are too" " many non-ASCII characters in a header." msgstr "" -#: ../../../build/NEWS:1519 +#: ../../../build/NEWS:1742 msgid "" "`bpo-33164 `__: Updated blake2 " "implementation which uses secure memset implementation provided by platform." msgstr "" -#: ../../../build/NEWS:1525 +#: ../../../build/NEWS:1748 msgid "" "`bpo-35814 `__: Allow unpacking in the " "right hand side of annotated assignments. In particular, ``t: Tuple[int, " "...] = x, y, *z`` is now allowed." msgstr "" -#: ../../../build/NEWS:1529 +#: ../../../build/NEWS:1752 msgid "" "`bpo-37126 `__: All structseq objects " "are now tracked by the garbage collector. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:1532 +#: ../../../build/NEWS:1755 msgid "" "`bpo-37122 `__: Make the *co_argcount* " "attribute of code objects represent the total number of positional arguments" @@ -3013,7 +3436,7 @@ msgid "" "positional-or-keyword arguments. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:1539 +#: ../../../build/NEWS:1762 msgid "" "`bpo-20092 `__: Constructors of " ":class:`int`, :class:`float` and :class:`complex` will now use the " @@ -3022,26 +3445,26 @@ msgid "" ":meth:`~object.__complex__` is not available." msgstr "" -#: ../../../build/NEWS:1544 +#: ../../../build/NEWS:1767 msgid "" "`bpo-37087 `__: Add native thread ID " "(TID) support to OpenBSD." msgstr "" -#: ../../../build/NEWS:1546 +#: ../../../build/NEWS:1769 msgid "" "`bpo-26219 `__: Implemented per opcode " "cache mechanism and ``LOAD_GLOBAL`` instruction use it. ``LOAD_GLOBAL`` is " "now about 40% faster. Contributed by Yury Selivanov, and Inada Naoki." msgstr "" -#: ../../../build/NEWS:1550 +#: ../../../build/NEWS:1773 msgid "" "`bpo-37072 `__: Fix crash in " "PyAST_FromNodeObject() when flags is NULL." msgstr "" -#: ../../../build/NEWS:1552 +#: ../../../build/NEWS:1775 msgid "" "`bpo-37029 `__: Freeing a great many " "small objects could take time quadratic in the number of arenas, due to " @@ -3053,14 +3476,14 @@ msgid "" "time needed to release their memory." msgstr "" -#: ../../../build/NEWS:1561 +#: ../../../build/NEWS:1784 msgid "" "`bpo-26423 `__: Fix possible overflow in" " ``wrap_lenfunc()`` when ``sizeof(long) < sizeof(Py_ssize_t)`` (e.g., 64-bit" " Windows)." msgstr "" -#: ../../../build/NEWS:1564 +#: ../../../build/NEWS:1787 msgid "" "`bpo-37050 `__: Improve the AST for " "\"debug\" f-strings, which use '=' to print out the source of the expression" @@ -3069,7 +3492,7 @@ msgid "" "expressions inside the f-string)." msgstr "" -#: ../../../build/NEWS:1569 +#: ../../../build/NEWS:1792 msgid "" "`bpo-22385 `__: The `bytes.hex`, " "`bytearray.hex`, and `memoryview.hex` methods as well as the " @@ -3078,26 +3501,26 @@ msgid "" " MicroPython's hexlify implementation." msgstr "" -#: ../../../build/NEWS:1574 +#: ../../../build/NEWS:1797 msgid "" "`bpo-26836 `__: Add " ":func:`os.memfd_create`." msgstr "" -#: ../../../build/NEWS:1576 +#: ../../../build/NEWS:1799 msgid "" "`bpo-37032 `__: Added new ``replace()`` " "method to the code type (:class:`types.CodeType`)." msgstr "" -#: ../../../build/NEWS:1579 +#: ../../../build/NEWS:1802 msgid "" "`bpo-37007 `__: Implement " ":func:`socket.if_nameindex()`, :func:`socket.if_nametoindex()`, and " ":func:`socket.if_indextoname()` on Windows." msgstr "" -#: ../../../build/NEWS:1583 +#: ../../../build/NEWS:1806 msgid "" "`bpo-36829 `__: " ":c:func:`PyErr_WriteUnraisable` now creates a traceback object if there is " @@ -3106,14 +3529,14 @@ msgid "" "any error." msgstr "" -#: ../../../build/NEWS:1588 +#: ../../../build/NEWS:1811 msgid "" "`bpo-36878 `__: Only accept text after " "`# type: ignore` if the first character is ASCII. This is to disallow things" " like `# type: ignoreé`." msgstr "" -#: ../../../build/NEWS:1591 +#: ../../../build/NEWS:1814 msgid "" "`bpo-36878 `__: Store text appearing " "after a `# type: ignore` comment in the AST. For example a type ignore like " @@ -3121,39 +3544,39 @@ msgid "" " node." msgstr "" -#: ../../../build/NEWS:1595 +#: ../../../build/NEWS:1818 msgid "" "`bpo-2180 `__: Treat line continuation at" " EOF as a ``SyntaxError`` by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:1598 +#: ../../../build/NEWS:1821 msgid "" "`bpo-36907 `__: Fix a crash when calling" " a C function with a keyword dict (``f(**kwargs)``) and changing the dict " "``kwargs`` while that function is running." msgstr "" -#: ../../../build/NEWS:1602 +#: ../../../build/NEWS:1825 msgid "" "`bpo-36946 `__: Fix possible signed " "integer overflow when handling slices." msgstr "" -#: ../../../build/NEWS:1604 +#: ../../../build/NEWS:1827 msgid "" "`bpo-36826 `__: Add NamedExpression kind" " support to ast_unparse.c" msgstr "" -#: ../../../build/NEWS:1606 +#: ../../../build/NEWS:1829 msgid "" "`bpo-1875 `__: A :exc:`SyntaxError` is " "now raised if a code blocks that will be optimized away (e.g. if conditions " "that are always false) contains syntax errors. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:1610 +#: ../../../build/NEWS:1833 msgid "" "`bpo-36027 `__: Allow computation of " "modular inverses via three-argument ``pow``: the second argument is now " @@ -3161,27 +3584,27 @@ msgid "" " relatively prime." msgstr "" -#: ../../../build/NEWS:1614 +#: ../../../build/NEWS:1837 msgid "" "`bpo-36861 `__: Update the Unicode " "database to version 12.1.0." msgstr "" -#: ../../../build/NEWS:1616 +#: ../../../build/NEWS:1839 msgid "" "`bpo-28866 `__: Avoid caching attributes" " of classes which type defines mro() to avoid a hard cache invalidation " "problem." msgstr "" -#: ../../../build/NEWS:1619 +#: ../../../build/NEWS:1842 msgid "" "`bpo-36851 `__: The ``FrameType`` stack " "is now correctly cleaned up if the execution ends with a return and the " "stack is not empty." msgstr "" -#: ../../../build/NEWS:1622 +#: ../../../build/NEWS:1845 msgid "" "`bpo-34616 `__: The ``compile()`` " "builtin functions now support the ``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` flag, " @@ -3190,26 +3613,26 @@ msgid "" "already async functions; for example in a custom REPL." msgstr "" -#: ../../../build/NEWS:1628 +#: ../../../build/NEWS:1851 msgid "" "`bpo-36842 `__: Implement PEP 578, " "adding sys.audit, io.open_code and related APIs." msgstr "" -#: ../../../build/NEWS:1631 +#: ../../../build/NEWS:1854 msgid "" "`bpo-27639 `__: Correct return type for " "UserList slicing operations. Patch by Michael Blahay, Erick Cervantes, and " "vaultah" msgstr "" -#: ../../../build/NEWS:1634 +#: ../../../build/NEWS:1857 msgid "" "`bpo-36737 `__: Move " "PyRuntimeState.warnings into per-interpreter state (via \"module state\")." msgstr "" -#: ../../../build/NEWS:1637 +#: ../../../build/NEWS:1860 msgid "" "`bpo-36793 `__: Removed ``__str__`` " "implementations from builtin types :class:`bool`, :class:`int`, " @@ -3217,7 +3640,7 @@ msgid "" "They now inherit ``__str__()`` from :class:`object`." msgstr "" -#: ../../../build/NEWS:1642 +#: ../../../build/NEWS:1865 msgid "" "`bpo-36817 `__: Add a ``=`` feature " "f-strings for debugging. This can precede ``!s``, ``!r``, or ``!a``. It " @@ -3228,13 +3651,13 @@ msgid "" "the formatting behavior is unchanged, and __format__ will be used." msgstr "" -#: ../../../build/NEWS:1650 +#: ../../../build/NEWS:1873 msgid "" "`bpo-24048 `__: Save the live exception " "during import.c's ``remove_module()``." msgstr "" -#: ../../../build/NEWS:1652 +#: ../../../build/NEWS:1875 msgid "" "`bpo-27987 `__: pymalloc returns memory " "blocks aligned by 16 bytes, instead of 8 bytes, on 64-bit platforms to " @@ -3242,39 +3665,39 @@ msgid "" " by Inada Naoki." msgstr "" -#: ../../../build/NEWS:1656 +#: ../../../build/NEWS:1879 msgid "" "`bpo-36601 `__: A long-since-meaningless" " check for ``getpid() == main_pid`` was removed from Python's internal C " "signal handler." msgstr "" -#: ../../../build/NEWS:1659 +#: ../../../build/NEWS:1882 msgid "" "`bpo-36594 `__: Fix incorrect use of " "``%p`` in format strings. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:1662 +#: ../../../build/NEWS:1885 msgid "" "`bpo-36045 `__: builtins.help() now " "prefixes `async` for async functions" msgstr "" -#: ../../../build/NEWS:1664 +#: ../../../build/NEWS:1887 msgid "" "`bpo-36084 `__: Add native thread ID " "(TID) to threading.Thread objects (supported platforms: Windows, FreeBSD, " "Linux, macOS)" msgstr "" -#: ../../../build/NEWS:1667 +#: ../../../build/NEWS:1890 msgid "" "`bpo-36035 `__: Added fix for broken " "symlinks in combination with pathlib" msgstr "" -#: ../../../build/NEWS:1669 +#: ../../../build/NEWS:1892 msgid "" "`bpo-35983 `__: Added new trashcan " "macros to deal with a double deallocation that could occur when the " @@ -3282,81 +3705,81 @@ msgid "" "base class uses the trashcan mechanism. Patch by Jeroen Demeyer." msgstr "" -#: ../../../build/NEWS:1674 +#: ../../../build/NEWS:1897 msgid "" "`bpo-20602 `__: Do not clear " ":data:`sys.flags` and :data:`sys.float_info` during shutdown. Patch by " "Zackery Spytz." msgstr "" -#: ../../../build/NEWS:1677 +#: ../../../build/NEWS:1900 msgid "" "`bpo-26826 `__: Expose " ":func:`copy_file_range` as a low level API in the :mod:`os` module." msgstr "" -#: ../../../build/NEWS:1680 +#: ../../../build/NEWS:1903 msgid "" "`bpo-32388 `__: Remove cross-version " "binary compatibility requirement in tp_flags." msgstr "" -#: ../../../build/NEWS:1683 +#: ../../../build/NEWS:1906 msgid "" "`bpo-31862 `__: Port binascii to PEP 489" " multiphase initialization. Patch by Marcel Plch." msgstr "" -#: ../../../build/NEWS:1689 +#: ../../../build/NEWS:1912 msgid "" "`bpo-37128 `__: Added :func:`math.perm`." msgstr "" -#: ../../../build/NEWS:1691 +#: ../../../build/NEWS:1914 msgid "" "`bpo-37120 `__: Add " "SSLContext.num_tickets to control the number of TLSv1.3 session tickets." msgstr "" -#: ../../../build/NEWS:1694 +#: ../../../build/NEWS:1917 msgid "" "`bpo-12202 `__: Fix the error handling " "in :meth:`msilib.SummaryInformation.GetProperty`. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:1697 +#: ../../../build/NEWS:1920 msgid "" "`bpo-26835 `__: The fcntl module now " "contains file sealing constants for sealing of memfds." msgstr "" -#: ../../../build/NEWS:1700 +#: ../../../build/NEWS:1923 msgid "" "`bpo-29262 `__: Add ``get_origin()`` and" " ``get_args()`` introspection helpers to ``typing`` module." msgstr "" -#: ../../../build/NEWS:1703 +#: ../../../build/NEWS:1926 msgid "" "`bpo-12639 `__: " ":meth:`msilib.Directory.start_component()` no longer fails if *keyfile* is " "not ``None``." msgstr "" -#: ../../../build/NEWS:1706 +#: ../../../build/NEWS:1929 msgid "" "`bpo-36999 `__: Add the " "``asyncio.Task.get_coro()`` method to publicly expose the tasks's coroutine " "object." msgstr "" -#: ../../../build/NEWS:1709 +#: ../../../build/NEWS:1932 msgid "" "`bpo-35246 `__: Make " ":func:`asyncio.create_subprocess_exec` accept path-like arguments." msgstr "" -#: ../../../build/NEWS:1712 +#: ../../../build/NEWS:1935 msgid "" "`bpo-35279 `__: Change default " "*max_workers* of ``ThreadPoolExecutor`` from ``cpu_count() * 5`` to " @@ -3364,7 +3787,7 @@ msgid "" "many cores machines." msgstr "" -#: ../../../build/NEWS:1716 +#: ../../../build/NEWS:1939 msgid "" "`bpo-37076 `__: " ":func:`_thread.start_new_thread` now logs uncaught exception raised by the " @@ -3373,13 +3796,13 @@ msgid "" " the exception." msgstr "" -#: ../../../build/NEWS:1721 +#: ../../../build/NEWS:1944 msgid "" "`bpo-33725 `__: On macOS, the " ":mod:`multiprocessing` module now uses *spawn* start method by default." msgstr "" -#: ../../../build/NEWS:1724 +#: ../../../build/NEWS:1947 msgid "" "`bpo-37054 `__: Fix destructor " ":class:`_pyio.BytesIO` and :class:`_pyio.TextIOWrapper`: initialize their " @@ -3387,20 +3810,20 @@ msgid "" "used by ``__del__()`` which calls ``close()``." msgstr "" -#: ../../../build/NEWS:1729 +#: ../../../build/NEWS:1952 msgid "" "`bpo-37058 `__: PEP 544: Add " "``Protocol`` and ``@runtime_checkable`` to the ``typing`` module." msgstr "" -#: ../../../build/NEWS:1732 +#: ../../../build/NEWS:1955 msgid "" "`bpo-36933 `__: The functions " "``sys.set_coroutine_wrapper`` and ``sys.get_coroutine_wrapper`` that were " "deprecated and marked for removal in 3.8 have been removed." msgstr "" -#: ../../../build/NEWS:1736 +#: ../../../build/NEWS:1959 msgid "" "`bpo-37047 `__: Handle late binding and " "attribute access in :class:`unittest.mock.AsyncMock` setup for autospeccing." @@ -3408,25 +3831,25 @@ msgid "" ":class:`unittest.mock.MagicMock`." msgstr "" -#: ../../../build/NEWS:1740 +#: ../../../build/NEWS:1963 msgid "" "`bpo-37049 `__: PEP 589: Add " "``TypedDict`` to the ``typing`` module." msgstr "" -#: ../../../build/NEWS:1742 +#: ../../../build/NEWS:1965 msgid "" "`bpo-37046 `__: PEP 586: Add ``Literal``" " to the ``typing`` module." msgstr "" -#: ../../../build/NEWS:1744 +#: ../../../build/NEWS:1967 msgid "" "`bpo-37045 `__: PEP 591: Add ``Final`` " "qualifier and ``@final`` decorator to the ``typing`` module." msgstr "" -#: ../../../build/NEWS:1747 +#: ../../../build/NEWS:1970 msgid "" "`bpo-37035 `__: Don't log OSError based " "exceptions if a fatal error has occurred in asyncio transport. Peer can " @@ -3435,44 +3858,44 @@ msgid "" "is pointless and pollute asyncio logs." msgstr "" -#: ../../../build/NEWS:1753 +#: ../../../build/NEWS:1976 msgid "" "`bpo-37001 `__: " ":func:`symtable.symtable` now accepts the same input types for source code " "as the built-in :func:`compile` function. Patch by Dino Viehland." msgstr "" -#: ../../../build/NEWS:1757 +#: ../../../build/NEWS:1980 msgid "" "`bpo-37028 `__: Implement asyncio REPL" msgstr "" -#: ../../../build/NEWS:1759 +#: ../../../build/NEWS:1982 msgid "" "`bpo-37027 `__: Return safe to use proxy" " socket object from transport.get_extra_info('socket')" msgstr "" -#: ../../../build/NEWS:1762 +#: ../../../build/NEWS:1985 msgid "" "`bpo-32528 `__: Make " "asyncio.CancelledError a BaseException." msgstr "" -#: ../../../build/NEWS:1764 +#: ../../../build/NEWS:1987 msgid "" "This will address the common mistake many asyncio users make: an \"except " "Exception\" clause breaking Tasks cancellation." msgstr "" -#: ../../../build/NEWS:1767 +#: ../../../build/NEWS:1990 msgid "" "In addition to this change, we stop inheriting asyncio.TimeoutError and " "asyncio.InvalidStateError from their concurrent.futures.* counterparts. " "There's no point for these exceptions to share the inheritance chain." msgstr "" -#: ../../../build/NEWS:1771 +#: ../../../build/NEWS:1994 msgid "" "`bpo-1230540 `__: Add a new " ":func:`threading.excepthook` function which handles uncaught " @@ -3480,57 +3903,57 @@ msgid "" "uncaught :meth:`threading.Thread.run` exceptions are handled." msgstr "" -#: ../../../build/NEWS:1775 +#: ../../../build/NEWS:1998 msgid "" "`bpo-36996 `__: Handle " ":func:`unittest.mock.patch` used as a decorator on async functions." msgstr "" -#: ../../../build/NEWS:1778 +#: ../../../build/NEWS:2001 msgid "" "`bpo-37008 `__: Add support for calling " ":func:`next` with the mock resulting from :func:`unittest.mock.mock_open`" msgstr "" -#: ../../../build/NEWS:1781 +#: ../../../build/NEWS:2004 msgid "" "`bpo-27737 `__: Allow whitespace only " "header encoding in ``email.header`` - by Batuhan Taskaya" msgstr "" -#: ../../../build/NEWS:1784 +#: ../../../build/NEWS:2007 msgid "" "`bpo-36969 `__: PDB command `args` now " "display positional only arguments. Patch contributed by Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:1787 +#: ../../../build/NEWS:2010 msgid "" "`bpo-36969 `__: PDB command `args` now " "display keyword only arguments. Patch contributed by Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:1790 +#: ../../../build/NEWS:2013 msgid "" "`bpo-36983 `__: Add missing names to " "``typing.__all__``: ``ChainMap``, ``ForwardRef``, ``OrderedDict`` - by " "Anthony Sottile." msgstr "" -#: ../../../build/NEWS:1793 +#: ../../../build/NEWS:2016 msgid "" "`bpo-36972 `__: Add SupportsIndex " "protocol to the typing module to allow type checking to detect classes that " "can be passed to `hex()`, `oct()` and `bin()`." msgstr "" -#: ../../../build/NEWS:1797 +#: ../../../build/NEWS:2020 msgid "" "`bpo-32972 `__: Implement " "``unittest.IsolatedAsyncioTestCase`` to help testing asyncio-based code." msgstr "" -#: ../../../build/NEWS:1800 +#: ../../../build/NEWS:2023 msgid "" "`bpo-36952 `__: :func:`fileinput.input` " "and :class:`fileinput.FileInput` **bufsize** argument has been removed (was " @@ -3538,7 +3961,7 @@ msgid "" "**openhook** arguments have been made keyword-only." msgstr "" -#: ../../../build/NEWS:1805 +#: ../../../build/NEWS:2028 msgid "" "`bpo-36952 `__: Starting with Python " "3.3, importing ABCs from :mod:`collections` is deprecated, and import should" @@ -3547,64 +3970,64 @@ msgid "" "3.9; documentation and ``DeprecationWarning`` clarified." msgstr "" -#: ../../../build/NEWS:1811 +#: ../../../build/NEWS:2034 msgid "" "`bpo-36949 `__: Implement __repr__ for " "WeakSet objects." msgstr "" -#: ../../../build/NEWS:1813 +#: ../../../build/NEWS:2036 msgid "" "`bpo-36948 `__: Fix :exc:`NameError` in " ":meth:`urllib.request.URLopener.retrieve`. Patch by Karthikeyan " "Singaravelan." msgstr "" -#: ../../../build/NEWS:1817 +#: ../../../build/NEWS:2040 msgid "" "`bpo-33524 `__: Fix the folding of email" " header when the max_line_length is 0 or None and the header contains non-" "ascii characters. Contributed by Licht Takeuchi (@Licht-T)." msgstr "" -#: ../../../build/NEWS:1821 +#: ../../../build/NEWS:2044 msgid "" "`bpo-24564 `__: :func:`shutil.copystat` " "now ignores :const:`errno.EINVAL` on :func:`os.setxattr` which may occur " "when copying files on filesystems without extended attributes support." msgstr "" -#: ../../../build/NEWS:1825 +#: ../../../build/NEWS:2048 msgid "Original patch by Giampaolo Rodola, updated by Ying Wang." msgstr "*Patch* awal oleh Giampaolo Rodola, diperbarui oleh Ying Wang." -#: ../../../build/NEWS:1827 +#: ../../../build/NEWS:2050 msgid "" "`bpo-36888 `__: Python child processes " "can now access the status of their parent process using " "multiprocessing.process.parent_process" msgstr "" -#: ../../../build/NEWS:1830 +#: ../../../build/NEWS:2053 msgid "" "`bpo-36921 `__: Deprecate ``@coroutine``" " for sake of ``async def``." msgstr "" -#: ../../../build/NEWS:1832 +#: ../../../build/NEWS:2055 msgid "" "`bpo-25652 `__: Fix bug in ``__rmod__`` " "of ``UserString`` - by Batuhan Taskaya." msgstr "" -#: ../../../build/NEWS:1834 +#: ../../../build/NEWS:2057 msgid "" "`bpo-36916 `__: Remove a message about " "an unhandled exception in a task when writer.write() is used without await " "and writer.drain() fails with an exception." msgstr "" -#: ../../../build/NEWS:1838 +#: ../../../build/NEWS:2061 msgid "" "`bpo-36889 `__: Introduce " ":class:`asyncio.Stream` class that merges :class:`asyncio.StreamReader` and " @@ -3622,59 +4045,59 @@ msgid "" "and :class:`asyncio.StreamReaderProtocol` outside of asyncio package." msgstr "" -#: ../../../build/NEWS:1854 +#: ../../../build/NEWS:2077 msgid "" "`bpo-36845 `__: Added validation of " "integer prefixes to the construction of IP networks and interfaces in the " "ipaddress module." msgstr "" -#: ../../../build/NEWS:1857 +#: ../../../build/NEWS:2080 msgid "" "`bpo-23378 `__: Add an extend action to " "argparser." msgstr "" -#: ../../../build/NEWS:1859 +#: ../../../build/NEWS:2082 msgid "" "`bpo-36867 `__: Fix a bug making a " "SharedMemoryManager instance and its parent process use two separate " "resource_tracker processes." msgstr "" -#: ../../../build/NEWS:1862 +#: ../../../build/NEWS:2085 msgid "" "`bpo-23896 `__: Adds a grammar to " "lib2to3.pygram that contains exec as a function not as statement." msgstr "" -#: ../../../build/NEWS:1865 +#: ../../../build/NEWS:2088 msgid "" "`bpo-36895 `__: The function " "``time.clock()`` was deprecated in 3.3 in favor of ``time.perf_counter()`` " "and marked for removal in 3.8, it has removed." msgstr "" -#: ../../../build/NEWS:1868 +#: ../../../build/NEWS:2091 msgid "" "`bpo-35545 `__: Fix asyncio discarding " "IPv6 scopes when ensuring hostname resolutions internally" msgstr "" -#: ../../../build/NEWS:1871 +#: ../../../build/NEWS:2094 msgid "" "`bpo-36887 `__: Add new function " ":func:`math.isqrt` to compute integer square roots." msgstr "" -#: ../../../build/NEWS:1874 +#: ../../../build/NEWS:2097 msgid "" "`bpo-34632 `__: Introduce the " "``importlib.metadata`` module with (provisional) support for reading " "metadata from third-party packages." msgstr "" -#: ../../../build/NEWS:1877 +#: ../../../build/NEWS:2100 msgid "" "`bpo-36878 `__: When using " "`type_comments=True` in `ast.parse`, treat `# type: ignore` followed by a " @@ -3683,13 +4106,13 @@ msgid "" "formations such as `# type: ignore[E1000]`." msgstr "" -#: ../../../build/NEWS:1882 +#: ../../../build/NEWS:2105 msgid "" "`bpo-36778 `__: ``cp65001`` encoding " "(Windows code page 65001) becomes an alias to ``utf_8`` encoding." msgstr "" -#: ../../../build/NEWS:1885 +#: ../../../build/NEWS:2108 msgid "" "`bpo-36867 `__: The " "multiprocessing.resource_tracker replaces the " @@ -3697,14 +4120,14 @@ msgid "" "resource_tracker also tracks shared_memory segments." msgstr "" -#: ../../../build/NEWS:1889 +#: ../../../build/NEWS:2112 msgid "" "`bpo-30262 `__: The ``Cache`` and " "``Statement`` objects of the :mod:`sqlite3` module are not exposed to the " "user. Patch by Aviv Palivoda." msgstr "" -#: ../../../build/NEWS:1892 +#: ../../../build/NEWS:2115 msgid "" "`bpo-24538 `__: In `shutil.copystat()`, " "first copy extended file attributes and then file permissions, since " @@ -3712,7 +4135,7 @@ msgid "" "writeable." msgstr "" -#: ../../../build/NEWS:1896 +#: ../../../build/NEWS:2119 msgid "" "`bpo-36829 `__: Add new " ":func:`sys.unraisablehook` function which can be overridden to control how " @@ -3722,79 +4145,79 @@ msgid "" "(:func:`gc.collect`)." msgstr "" -#: ../../../build/NEWS:1902 +#: ../../../build/NEWS:2125 msgid "" "`bpo-36832 `__: Introducing " "``zipfile.Path``, a pathlib-compatible wrapper for traversing zip files." msgstr "" -#: ../../../build/NEWS:1905 +#: ../../../build/NEWS:2128 msgid "" "`bpo-36814 `__: Fix an issue where " "os.posix_spawnp() would incorrectly raise a TypeError when file_actions is " "None." msgstr "" -#: ../../../build/NEWS:1908 +#: ../../../build/NEWS:2131 msgid "" "`bpo-33110 `__: Handle exceptions raised" " by functions added by concurrent.futures add_done_callback correctly when " "the Future has already completed." msgstr "" -#: ../../../build/NEWS:1912 +#: ../../../build/NEWS:2135 msgid "" "`bpo-26903 `__: Limit `max_workers` in " "`ProcessPoolExecutor` to 61 to work around a WaitForMultipleObjects " "limitation." msgstr "" -#: ../../../build/NEWS:1915 +#: ../../../build/NEWS:2138 msgid "" "`bpo-36813 `__: Fix " ":class:`~logging.handlers.QueueListener` to call ``queue.task_done()`` upon " "stopping. Patch by Bar Harel." msgstr "" -#: ../../../build/NEWS:1918 +#: ../../../build/NEWS:2141 msgid "" "`bpo-36806 `__: Forbid creation of " "asyncio stream objects like StreamReader, StreamWriter, Process, and their " "protocols outside of asyncio package." msgstr "" -#: ../../../build/NEWS:1921 +#: ../../../build/NEWS:2144 msgid "" "`bpo-36802 `__: Provide both sync and " "async calls for StreamWriter.write() and StreamWriter.close()" msgstr "" -#: ../../../build/NEWS:1924 +#: ../../../build/NEWS:2147 msgid "" "`bpo-36801 `__: Properly handle SSL " "connection closing in asyncio StreamWriter.drain() call." msgstr "" -#: ../../../build/NEWS:1927 +#: ../../../build/NEWS:2150 msgid "" "`bpo-36785 `__: Implement PEP 574 " "(pickle protocol 5 with out-of-band buffers)." msgstr "" -#: ../../../build/NEWS:1929 +#: ../../../build/NEWS:2152 msgid "" "`bpo-36772 `__: functools.lru_cache() " "can now be used as a straight decorator in addition to its existing usage as" " a function that returns a decorator." msgstr "" -#: ../../../build/NEWS:1932 +#: ../../../build/NEWS:2155 msgid "" "`bpo-6584 `__: Add a " ":exc:`~gzip.BadGzipFile` exception to the :mod:`gzip` module." msgstr "" -#: ../../../build/NEWS:1935 +#: ../../../build/NEWS:2158 msgid "" "`bpo-36748 `__: Optimized write " "buffering in C implementation of ``TextIOWrapper``. Writing ASCII string to " @@ -3802,21 +4225,21 @@ msgid "" " Patch by Inada Naoki." msgstr "" -#: ../../../build/NEWS:1939 +#: ../../../build/NEWS:2162 msgid "" "`bpo-8138 `__: Don't mark " "``wsgiref.simple_server.SimpleServer`` as multi-threaded since " "``wsgiref.simple_server.WSGIServer`` is single-threaded." msgstr "" -#: ../../../build/NEWS:1943 +#: ../../../build/NEWS:2166 msgid "" "`bpo-22640 `__: " ":func:`py_compile.compile` now supports silent mode. Patch by Joannah " "Nanjekye" msgstr "" -#: ../../../build/NEWS:1946 +#: ../../../build/NEWS:2169 msgid "" "`bpo-29183 `__: Fix double exceptions in" " :class:`wsgiref.handlers.BaseHandler` by calling its " @@ -3824,20 +4247,20 @@ msgid "" " raised." msgstr "" -#: ../../../build/NEWS:1950 +#: ../../../build/NEWS:2173 msgid "" "`bpo-36548 `__: Improved the repr of " "regular expression flags." msgstr "" -#: ../../../build/NEWS:1952 +#: ../../../build/NEWS:2175 msgid "" "`bpo-36542 `__: The signature of Python " "functions can now be overridden by specifying the ``__text_signature__`` " "attribute." msgstr "" -#: ../../../build/NEWS:1955 +#: ../../../build/NEWS:2178 msgid "" "`bpo-36533 `__: Reinitialize " "logging.Handler locks in forked child processes instead of attempting to " @@ -3847,41 +4270,41 @@ msgid "" "one another as the lock acquisition order cannot be guaranteed." msgstr "" -#: ../../../build/NEWS:1962 +#: ../../../build/NEWS:2185 msgid "" "`bpo-35252 `__: Throw a TypeError " "instead of an AssertionError when using an invalid type annotation with " "singledispatch." msgstr "" -#: ../../../build/NEWS:1965 +#: ../../../build/NEWS:2188 msgid "" "`bpo-35900 `__: Allow reduction methods " "to return a 6-item tuple where the 6th item specifies a custom state-setting" " method that's called instead of the regular ``__setstate__`` method." msgstr "" -#: ../../../build/NEWS:1969 +#: ../../../build/NEWS:2192 msgid "" "`bpo-35900 `__: enable custom reduction " "callback registration for functions and classes in _pickle.c, using the new " "Pickler's attribute ``reducer_override``" msgstr "" -#: ../../../build/NEWS:1973 +#: ../../../build/NEWS:2196 msgid "" "`bpo-36368 `__: Fix a bug crashing " "SharedMemoryManager instances in interactive sessions after a ctrl-c " "(KeyboardInterrupt) was sent" msgstr "" -#: ../../../build/NEWS:1976 +#: ../../../build/NEWS:2199 msgid "" "`bpo-31904 `__: Fix mmap fail for " "VxWorks" msgstr "" -#: ../../../build/NEWS:1978 +#: ../../../build/NEWS:2201 msgid "" "`bpo-27497 `__: " ":meth:`csv.DictWriter.writeheader` now returns the return value of the " @@ -3889,13 +4312,13 @@ msgid "" "Nitin Patil." msgstr "" -#: ../../../build/NEWS:1982 +#: ../../../build/NEWS:2205 msgid "" "`bpo-36239 `__: Parsing .mo files now " "ignores comments starting and ending with #-#-#-#-#." msgstr "" -#: ../../../build/NEWS:1985 +#: ../../../build/NEWS:2208 msgid "" "`bpo-26707 `__: Enable plistlib to read " "and write binary plist files that were created as a KeyedArchive file. " @@ -3903,19 +4326,19 @@ msgid "" "objects." msgstr "" -#: ../../../build/NEWS:1989 +#: ../../../build/NEWS:2212 msgid "" "`bpo-31904 `__: Add posix module support" " for VxWorks." msgstr "" -#: ../../../build/NEWS:1991 +#: ../../../build/NEWS:2214 msgid "" "`bpo-35125 `__: Asyncio: Remove inner " "callback on outer cancellation in shield" msgstr "" -#: ../../../build/NEWS:1993 +#: ../../../build/NEWS:2216 msgid "" "`bpo-35721 `__: Fix " ":meth:`asyncio.SelectorEventLoop.subprocess_exec()` leaks file descriptors " @@ -3923,14 +4346,14 @@ msgid "" "Niklas Fiekas." msgstr "" -#: ../../../build/NEWS:1997 +#: ../../../build/NEWS:2220 msgid "" "`bpo-31855 `__: " ":func:`unittest.mock.mock_open` results now respects the argument of " "read([size]). Patch contributed by Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:2000 +#: ../../../build/NEWS:2223 msgid "" "`bpo-35431 `__: Implement " ":func:`math.comb` that returns binomial coefficient, that computes the " @@ -3938,7 +4361,7 @@ msgid "" " order. Patch by Yash Aggarwal and Keller Fuchs." msgstr "" -#: ../../../build/NEWS:2004 +#: ../../../build/NEWS:2227 msgid "" "`bpo-26660 `__: Fixed permission errors " "in :class:`~tempfile.TemporaryDirectory` clean up. Previously " @@ -3946,7 +4369,7 @@ msgid "" " files or directories were created inside a temporary directory." msgstr "" -#: ../../../build/NEWS:2010 +#: ../../../build/NEWS:2233 msgid "" "`bpo-34271 `__: Add debugging helpers to" " ssl module. It's now possible to dump key material and to trace TLS " @@ -3954,46 +4377,46 @@ msgid "" "var." msgstr "" -#: ../../../build/NEWS:2014 +#: ../../../build/NEWS:2237 msgid "" "`bpo-26467 `__: Added AsyncMock to " "support using unittest to mock asyncio coroutines. Patch by Lisa Roach." msgstr "" -#: ../../../build/NEWS:2017 +#: ../../../build/NEWS:2240 msgid "" "`bpo-33569 `__: dataclasses.InitVar: " "Exposes the type used to create the init var." msgstr "" -#: ../../../build/NEWS:2020 +#: ../../../build/NEWS:2243 msgid "" "`bpo-34424 `__: Fix serialization of " "messages containing encoded strings when the policy.linesep is set to a " "multi-character string. Patch by Jens Troeger." msgstr "" -#: ../../../build/NEWS:2024 +#: ../../../build/NEWS:2247 msgid "" "`bpo-34303 `__: Performance of " ":func:`functools.reduce` is slightly improved. Patch by Sergey Fedoseev." msgstr "" -#: ../../../build/NEWS:2027 +#: ../../../build/NEWS:2250 msgid "" "`bpo-33361 `__: Fix a bug in " ":class:`codecs.StreamRecoder` where seeking might leave old data in a buffer" " and break subsequent read calls. Patch by Ammar Askar." msgstr "" -#: ../../../build/NEWS:2031 +#: ../../../build/NEWS:2254 msgid "" "`bpo-22454 `__: The :mod:`shlex` module " "now exposes :func:`shlex.join`, the inverse of :func:`shlex.split`. Patch by" " Bo Bayles." msgstr "" -#: ../../../build/NEWS:2034 +#: ../../../build/NEWS:2257 msgid "" "`bpo-31922 `__: " ":meth:`asyncio.AbstractEventLoop.create_datagram_endpoint`: Do not connect " @@ -4001,13 +4424,13 @@ msgid "" " UDP broadcast." msgstr "" -#: ../../../build/NEWS:2038 +#: ../../../build/NEWS:2261 msgid "" "`bpo-24882 `__: Change " "ThreadPoolExecutor to use existing idle threads before spinning up new ones." msgstr "" -#: ../../../build/NEWS:2041 +#: ../../../build/NEWS:2264 msgid "" "`bpo-31961 `__: Added support for bytes " "and path-like objects in :func:`subprocess.Popen` on Windows. The *args* " @@ -4017,48 +4440,48 @@ msgid "" "parameter now accepts a bytes object. Based on patch by Anders Lorentsen." msgstr "" -#: ../../../build/NEWS:2048 +#: ../../../build/NEWS:2271 msgid "" "`bpo-33123 `__: " ":class:`pathlib.Path.unlink` now accepts a *missing_ok* parameter to avoid a" " :exc:`FileNotFoundError` from being raised. Patch by Robert Buchholz." msgstr "" -#: ../../../build/NEWS:2052 +#: ../../../build/NEWS:2275 msgid "" "`bpo-32941 `__: Allow :class:`mmap.mmap`" " objects to access the madvise() system call (through " ":meth:`mmap.mmap.madvise`)." msgstr "" -#: ../../../build/NEWS:2055 +#: ../../../build/NEWS:2278 msgid "" "`bpo-22102 `__: Added support for ZIP " "files with disks set to 0. Such files are commonly created by builtin tools " "on Windows when use ZIP64 extension. Patch by Francisco Facioni." msgstr "" -#: ../../../build/NEWS:2059 +#: ../../../build/NEWS:2282 msgid "" "`bpo-32515 `__: trace.py can now run " "modules via python3 -m trace -t --module module_name" msgstr "" -#: ../../../build/NEWS:2062 +#: ../../../build/NEWS:2285 msgid "" "`bpo-32299 `__: Changed " ":func:`unittest.mock.patch.dict` to return the patched dictionary when used " "as context manager. Patch by Vadim Tsander." msgstr "" -#: ../../../build/NEWS:2065 +#: ../../../build/NEWS:2288 msgid "" "`bpo-27141 `__: Added a ``__copy__()`` " "to ``collections.UserList`` and ``collections.UserDict`` in order to " "correctly implement shallow copying of the objects. Patch by Bar Harel." msgstr "" -#: ../../../build/NEWS:2069 +#: ../../../build/NEWS:2292 msgid "" "`bpo-31829 `__: ``\\r``, ``\\0`` and " "``\\x1a`` (end-of-file on Windows) are now escaped in protocol 0 pickles of " @@ -4066,20 +4489,20 @@ msgid "" "text mode in Python 2." msgstr "" -#: ../../../build/NEWS:2073 +#: ../../../build/NEWS:2296 msgid "" "`bpo-23395 `__: " "``_thread.interrupt_main()`` now avoids setting the Python error status if " "the ``SIGINT`` signal is ignored or not handled by Python." msgstr "" -#: ../../../build/NEWS:2079 +#: ../../../build/NEWS:2302 msgid "" "`bpo-36896 `__: Clarify that some types " "have unstable constructor signature between Python versions." msgstr "" -#: ../../../build/NEWS:2082 +#: ../../../build/NEWS:2305 msgid "" "`bpo-36686 `__: Improve documentation of" " the stdin, stdout, and stderr arguments of of the " @@ -4087,39 +4510,39 @@ msgid "" "Also mention that decoding as text is not supported." msgstr "" -#: ../../../build/NEWS:2086 +#: ../../../build/NEWS:2309 msgid "" "Add a few tests to verify that the various values passed to the std* " "arguments actually work." msgstr "" -#: ../../../build/NEWS:2089 +#: ../../../build/NEWS:2312 msgid "" "`bpo-36984 `__: Improve version added " "references in ``typing`` module - by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:2092 +#: ../../../build/NEWS:2315 msgid "" "`bpo-36868 `__: What's new now mentions " "SSLContext.hostname_checks_common_name instead of SSLContext.host_flags." msgstr "" -#: ../../../build/NEWS:2095 +#: ../../../build/NEWS:2318 msgid "" "`bpo-35924 `__: Add a note to the " "``curses.addstr()`` documentation to warn that multiline strings can cause " "segfaults because of an ncurses bug." msgstr "" -#: ../../../build/NEWS:2098 +#: ../../../build/NEWS:2321 msgid "" "`bpo-36783 `__: Added C API " "Documentation for Time_FromTimeAndFold and PyDateTime_FromDateAndTimeAndFold" " as per PEP 495. Patch by Edison Abahurire." msgstr "" -#: ../../../build/NEWS:2102 +#: ../../../build/NEWS:2325 msgid "" "`bpo-36797 `__: More of the legacy " "distutils documentation has been either pruned, or else more clearly marked " @@ -4127,43 +4550,43 @@ msgid "" "independently." msgstr "" -#: ../../../build/NEWS:2106 +#: ../../../build/NEWS:2329 msgid "" "`bpo-22865 `__: Add detail to the " "documentation on the `pty.spawn` function." msgstr "" -#: ../../../build/NEWS:2108 +#: ../../../build/NEWS:2331 msgid "" "`bpo-35397 `__: Remove deprecation and " "document urllib.parse.unwrap(). Patch contributed by Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:2111 +#: ../../../build/NEWS:2334 msgid "" "`bpo-32995 `__: Added the context " "variable in glossary." msgstr "" -#: ../../../build/NEWS:2113 +#: ../../../build/NEWS:2336 msgid "" "`bpo-33519 `__: Clarify that `copy()` is" " not part of the `MutableSequence` ABC." msgstr "" -#: ../../../build/NEWS:2115 +#: ../../../build/NEWS:2338 msgid "" "`bpo-33482 `__: Make " "`codecs.StreamRecoder.writelines` take a list of bytes." msgstr "" -#: ../../../build/NEWS:2117 +#: ../../../build/NEWS:2340 msgid "" "`bpo-25735 `__: Added documentation for " "func factorial to indicate that returns integer values" msgstr "" -#: ../../../build/NEWS:2120 +#: ../../../build/NEWS:2343 msgid "" "`bpo-20285 `__: Expand object.__doc__ " "(docstring) to make it clearer. Modify pydoc.py so that help(object) lists " @@ -4171,7 +4594,7 @@ msgid "" "class.)" msgstr "" -#: ../../../build/NEWS:2127 +#: ../../../build/NEWS:2350 msgid "" "`bpo-37069 `__: Modify test_coroutines, " "test_cprofile, test_generators, test_raise, test_ssl and test_yield_from to " @@ -4179,32 +4602,32 @@ msgid "" ":func:`test.support.captured_stderr`." msgstr "" -#: ../../../build/NEWS:2132 +#: ../../../build/NEWS:2355 msgid "" "`bpo-37098 `__: Fix test_memfd_create on" " older Linux Kernels." msgstr "" -#: ../../../build/NEWS:2134 +#: ../../../build/NEWS:2357 msgid "" "`bpo-37081 `__: Test with OpenSSL 1.1.1c" msgstr "" -#: ../../../build/NEWS:2136 +#: ../../../build/NEWS:2359 msgid "" "`bpo-36829 `__: Add " ":func:`test.support.catch_unraisable_exception`: context manager catching " "unraisable exception using :func:`sys.unraisablehook`." msgstr "" -#: ../../../build/NEWS:2139 +#: ../../../build/NEWS:2362 msgid "" "`bpo-36915 `__: The main regrtest " "process now always removes all temporary directories of worker processes " "even if they crash or if they are killed on KeyboardInterrupt (CTRL+c)." msgstr "" -#: ../../../build/NEWS:2143 +#: ../../../build/NEWS:2366 msgid "" "`bpo-36719 `__: \"python3 -m test -jN " "...\" now continues the execution of next tests when a worker process crash " @@ -4212,14 +4635,14 @@ msgid "" "--failfast to stop at the first error." msgstr "" -#: ../../../build/NEWS:2147 +#: ../../../build/NEWS:2370 msgid "" "`bpo-36816 `__: Update " "Lib/test/selfsigned_pythontestdotnet.pem to match self-" "signed.pythontest.net's new TLS certificate." msgstr "" -#: ../../../build/NEWS:2150 +#: ../../../build/NEWS:2373 msgid "" "`bpo-35925 `__: Skip httplib and nntplib" " networking tests when they would otherwise fail due to a modern OS or " @@ -4227,19 +4650,19 @@ msgid "" "with weak certificates." msgstr "" -#: ../../../build/NEWS:2154 +#: ../../../build/NEWS:2377 msgid "" "`bpo-36782 `__: Add tests for several C " "API functions in the :mod:`datetime` module. Patch by Edison Abahurire." msgstr "" -#: ../../../build/NEWS:2157 +#: ../../../build/NEWS:2380 msgid "" "`bpo-36342 `__: Fix test_multiprocessing" " in test_venv if platform lacks functioning sem_open." msgstr "" -#: ../../../build/NEWS:2163 +#: ../../../build/NEWS:2386 msgid "" "`bpo-36721 `__: To embed Python into an " "application, a new ``--embed`` option must be passed to ``python3-config " @@ -4249,7 +4672,7 @@ msgid "" "previous command fails." msgstr "" -#: ../../../build/NEWS:2169 +#: ../../../build/NEWS:2392 msgid "" "Add a pkg-config ``python-3.8-embed`` module to embed Python into an " "application: ``pkg-config python-3.8-embed --libs`` includes " @@ -4259,7 +4682,7 @@ msgid "" "``X.Y`` with the Python version)." msgstr "" -#: ../../../build/NEWS:2176 +#: ../../../build/NEWS:2399 msgid "" "On the other hand, ``pkg-config python3.8 --libs`` no longer contains " "``-lpython3.8``. C extensions must not be linked to libpython (except on " @@ -4267,37 +4690,37 @@ msgid "" "on purpose." msgstr "" -#: ../../../build/NEWS:2181 +#: ../../../build/NEWS:2404 msgid "" "`bpo-36786 `__: \"make install\" now " "runs compileall in parallel." msgstr "" -#: ../../../build/NEWS:2186 +#: ../../../build/NEWS:2409 msgid "" "`bpo-36965 `__: include of " "STATUS_CONTROL_C_EXIT without depending on MSC compiler" msgstr "" -#: ../../../build/NEWS:2189 +#: ../../../build/NEWS:2412 msgid "" "`bpo-35926 `__: Update to OpenSSL 1.1.1b" " for Windows." msgstr "" -#: ../../../build/NEWS:2191 +#: ../../../build/NEWS:2414 msgid "" "`bpo-29883 `__: Add Windows support for " "UDP transports for the Proactor Event Loop. Patch by Adam Meily." msgstr "" -#: ../../../build/NEWS:2194 +#: ../../../build/NEWS:2417 msgid "" "`bpo-33407 `__: The " ":c:macro:`Py_DEPRECATED()` macro has been implemented for MSVC." msgstr "" -#: ../../../build/NEWS:2200 +#: ../../../build/NEWS:2423 msgid "" "`bpo-36231 `__: Support building Python " "on macOS without /usr/include installed. As of macOS 10.14, system header " @@ -4305,58 +4728,58 @@ msgid "" "Tools or the Xcode app." msgstr "" -#: ../../../build/NEWS:2207 +#: ../../../build/NEWS:2430 msgid "" "`bpo-35610 `__: Replace now redundant " ".context_use_ps1 with .prompt_last_line. This finishes change started in " "`bpo-31858 `__." msgstr "" -#: ../../../build/NEWS:2210 +#: ../../../build/NEWS:2433 msgid "" "`bpo-37038 `__: Make idlelib.run " "runnable; add test clause." msgstr "" -#: ../../../build/NEWS:2212 +#: ../../../build/NEWS:2435 msgid "" "`bpo-36958 `__: Print any argument other" " than None or int passed to SystemExit or sys.exit()." msgstr "" -#: ../../../build/NEWS:2215 +#: ../../../build/NEWS:2438 msgid "" "`bpo-36807 `__: When saving a file, call" " os.fsync() so bits are flushed to e.g. USB drive." msgstr "" -#: ../../../build/NEWS:2218 +#: ../../../build/NEWS:2441 msgid "" "`bpo-32411 `__: In browser.py, remove " "extraneous sorting by line number since dictionary was created in line " "number order." msgstr "" -#: ../../../build/NEWS:2224 +#: ../../../build/NEWS:2447 msgid "" "`bpo-37053 `__: Handle strings like " "u\"bar\" correctly in Tools/parser/unparse.py. Patch by Chih-Hsuan Yen." msgstr "" -#: ../../../build/NEWS:2230 +#: ../../../build/NEWS:2453 msgid "" "`bpo-36763 `__: Implement the :pep:`587`" " \"Python Initialization Configuration\"." msgstr "" -#: ../../../build/NEWS:2232 +#: ../../../build/NEWS:2455 msgid "" "`bpo-36379 `__: Fix crashes when " "attempting to use the *modulo* parameter when ``__ipow__`` is implemented in" " C." msgstr "" -#: ../../../build/NEWS:2235 +#: ../../../build/NEWS:2458 msgid "" "`bpo-37107 `__: Update " ":c:func:`PyObject_CallMethodObjArgs` and ``_PyObject_CallMethodIdObjArgs`` " @@ -4364,21 +4787,21 @@ msgid "" "many cases. Patch by Michael J. Sullivan." msgstr "" -#: ../../../build/NEWS:2240 +#: ../../../build/NEWS:2463 msgid "" "`bpo-36974 `__: Implement :pep:`590`: " "Vectorcall: a fast calling protocol for CPython. This is a new protocol to " "optimize calls of custom callable objects." msgstr "" -#: ../../../build/NEWS:2244 +#: ../../../build/NEWS:2467 msgid "" "`bpo-36763 `__: ``Py_Main()`` now " "returns the exitcode rather than calling ``Py_Exit(exitcode)`` when calling " "``PyErr_Print()`` if the current exception type is ``SystemExit``." msgstr "" -#: ../../../build/NEWS:2248 +#: ../../../build/NEWS:2471 msgid "" "`bpo-36922 `__: Add new type flag " "``Py_TPFLAGS_METHOD_DESCRIPTOR`` for objects behaving like unbound methods. " @@ -4386,28 +4809,28 @@ msgid "" "``LOAD_METHOD``/``CALL_METHOD`` opcodes. See PEP 590." msgstr "" -#: ../../../build/NEWS:2253 +#: ../../../build/NEWS:2476 msgid "" "`bpo-36728 `__: The " ":c:func:`PyEval_ReInitThreads` function has been removed from the C API. It " "should not be called explicitly: use :c:func:`PyOS_AfterFork_Child` instead." msgstr "" -#: ../../../build/NEWS:2259 +#: ../../../build/NEWS:2482 msgid "Python 3.8.0 alpha 4" msgstr "Python 3.8.0 alfa 4" -#: ../../../build/NEWS:2261 +#: ../../../build/NEWS:2484 msgid "*Release date: 2019-05-06*" msgstr "*Tanggal rilis: 2019-05-06*" -#: ../../../build/NEWS:2266 +#: ../../../build/NEWS:2489 msgid "" "`bpo-36742 `__: Fixes mishandling of " "pre-normalization characters in urlsplit()." msgstr "" -#: ../../../build/NEWS:2269 +#: ../../../build/NEWS:2492 msgid "" "`bpo-30458 `__: Address CVE-2019-9740 by" " disallowing URL paths with embedded whitespace or control characters " @@ -4416,7 +4839,7 @@ msgid "" "raised." msgstr "" -#: ../../../build/NEWS:2274 +#: ../../../build/NEWS:2497 msgid "" "`bpo-35755 `__: :func:`shutil.which` now" " uses ``os.confstr(\"CS_PATH\")`` if available and if the :envvar:`PATH` " @@ -4426,34 +4849,34 @@ msgid "" "directory if the :envvar:`PATH` environment variable is not set." msgstr "" -#: ../../../build/NEWS:2284 +#: ../../../build/NEWS:2507 msgid "" "`bpo-36722 `__: In debug build, import " "now also looks for C extensions compiled in release mode and for C " "extensions compiled in the stable ABI." msgstr "" -#: ../../../build/NEWS:2287 +#: ../../../build/NEWS:2510 msgid "" "`bpo-32849 `__: Fix Python " "Initialization code on FreeBSD to detect properly when stdin file descriptor" " (fd 0) is invalid." msgstr "" -#: ../../../build/NEWS:2290 +#: ../../../build/NEWS:2513 msgid "" "`bpo-36623 `__: Remove parser headers " "and related function declarations that lack implementations after the " "removal of pgen." msgstr "" -#: ../../../build/NEWS:2293 +#: ../../../build/NEWS:2516 msgid "" "`bpo-20180 `__: ``dict.pop()`` is now up" " to 33% faster thanks to Argument Clinic. Patch by Inada Naoki." msgstr "" -#: ../../../build/NEWS:2296 +#: ../../../build/NEWS:2519 msgid "" "`bpo-36611 `__: Debug memory allocators:" " disable serialno field by default from debug hooks on Python memory " @@ -4463,7 +4886,7 @@ msgid "" "with ``PYMEM_DEBUG_SERIALNO`` defined to get back the field." msgstr "" -#: ../../../build/NEWS:2303 +#: ../../../build/NEWS:2526 msgid "" "`bpo-36588 `__: On AIX, " ":attr:`sys.platform` doesn't contain the major version anymore. Always " @@ -4472,19 +4895,19 @@ msgid "" "``sys.platform.startswith('aix')``. Contributed by M. Felt." msgstr "" -#: ../../../build/NEWS:2308 +#: ../../../build/NEWS:2531 msgid "" "`bpo-36549 `__: Change str.capitalize to" " use titlecase for the first character instead of uppercase." msgstr "" -#: ../../../build/NEWS:2311 +#: ../../../build/NEWS:2534 msgid "" "`bpo-36540 `__: Implement :pep:`570` " "(Python positional-only parameters). Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:2314 +#: ../../../build/NEWS:2537 msgid "" "`bpo-36475 `__: " ":c:func:`PyEval_AcquireLock` and :c:func:`PyEval_AcquireThread` now " @@ -4493,25 +4916,25 @@ msgid "" ":c:func:`Py_END_ALLOW_THREADS`, and :c:func:`PyGILState_Ensure`." msgstr "" -#: ../../../build/NEWS:2319 +#: ../../../build/NEWS:2542 msgid "" "`bpo-36504 `__: Fix signed integer " "overflow in _ctypes.c's ``PyCArrayType_new()``." msgstr "" -#: ../../../build/NEWS:2322 +#: ../../../build/NEWS:2545 msgid "" "`bpo-20844 `__: Fix running script with " "encoding cookie and LF line ending may fail on Windows." msgstr "" -#: ../../../build/NEWS:2325 +#: ../../../build/NEWS:2548 msgid "" "`bpo-24214 `__: Fixed support of the " "surrogatepass error handler in the UTF-8 incremental decoder." msgstr "" -#: ../../../build/NEWS:2328 +#: ../../../build/NEWS:2551 msgid "" "`bpo-36452 `__: Changing ``dict`` keys " "during iteration of the dict itself, ``keys()``, ``values()``, or " @@ -4520,51 +4943,51 @@ msgid "" "will be raised after ``len(dict)`` iterations. Contributed by Thomas Perl." msgstr "" -#: ../../../build/NEWS:2334 +#: ../../../build/NEWS:2557 msgid "" "`bpo-36459 `__: Fix a possible double " "``PyMem_FREE()`` due to tokenizer.c's ``tok_nextc()``." msgstr "" -#: ../../../build/NEWS:2337 +#: ../../../build/NEWS:2560 msgid "" "`bpo-36433 `__: Fixed TypeError message " "in classmethoddescr_call." msgstr "" -#: ../../../build/NEWS:2339 +#: ../../../build/NEWS:2562 msgid "" "`bpo-36430 `__: Fix a possible reference" " leak in :func:`itertools.count`." msgstr "" -#: ../../../build/NEWS:2341 +#: ../../../build/NEWS:2564 msgid "" "`bpo-36440 `__: Include node names in " "``ParserError`` messages, instead of numeric IDs. Patch by A. Skrobov." msgstr "" -#: ../../../build/NEWS:2344 +#: ../../../build/NEWS:2567 msgid "" "`bpo-36143 `__: Regenerate " ":mod:`keyword` from the Grammar and Tokens file using pgen. Patch by Pablo " "Galindo." msgstr "" -#: ../../../build/NEWS:2347 +#: ../../../build/NEWS:2570 msgid "" "`bpo-18372 `__: Add missing " ":c:func:`PyObject_GC_Track` calls in the :mod:`pickle` module. Patch by " "Zackery Spytz." msgstr "" -#: ../../../build/NEWS:2353 +#: ../../../build/NEWS:2576 msgid "" "`bpo-35952 `__: Fix pythoninfo when the " "compiler is missing." msgstr "" -#: ../../../build/NEWS:2355 +#: ../../../build/NEWS:2578 msgid "" "`bpo-28238 `__: The ``.find*()`` methods" " of xml.etree.ElementTree can now search for wildcards like ``{*}tag`` and " @@ -4572,13 +4995,13 @@ msgid "" "Patch by Stefan Behnel." msgstr "" -#: ../../../build/NEWS:2359 +#: ../../../build/NEWS:2582 msgid "" "`bpo-26978 `__: `pathlib.path.link_to()`" " is now implemented. It creates a hard link pointing to a path." msgstr "" -#: ../../../build/NEWS:2362 +#: ../../../build/NEWS:2585 msgid "" "`bpo-1613500 `__: " ":class:`fileinput.FileInput` now uses the input file mode to correctly set " @@ -4586,27 +5009,27 @@ msgid "" "``inplace=True`` is passed to its constructor." msgstr "" -#: ../../../build/NEWS:2366 +#: ../../../build/NEWS:2589 msgid "" "`bpo-36734 `__: Fix compilation of " "``faulthandler.c`` on HP-UX. Initialize ``stack_t current_stack`` to zero " "using ``memset()``." msgstr "" -#: ../../../build/NEWS:2369 +#: ../../../build/NEWS:2592 msgid "" "`bpo-13611 `__: The " "xml.etree.ElementTree packages gained support for C14N 2.0 serialisation. " "Patch by Stefan Behnel." msgstr "" -#: ../../../build/NEWS:2372 +#: ../../../build/NEWS:2595 msgid "" "`bpo-36669 `__: Add missing matrix " "multiplication operator support to weakref.proxy." msgstr "" -#: ../../../build/NEWS:2375 +#: ../../../build/NEWS:2598 msgid "" "`bpo-36676 `__: The XMLParser() in " "xml.etree.ElementTree provides namespace prefix context to the parser target" @@ -4614,14 +5037,14 @@ msgid "" "Patch by Stefan Behnel." msgstr "" -#: ../../../build/NEWS:2379 +#: ../../../build/NEWS:2602 msgid "" "`bpo-36673 `__: The TreeBuilder and " "XMLPullParser in xml.etree.ElementTree gained support for parsing comments " "and processing instructions. Patch by Stefan Behnel." msgstr "" -#: ../../../build/NEWS:2383 +#: ../../../build/NEWS:2606 msgid "" "`bpo-36650 `__: The C version of " "functools.lru_cache() was treating calls with an empty ``**kwargs`` " @@ -4630,7 +5053,7 @@ msgid "" "miss." msgstr "" -#: ../../../build/NEWS:2388 +#: ../../../build/NEWS:2611 msgid "" "`bpo-28552 `__: Fix " ":mod:`distutils.sysconfig` if :data:`sys.executable` is ``None`` or an empty" @@ -4639,7 +5062,7 @@ msgid "" " or an empty string." msgstr "" -#: ../../../build/NEWS:2393 +#: ../../../build/NEWS:2616 msgid "" "`bpo-35755 `__: :func:`shutil.which` and" " :func:`distutils.spawn.find_executable` now use ``os.confstr(\"CS_PATH\")``" @@ -4649,13 +5072,13 @@ msgid "" "string." msgstr "" -#: ../../../build/NEWS:2400 +#: ../../../build/NEWS:2623 msgid "" "`bpo-25430 `__: improve performance of " "``IPNetwork.__contains__()``" msgstr "" -#: ../../../build/NEWS:2402 +#: ../../../build/NEWS:2625 msgid "" "`bpo-30485 `__: Path expressions in " "xml.etree.ElementTree can now avoid explicit namespace prefixes for tags (or" @@ -4663,20 +5086,20 @@ msgid "" "empty string prefix." msgstr "" -#: ../../../build/NEWS:2406 +#: ../../../build/NEWS:2629 msgid "" "`bpo-36613 `__: Fix :mod:`asyncio` " "wait() not removing callback if exception" msgstr "" -#: ../../../build/NEWS:2408 +#: ../../../build/NEWS:2631 msgid "" "`bpo-36598 `__: Fix ``isinstance`` check" " for Mock objects with spec when the code is executed under tracing. Patch " "by Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:2411 +#: ../../../build/NEWS:2634 msgid "" "`bpo-18748 `__: In development mode " "(:option:`-X` ``dev``) and in debug build, the :class:`io.IOBase` destructor" @@ -4684,7 +5107,7 @@ msgid "" "release mode." msgstr "" -#: ../../../build/NEWS:2415 +#: ../../../build/NEWS:2638 msgid "" "`bpo-36575 `__: The ``_lsprof`` module " "now uses internal timer same to ``time.perf_counter()`` by default. " @@ -4693,60 +5116,60 @@ msgid "" "updates since ``perf_counter()`` is monotonic. Patch by Inada Naoki." msgstr "" -#: ../../../build/NEWS:2421 +#: ../../../build/NEWS:2644 msgid "" "`bpo-33461 `__: ``json.loads`` now emits" " ``DeprecationWarning`` when ``encoding`` option is specified. Patch by " "Matthias Bussonnier." msgstr "" -#: ../../../build/NEWS:2424 +#: ../../../build/NEWS:2647 msgid "" "`bpo-36559 `__: The random module now " "prefers the lean internal _sha512 module over hashlib for seed(version=2) to" " optimize import time." msgstr "" -#: ../../../build/NEWS:2427 +#: ../../../build/NEWS:2650 msgid "" "`bpo-17561 `__: Set backlog=None as the " "default for socket.create_server." msgstr "" -#: ../../../build/NEWS:2429 +#: ../../../build/NEWS:2652 msgid "" "`bpo-34373 `__: Fix :func:`time.mktime` " "error handling on AIX for year before 1970." msgstr "" -#: ../../../build/NEWS:2432 +#: ../../../build/NEWS:2655 msgid "" "`bpo-36232 `__: Improve error message " "when trying to open existing DBM database that actually doesn't exist. Patch" " by Marco Rougeth." msgstr "" -#: ../../../build/NEWS:2435 +#: ../../../build/NEWS:2658 msgid "" "`bpo-36546 `__: Add " "statistics.quantiles()" msgstr "" -#: ../../../build/NEWS:2437 +#: ../../../build/NEWS:2660 msgid "" "`bpo-36050 `__: Optimized " "``http.client.HTTPResponse.read()`` for large response. Patch by Inada " "Naoki." msgstr "" -#: ../../../build/NEWS:2440 +#: ../../../build/NEWS:2663 msgid "" "`bpo-36522 `__: If *debuglevel* is set " "to >0 in :mod:`http.client`, print all values for headers with multiple " "values for the same header name. Patch by Matt Houglum." msgstr "" -#: ../../../build/NEWS:2444 +#: ../../../build/NEWS:2667 msgid "" "`bpo-36492 `__: Deprecated passing " "required arguments like *func* as keyword arguments in functions which " @@ -4756,13 +5179,13 @@ msgid "" "positional arguments." msgstr "" -#: ../../../build/NEWS:2450 +#: ../../../build/NEWS:2673 msgid "" "`bpo-27181 `__: Add " "statistics.geometric_mean()." msgstr "" -#: ../../../build/NEWS:2452 +#: ../../../build/NEWS:2675 msgid "" "`bpo-30427 `__: ``os.path.normcase()`` " "relies on ``os.fspath()`` to check the type of its argument. Redundant " @@ -4770,7 +5193,7 @@ msgid "" "``ntpath.normcase()`` implementations. Patch by Wolfgang Maier." msgstr "" -#: ../../../build/NEWS:2457 +#: ../../../build/NEWS:2680 msgid "" "`bpo-36385 `__: Stop rejecting IPv4 " "octets for being ambiguously octal. Leading zeros are ignored, and no longer" @@ -4778,25 +5201,25 @@ msgid "" "Octets must still be no more than three digits, including leading zeroes." msgstr "" -#: ../../../build/NEWS:2462 +#: ../../../build/NEWS:2685 msgid "" "`bpo-36434 `__: Errors during writing to" " a ZIP file no longer prevent to properly close it." msgstr "" -#: ../../../build/NEWS:2465 +#: ../../../build/NEWS:2688 msgid "" "`bpo-36407 `__: Fixed wrong indentation " "writing for CDATA section in xml.dom.minidom. Patch by Vladimir Surjaninov." msgstr "" -#: ../../../build/NEWS:2468 +#: ../../../build/NEWS:2691 msgid "" "`bpo-36326 `__: inspect.getdoc() can now" " find docstrings for member objects when __slots__ is a dictionary." msgstr "" -#: ../../../build/NEWS:2471 +#: ../../../build/NEWS:2694 msgid "" "`bpo-36366 `__: Calling ``stop()`` on an" " unstarted or stopped :func:`unittest.mock.patch` object will now return " @@ -4804,27 +5227,27 @@ msgid "" " Patch by Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:2476 +#: ../../../build/NEWS:2699 msgid "" "`bpo-36348 `__: The " ":meth:`imap.IMAP4.logout` method no longer ignores silently arbitrary " "exceptions." msgstr "" -#: ../../../build/NEWS:2479 +#: ../../../build/NEWS:2702 msgid "" "`bpo-31904 `__: Add time module support " "and fix test_time faiures for VxWorks." msgstr "" -#: ../../../build/NEWS:2481 +#: ../../../build/NEWS:2704 msgid "" "`bpo-36227 `__: Added support for " "keyword arguments `default_namespace` and `xml_declaration` in functions " "ElementTree.tostring() and ElementTree.tostringlist()." msgstr "" -#: ../../../build/NEWS:2485 +#: ../../../build/NEWS:2708 msgid "" "`bpo-36004 `__: Added new alternate " "constructors :meth:`datetime.date.fromisocalendar` and " @@ -4833,7 +5256,7 @@ msgid "" "``isocalendar`` method. Patch by Paul Ganssle." msgstr "" -#: ../../../build/NEWS:2491 +#: ../../../build/NEWS:2714 msgid "" "`bpo-35936 `__: :mod:`modulefinder` no " "longer depends on the deprecated :mod:`imp` module, and the initializer for " @@ -4841,21 +5264,21 @@ msgid "" "Patch by Brandt Bucher." msgstr "" -#: ../../../build/NEWS:2496 +#: ../../../build/NEWS:2719 msgid "" "`bpo-35376 `__: :mod:`modulefinder` " "correctly handles modules that have the same name as a bad package. Patch by" " Brandt Bucher." msgstr "" -#: ../../../build/NEWS:2499 +#: ../../../build/NEWS:2722 msgid "" "`bpo-17396 `__: :mod:`modulefinder` no " "longer crashes when encountering syntax errors in followed imports. Patch by" " Brandt Bucher." msgstr "" -#: ../../../build/NEWS:2502 +#: ../../../build/NEWS:2725 msgid "" "`bpo-35934 `__: Added " ":meth:`~socket.create_server()` and :meth:`~socket.has_dualstack_ipv6()` " @@ -4864,59 +5287,59 @@ msgid "" " on the same socket. (Contributed by Giampaolo Rodola in :issue:`17561`.)" msgstr "" -#: ../../../build/NEWS:2508 +#: ../../../build/NEWS:2731 msgid "" "`bpo-23078 `__: Add support for " ":func:`classmethod` and :func:`staticmethod` to " ":func:`unittest.mock.create_autospec`. Initial patch by Felipe Ochoa." msgstr "" -#: ../../../build/NEWS:2511 +#: ../../../build/NEWS:2734 msgid "" "`bpo-35416 `__: Fix potential resource " "warnings in distutils. Patch by Mickaël Schoentgen." msgstr "" -#: ../../../build/NEWS:2514 +#: ../../../build/NEWS:2737 msgid "" "`bpo-25451 `__: Add transparency methods" " to :class:`tkinter.PhotoImage`. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:2517 +#: ../../../build/NEWS:2740 msgid "" "`bpo-35082 `__: Don't return deleted " "attributes when calling dir on a :class:`unittest.mock.Mock`." msgstr "" -#: ../../../build/NEWS:2520 +#: ../../../build/NEWS:2743 msgid "" "`bpo-34547 `__: " ":class:`wsgiref.handlers.BaseHandler` now handles abrupt client connection " "terminations gracefully. Patch by Petter Strandmark." msgstr "" -#: ../../../build/NEWS:2523 +#: ../../../build/NEWS:2746 msgid "" "`bpo-31658 `__: :func:`xml.sax.parse` " "now supports :term:`path-like `. Patch by Mickaël " "Schoentgen." msgstr "" -#: ../../../build/NEWS:2526 +#: ../../../build/NEWS:2749 msgid "" "`bpo-34139 `__: Remove stale unix " "datagram socket before binding" msgstr "" -#: ../../../build/NEWS:2528 +#: ../../../build/NEWS:2751 msgid "" "`bpo-33530 `__: Implemented Happy " "Eyeballs in `asyncio.create_connection()`. Added two new arguments, " "*happy_eyeballs_delay* and *interleave*, to specify Happy Eyeballs behavior." msgstr "" -#: ../../../build/NEWS:2532 +#: ../../../build/NEWS:2755 msgid "" "`bpo-33291 `__: Do not raise " "AttributeError when calling the inspect functions isgeneratorfunction, " @@ -4924,43 +5347,43 @@ msgid "" "arbitrary callable. Instead, return False." msgstr "" -#: ../../../build/NEWS:2536 +#: ../../../build/NEWS:2759 msgid "" "`bpo-31310 `__: Fix the " "multiprocessing.semaphore_tracker so it is reused by child processes" msgstr "" -#: ../../../build/NEWS:2539 +#: ../../../build/NEWS:2762 msgid "" "`bpo-31292 `__: Fix ``setup.py check " "--restructuredtext`` for files containing ``include`` directives." msgstr "" -#: ../../../build/NEWS:2545 +#: ../../../build/NEWS:2768 msgid "" "`bpo-36625 `__: Remove obsolete comments" " from docstrings in fractions.Fraction" msgstr "" -#: ../../../build/NEWS:2547 +#: ../../../build/NEWS:2770 msgid "" "`bpo-30840 `__: Document relative " "imports" msgstr "" -#: ../../../build/NEWS:2549 +#: ../../../build/NEWS:2772 msgid "" "`bpo-36523 `__: Add docstring for " "io.IOBase.writelines()." msgstr "" -#: ../../../build/NEWS:2551 +#: ../../../build/NEWS:2774 msgid "" "`bpo-36425 `__: New documentation " "translation: `Simplified Chinese `_." msgstr "" -#: ../../../build/NEWS:2554 +#: ../../../build/NEWS:2777 msgid "" "`bpo-36345 `__: Avoid the duplication of" " code from ``Tools/scripts/serve.py`` in using the :rst:dir:`literalinclude`" @@ -4968,20 +5391,20 @@ msgid "" ":mod:`wsgiref`. Contributed by Stéphane Wirtel." msgstr "" -#: ../../../build/NEWS:2559 +#: ../../../build/NEWS:2782 msgid "" "`bpo-36345 `__: Using the code of the " "``Tools/scripts/serve.py`` script as an example in the :mod:`wsgiref` " "documentation. Contributed by Stéphane Wirtel." msgstr "" -#: ../../../build/NEWS:2563 +#: ../../../build/NEWS:2786 msgid "" "`bpo-36157 `__: Added Documention for " "PyInterpreterState_Main()." msgstr "" -#: ../../../build/NEWS:2565 +#: ../../../build/NEWS:2788 msgid "" "`bpo-33043 `__: Updates the " "docs.python.org page with the addition of a 'Contributing to Docs' link at " @@ -4990,26 +5413,26 @@ msgid "" "Documentation Bugs section." msgstr "" -#: ../../../build/NEWS:2570 +#: ../../../build/NEWS:2793 msgid "" "`bpo-35581 `__: @typing.type_check_only " "now allows type stubs to mark functions and classes not available during " "runtime." msgstr "" -#: ../../../build/NEWS:2573 +#: ../../../build/NEWS:2796 msgid "" "`bpo-33832 `__: Add glossary entry for " "'magic method'." msgstr "" -#: ../../../build/NEWS:2575 +#: ../../../build/NEWS:2798 msgid "" "`bpo-32913 `__: Added re.Match.groupdict" " example to regex HOWTO." msgstr "" -#: ../../../build/NEWS:2580 +#: ../../../build/NEWS:2803 msgid "" "`bpo-36719 `__: regrtest now always " "detects uncollectable objects. Previously, the check was only enabled by " @@ -5017,7 +5440,7 @@ msgid "" "``--findleaks`` becomes a deprecated alias to ``--fail-env-changed``." msgstr "" -#: ../../../build/NEWS:2585 +#: ../../../build/NEWS:2808 msgid "" "`bpo-36725 `__: When using " "mulitprocessing mode (-jN), regrtest now better reports errors if a worker " @@ -5025,7 +5448,7 @@ msgid "" "interrupted." msgstr "" -#: ../../../build/NEWS:2589 +#: ../../../build/NEWS:2812 msgid "" "`bpo-36454 `__: Change " "test_time.test_monotonic() to test only the lower bound of elapsed time " @@ -5033,38 +5456,38 @@ msgid "" " test failures on slow buildbots. Patch by Victor Stinner." msgstr "" -#: ../../../build/NEWS:2594 +#: ../../../build/NEWS:2817 msgid "" "`bpo-32424 `__: Improve test coverage " "for xml.etree.ElementTree. Patch by Gordon P. Hemsley." msgstr "" -#: ../../../build/NEWS:2597 +#: ../../../build/NEWS:2820 msgid "" "`bpo-32424 `__: Fix typo in " "test_cyclic_gc() test for xml.etree.ElementTree. Patch by Gordon P. Hemsley." msgstr "" -#: ../../../build/NEWS:2600 +#: ../../../build/NEWS:2823 msgid "" "`bpo-36635 `__: Add a new " ":mod:`_testinternalcapi` module to test the internal C API." msgstr "" -#: ../../../build/NEWS:2603 +#: ../../../build/NEWS:2826 msgid "" "`bpo-36629 `__: Fix " "``test_imap4_host_default_value()`` of ``test_imaplib``: catch also " ":data:`errno.ENETUNREACH` error." msgstr "" -#: ../../../build/NEWS:2606 +#: ../../../build/NEWS:2829 msgid "" "`bpo-36611 `__: Fix " "``test_sys.test_getallocatedblocks()`` when :mod:`tracemalloc` is enabled." msgstr "" -#: ../../../build/NEWS:2609 +#: ../../../build/NEWS:2832 msgid "" "`bpo-36560 `__: Fix reference leak " "hunting in regrtest: compute also deltas (of reference count, allocated " @@ -5072,61 +5495,61 @@ msgid "" "everything is initialized before starting to hunt reference leaks." msgstr "" -#: ../../../build/NEWS:2614 +#: ../../../build/NEWS:2837 msgid "" "`bpo-36565 `__: Fix reference hunting " "(``python3 -m test -R 3:3``) when Python has no built-in abc module." msgstr "" -#: ../../../build/NEWS:2617 +#: ../../../build/NEWS:2840 msgid "" "`bpo-31904 `__: Port test_resource to " "VxWorks: skip tests cases setting RLIMIT_FSIZE and RLIMIT_CPU." msgstr "" -#: ../../../build/NEWS:2620 +#: ../../../build/NEWS:2843 msgid "" "`bpo-31904 `__: Fix test_tabnanny on " "VxWorks: adjust ENOENT error message." msgstr "" -#: ../../../build/NEWS:2622 +#: ../../../build/NEWS:2845 msgid "" "`bpo-36436 `__: Fix " "``_testcapi.pymem_buffer_overflow()``: handle memory allocation failure." msgstr "" -#: ../../../build/NEWS:2625 +#: ../../../build/NEWS:2848 msgid "" "`bpo-31904 `__: Fix test_utf8_mode on " "VxWorks: Python always use UTF-8 on VxWorks." msgstr "" -#: ../../../build/NEWS:2628 +#: ../../../build/NEWS:2851 msgid "" "`bpo-36341 `__: Fix tests that may fail " "with PermissionError upon calling bind() on AF_UNIX sockets." msgstr "" -#: ../../../build/NEWS:2634 +#: ../../../build/NEWS:2857 msgid "" "`bpo-36747 `__: Remove the stale " "scriptsinstall Makefile target." msgstr "" -#: ../../../build/NEWS:2636 +#: ../../../build/NEWS:2859 msgid "" "`bpo-21536 `__: On Unix, C extensions " "are no longer linked to libpython except on Android and Cygwin." msgstr "" -#: ../../../build/NEWS:2639 +#: ../../../build/NEWS:2862 msgid "" "It is now possible for a statically linked Python to load a C extension " "built using a shared library Python." msgstr "" -#: ../../../build/NEWS:2642 +#: ../../../build/NEWS:2865 msgid "" "When Python is embedded, ``libpython`` must not be loaded with " "``RTLD_LOCAL``, but ``RTLD_GLOBAL`` instead. Previously, using " @@ -5135,11 +5558,11 @@ msgid "" "built by the ``*shared*`` section of ``Modules/Setup``." msgstr "" -#: ../../../build/NEWS:2648 +#: ../../../build/NEWS:2871 msgid "distutils, python-config and python-config.py have been modified." msgstr "distutils, python-config dan python-config.py telah dimodifikasi." -#: ../../../build/NEWS:2650 +#: ../../../build/NEWS:2873 msgid "" "`bpo-36707 `__: ``./configure --with-" "pymalloc`` no longer adds the ``m`` flag to SOABI " @@ -5147,7 +5570,7 @@ msgid "" " on the ABI." msgstr "" -#: ../../../build/NEWS:2654 +#: ../../../build/NEWS:2877 msgid "" "`bpo-36635 `__: Change " "``PyAPI_FUNC(type)``, ``PyAPI_DATA(type)`` and ``PyMODINIT_FUNC`` macros of " @@ -5157,13 +5580,13 @@ msgid "" "function in DLL exports on Windows." msgstr "" -#: ../../../build/NEWS:2660 +#: ../../../build/NEWS:2883 msgid "" "`bpo-31904 `__: Don't build the " "``_crypt`` extension on VxWorks." msgstr "" -#: ../../../build/NEWS:2662 +#: ../../../build/NEWS:2885 msgid "" "`bpo-36618 `__: Add ``-fmax-type-" "align=8`` to CFLAGS when clang compiler is detected. The pymalloc memory " @@ -5176,13 +5599,13 @@ msgid "" "can have the same issue." msgstr "" -#: ../../../build/NEWS:2671 +#: ../../../build/NEWS:2894 msgid "" "`bpo-36605 `__: ``make tags`` and ``make" " TAGS`` now also parse ``Modules/_io/*.c`` and ``Modules/_io/*.h``." msgstr "" -#: ../../../build/NEWS:2674 +#: ../../../build/NEWS:2897 msgid "" "`bpo-36465 `__: Release builds and debug" " builds are now ABI compatible: defining the ``Py_DEBUG`` macro no longer " @@ -5193,33 +5616,33 @@ msgid "" "option." msgstr "" -#: ../../../build/NEWS:2681 +#: ../../../build/NEWS:2904 msgid "" "`bpo-36577 `__: setup.py now correctly " "reports missing OpenSSL headers and libraries again." msgstr "" -#: ../../../build/NEWS:2684 +#: ../../../build/NEWS:2907 msgid "" "`bpo-36544 `__: Fix regression " "introduced in `bpo-36146 `__ refactoring" " setup.py" msgstr "" -#: ../../../build/NEWS:2686 +#: ../../../build/NEWS:2909 msgid "" "`bpo-36508 `__: ``python-config " "--ldflags`` no longer includes flags of the ``LINKFORSHARED`` variable. The " "``LINKFORSHARED`` variable must only be used to build executables." msgstr "" -#: ../../../build/NEWS:2690 +#: ../../../build/NEWS:2913 msgid "" "`bpo-36503 `__: Remove references to " "\"aix3\" and \"aix4\". Patch by M. Felt." msgstr "" -#: ../../../build/NEWS:2695 +#: ../../../build/NEWS:2918 msgid "" "`bpo-35920 `__: Added " "platform.win32_edition() and platform.win32_is_iot(). Added support for " @@ -5227,20 +5650,20 @@ msgid "" " to work on Windows IoT Core ARM32." msgstr "" -#: ../../../build/NEWS:2699 +#: ../../../build/NEWS:2922 msgid "" "`bpo-36649 `__: Remove trailing spaces " "for registry keys when installed via the Store." msgstr "" -#: ../../../build/NEWS:2702 +#: ../../../build/NEWS:2925 msgid "" "`bpo-34144 `__: Fixed activate.bat to " "correctly update codepage when chcp.com returns dots in output. Patch by " "Lorenz Mende." msgstr "" -#: ../../../build/NEWS:2705 +#: ../../../build/NEWS:2928 msgid "" "`bpo-36509 `__: Added preset-iot layout " "for Windows IoT ARM containers. This layout doesn't contain UI components " @@ -5248,7 +5671,7 @@ msgid "" "builds since Windows ARM32 builds must be cross-compiled when using MSVC." msgstr "" -#: ../../../build/NEWS:2710 +#: ../../../build/NEWS:2933 msgid "" "`bpo-35941 `__: enum_certificates " "function of the ssl module now returns certificates from all available " @@ -5261,26 +5684,26 @@ msgid "" "revocation list stores." msgstr "" -#: ../../../build/NEWS:2720 +#: ../../../build/NEWS:2943 msgid "" "`bpo-36441 `__: Fixes creating a venv " "when debug binaries are installed." msgstr "" -#: ../../../build/NEWS:2722 +#: ../../../build/NEWS:2945 msgid "" "`bpo-36085 `__: Enable better DLL " "resolution on Windows by using safe DLL search paths and adding " ":func:`os.add_dll_directory`." msgstr "" -#: ../../../build/NEWS:2725 +#: ../../../build/NEWS:2948 msgid "" "`bpo-36010 `__: Add the venv standard " "library module to the nuget distribution for Windows." msgstr "" -#: ../../../build/NEWS:2728 +#: ../../../build/NEWS:2951 msgid "" "`bpo-29515 `__: Add the following socket" " module constants on Windows: IPPROTO_AH IPPROTO_CBT IPPROTO_DSTOPTS " @@ -5291,28 +5714,28 @@ msgid "" " IPPROTO_ST" msgstr "" -#: ../../../build/NEWS:2736 +#: ../../../build/NEWS:2959 msgid "" "`bpo-35947 `__: Added current version of" " libffi to cpython-source-deps. Change _ctypes to use current version of " "libffi on Windows." msgstr "" -#: ../../../build/NEWS:2739 +#: ../../../build/NEWS:2962 msgid "" "`bpo-34060 `__: Report system load when " "running test suite on Windows. Patch by Ammar Askar. Based on prior work by " "Jeremy Kloth." msgstr "" -#: ../../../build/NEWS:2742 +#: ../../../build/NEWS:2965 msgid "" "`bpo-31512 `__: With the Windows 10 " "Creators Update, non-elevated users can now create symlinks as long as the " "computer has Developer Mode enabled." msgstr "" -#: ../../../build/NEWS:2748 +#: ../../../build/NEWS:2971 msgid "" "`bpo-34602 `__: Avoid failures setting " "macOS stack resource limit with resource.setrlimit. This reverts an earlier " @@ -5320,27 +5743,27 @@ msgid "" "non-default stack size when building the interpreter executable on macOS." msgstr "" -#: ../../../build/NEWS:2756 +#: ../../../build/NEWS:2979 msgid "" "`bpo-36429 `__: Fix starting IDLE with " "pyshell. Add idlelib.pyshell alias at top; remove pyshell alias at bottom. " "Remove obsolete __name__=='__main__' command." msgstr "" -#: ../../../build/NEWS:2763 +#: ../../../build/NEWS:2986 msgid "" "`bpo-14546 `__: Fix the argument " "handling in Tools/scripts/lll.py." msgstr "" -#: ../../../build/NEWS:2768 +#: ../../../build/NEWS:2991 msgid "" "`bpo-36763 `__: Fix memory leak in " ":c:func:`Py_SetStandardStreamEncoding`: release memory if the function is " "called twice." msgstr "" -#: ../../../build/NEWS:2771 +#: ../../../build/NEWS:2994 msgid "" "`bpo-36641 `__: " ":c:macro:`PyDoc_VAR(name)` and :c:macro:`PyDoc_STRVAR(name,str)` now create " @@ -5348,7 +5771,7 @@ msgid "" "Inada Naoki." msgstr "" -#: ../../../build/NEWS:2775 +#: ../../../build/NEWS:2998 msgid "" "`bpo-36389 `__: Change the value of " "``CLEANBYTE``, ``DEADDYTE`` and ``FORBIDDENBYTE`` internal constants used by" @@ -5358,7 +5781,7 @@ msgid "" " debug ``malloc()`` and ``free()``." msgstr "" -#: ../../../build/NEWS:2782 +#: ../../../build/NEWS:3005 msgid "" "`bpo-36443 `__: Since Python 3.7.0, " "calling :c:func:`Py_DecodeLocale` before :c:func:`Py_Initialize` produces " @@ -5369,7 +5792,7 @@ msgid "" "``_PyPreConfig``." msgstr "" -#: ../../../build/NEWS:2789 +#: ../../../build/NEWS:3012 msgid "" "`bpo-36025 `__: Fixed an accidental " "change to the datetime C API where the arguments to the " @@ -5379,7 +5802,7 @@ msgid "" "only present in alpha releases of Python 3.8. Patch by Paul Ganssle." msgstr "" -#: ../../../build/NEWS:2796 +#: ../../../build/NEWS:3019 msgid "" "`bpo-35810 `__: Modify ``PyObject_Init``" " to correctly increase the refcount of heap- allocated Type objects. Also " @@ -5387,15 +5810,15 @@ msgid "" "manually or not decreasing the type's refcount in tp_dealloc" msgstr "" -#: ../../../build/NEWS:2803 +#: ../../../build/NEWS:3026 msgid "Python 3.8.0 alpha 3" msgstr "Python 3.8.0 alfa 3" -#: ../../../build/NEWS:2805 +#: ../../../build/NEWS:3028 msgid "*Release date: 2019-03-25*" msgstr "*Tanggal rilis: 2019-03-25*" -#: ../../../build/NEWS:2810 +#: ../../../build/NEWS:3033 msgid "" "`bpo-36216 `__: Changes urlsplit() to " "raise ValueError when the URL contains characters that decompose under IDNA " @@ -5403,7 +5826,7 @@ msgid "" "parsed." msgstr "" -#: ../../../build/NEWS:2814 +#: ../../../build/NEWS:3037 msgid "" "`bpo-35121 `__: Don't send cookies of " "domain A without Domain attribute to domain B when domain A is a suffix " @@ -5412,84 +5835,84 @@ msgid "" "Singaravelan." msgstr "" -#: ../../../build/NEWS:2822 +#: ../../../build/NEWS:3045 msgid "" "`bpo-36421 `__: Fix a possible double " "decref in _ctypes.c's ``PyCArrayType_new()``." msgstr "" -#: ../../../build/NEWS:2825 +#: ../../../build/NEWS:3048 msgid "" "`bpo-36412 `__: Fix a possible crash " "when creating a new dictionary." msgstr "" -#: ../../../build/NEWS:2827 +#: ../../../build/NEWS:3050 msgid "" "`bpo-36398 `__: Fix a possible crash in " "``structseq_repr()``." msgstr "" -#: ../../../build/NEWS:2829 +#: ../../../build/NEWS:3052 msgid "" "`bpo-36256 `__: Fix bug in parsermodule " "when parsing a state in a DFA that has two or more arcs with labels of the " "same type. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:2832 +#: ../../../build/NEWS:3055 msgid "" "`bpo-36365 `__: repr(structseq) is no " "longer limited to 512 bytes." msgstr "" -#: ../../../build/NEWS:2834 +#: ../../../build/NEWS:3057 msgid "" "`bpo-36374 `__: Fix a possible null " "pointer dereference in ``merge_consts_recursive()``. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:2837 +#: ../../../build/NEWS:3060 msgid "" "`bpo-36236 `__: At Python " "initialization, the current directory is no longer prepended to " ":data:`sys.path` if it has been removed." msgstr "" -#: ../../../build/NEWS:2840 +#: ../../../build/NEWS:3063 msgid "" "`bpo-36352 `__: Python initialization " "now fails with an error, rather than silently truncating paths, if a path is" " too long." msgstr "" -#: ../../../build/NEWS:2843 +#: ../../../build/NEWS:3066 msgid "" "`bpo-36301 `__: Python initialization " "now fails if decoding ``pybuilddir.txt`` configuration file fails at " "startup." msgstr "" -#: ../../../build/NEWS:2846 +#: ../../../build/NEWS:3069 msgid "" "`bpo-36333 `__: Fix leak in " "_PyRuntimeState_Fini. Contributed by Stéphane Wirtel." msgstr "" -#: ../../../build/NEWS:2849 +#: ../../../build/NEWS:3072 msgid "" "`bpo-36332 `__: The builtin " ":func:`compile` can now handle AST objects that contain assignment " "expressions. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:2852 +#: ../../../build/NEWS:3075 msgid "" "`bpo-36282 `__: Improved error message " "for too much positional arguments in some builtin functions." msgstr "" -#: ../../../build/NEWS:2855 +#: ../../../build/NEWS:3078 msgid "" "`bpo-30040 `__: New empty dict uses " "fewer memory for now. It used more memory than empty dict created by " @@ -5497,7 +5920,7 @@ msgid "" " Patch by Inada Naoki." msgstr "" -#: ../../../build/NEWS:2859 +#: ../../../build/NEWS:3082 msgid "" "`bpo-36262 `__: Fix an unlikely memory " "leak on conversion from string to float in the function ``_Py_dg_strtod()`` " @@ -5505,27 +5928,27 @@ msgid "" ":func:`marshal.load`, etc." msgstr "" -#: ../../../build/NEWS:2863 +#: ../../../build/NEWS:3086 msgid "" "`bpo-36252 `__: Update Unicode databases" " to version 12.0.0." msgstr "" -#: ../../../build/NEWS:2865 +#: ../../../build/NEWS:3088 msgid "" "`bpo-36218 `__: Fix a segfault occurring" " when sorting a list of heterogeneous values. Patch contributed by Rémi " "Lapeyre and Elliot Gorokhovsky." msgstr "" -#: ../../../build/NEWS:2868 +#: ../../../build/NEWS:3091 msgid "" "`bpo-36188 `__: Cleaned up left-over " "vestiges of Python 2 unbound method handling in method objects and " "documentation. Patch by Martijn Pieters" msgstr "" -#: ../../../build/NEWS:2871 +#: ../../../build/NEWS:3094 msgid "" "`bpo-36124 `__: Add a new interpreter-" "specific dict and expose it in the C-API via PyInterpreterState_GetDict(). " @@ -5534,7 +5957,7 @@ msgid "" "state." msgstr "" -#: ../../../build/NEWS:2876 +#: ../../../build/NEWS:3099 msgid "" "`bpo-35975 `__: Add a " "``feature_version`` flag to ``ast.parse()`` (documented) and ``compile()`` " @@ -5546,13 +5969,13 @@ msgid "" "recognizes.)" msgstr "" -#: ../../../build/NEWS:2884 +#: ../../../build/NEWS:3107 msgid "" "`bpo-31904 `__: Use UTF-8 as the system " "encoding on VxWorks." msgstr "" -#: ../../../build/NEWS:2886 +#: ../../../build/NEWS:3109 msgid "" "`bpo-36048 `__: The " ":meth:`~object.__index__` special method will be used instead of " @@ -5561,19 +5984,19 @@ msgid "" "deprecated." msgstr "" -#: ../../../build/NEWS:2891 +#: ../../../build/NEWS:3114 msgid "" "`bpo-35808 `__: Retire pgen and use a " "modified version of pgen2 to generate the parser. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:2897 +#: ../../../build/NEWS:3120 msgid "" "`bpo-36401 `__: The class documentation " "created by pydoc now has a separate section for readonly properties." msgstr "" -#: ../../../build/NEWS:2900 +#: ../../../build/NEWS:3123 msgid "" "`bpo-36320 `__: The typing.NamedTuple() " "class has deprecated the _field_types attribute in favor of the " @@ -5581,20 +6004,20 @@ msgid "" "attributes were converted from OrderedDict to a regular dict." msgstr "" -#: ../../../build/NEWS:2905 +#: ../../../build/NEWS:3128 msgid "" "`bpo-34745 `__: Fix :mod:`asyncio` ssl " "memory issues caused by circular references" msgstr "" -#: ../../../build/NEWS:2908 +#: ../../../build/NEWS:3131 msgid "" "`bpo-36324 `__: Add method to " "statistics.NormalDist for computing the inverse cumulative normal " "distribution." msgstr "" -#: ../../../build/NEWS:2911 +#: ../../../build/NEWS:3134 msgid "" "`bpo-36321 `__: collections.namedtuple()" " misspelled the name of an attribute. To be consistent with " @@ -5604,64 +6027,64 @@ msgid "" "future." msgstr "" -#: ../../../build/NEWS:2917 +#: ../../../build/NEWS:3140 msgid "" "`bpo-36297 `__: \"unicode_internal\" " "codec is removed. It was deprecated since Python 3.3. Patch by Inada Naoki." msgstr "" -#: ../../../build/NEWS:2920 +#: ../../../build/NEWS:3143 msgid "" "`bpo-36298 `__: Raise " "ModuleNotFoundError in pyclbr when a module can't be found. Thanks to " "'mental' for the bug report." msgstr "" -#: ../../../build/NEWS:2923 +#: ../../../build/NEWS:3146 msgid "" "`bpo-36268 `__: Switch the default " "format used for writing tars with mod:`tarfile` to the modern POSIX.1-2001 " "pax standard, from the vendor-specific GNU. Contributed by C.A.M. Gerlach." msgstr "" -#: ../../../build/NEWS:2927 +#: ../../../build/NEWS:3150 msgid "" "`bpo-36285 `__: Fix integer overflows in" " the array module. Patch by Stephan Hohe." msgstr "" -#: ../../../build/NEWS:2930 +#: ../../../build/NEWS:3153 msgid "" "`bpo-31904 `__: Add _signal module " "support for VxWorks." msgstr "" -#: ../../../build/NEWS:2932 +#: ../../../build/NEWS:3155 msgid "" "`bpo-36272 `__: :mod:`logging` does not " "silently ignore RecursionError anymore. Patch contributed by Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:2935 +#: ../../../build/NEWS:3158 msgid "" "`bpo-36280 `__: Add a kind field to " "ast.Constant. It is 'u' if the literal has a 'u' prefix (i.e. a Python 2 " "style unicode literal), else None." msgstr "" -#: ../../../build/NEWS:2938 +#: ../../../build/NEWS:3161 msgid "" "`bpo-35931 `__: The :mod:`pdb` ``debug``" " command now gracefully handles all exceptions." msgstr "" -#: ../../../build/NEWS:2941 +#: ../../../build/NEWS:3164 msgid "" "`bpo-36251 `__: Fix format strings used " "for stderrprinter and re.Match reprs. Patch by Stephan Hohe." msgstr "" -#: ../../../build/NEWS:2944 +#: ../../../build/NEWS:3167 msgid "" "`bpo-36235 `__: Fix ``CFLAGS`` in " "``customize_compiler()`` of ``distutils.sysconfig``: when the ``CFLAGS`` " @@ -5669,79 +6092,79 @@ msgid "" " ``OPT`` variable anymore. Initial patch written by David Malcolm." msgstr "" -#: ../../../build/NEWS:2949 +#: ../../../build/NEWS:3172 msgid "" "`bpo-35807 `__: Update ensurepip to " "install pip 19.0.3 and setuptools 40.8.0." msgstr "" -#: ../../../build/NEWS:2951 +#: ../../../build/NEWS:3174 msgid "" "`bpo-36139 `__: Release GIL when closing" " :class:`~mmap.mmap` objects." msgstr "" -#: ../../../build/NEWS:2953 +#: ../../../build/NEWS:3176 msgid "" "`bpo-36179 `__: Fix two unlikely " "reference leaks in _hashopenssl. The leaks only occur in out-of-memory " "cases." msgstr "" -#: ../../../build/NEWS:2956 +#: ../../../build/NEWS:3179 msgid "" "`bpo-36169 `__: Add overlap() method to " "statistics.NormalDist. Computes the overlapping coefficient for two normal " "distributions." msgstr "" -#: ../../../build/NEWS:2959 +#: ../../../build/NEWS:3182 msgid "" "`bpo-36103 `__: Default buffer size used" " by ``shutil.copyfileobj()`` is changed from 16 KiB to 64 KiB on non-Windows" " platform to reduce system call overhead. Contributed by Inada Naoki." msgstr "" -#: ../../../build/NEWS:2963 +#: ../../../build/NEWS:3186 msgid "" "`bpo-36130 `__: Fix ``pdb`` with " "``skip=...`` when stepping into a frame without a ``__name__`` global. " "Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:2966 +#: ../../../build/NEWS:3189 msgid "" "`bpo-35652 `__: " "shutil.copytree(copy_function=...) erroneously pass DirEntry instead of a " "path string." msgstr "" -#: ../../../build/NEWS:2969 +#: ../../../build/NEWS:3192 msgid "" "`bpo-35178 `__: Ensure custom " ":func:`warnings.formatwarning` function can receive `line` as positional " "argument. Based on patch by Tashrif Billah." msgstr "" -#: ../../../build/NEWS:2972 +#: ../../../build/NEWS:3195 msgid "" "`bpo-36106 `__: Resolve potential name " "clash with libm's sinpi(). Patch by Dmitrii Pasechnik." msgstr "" -#: ../../../build/NEWS:2975 +#: ../../../build/NEWS:3198 msgid "" "`bpo-36091 `__: Clean up reference to " "async generator in Lib/types. Patch by Henry Chen." msgstr "" -#: ../../../build/NEWS:2978 +#: ../../../build/NEWS:3201 msgid "" "`bpo-36043 `__: :class:`FileCookieJar` " "supports :term:`path-like object`. Contributed by Stéphane Wirtel" msgstr "" -#: ../../../build/NEWS:2981 +#: ../../../build/NEWS:3204 msgid "" "`bpo-35899 `__: Enum has been fixed to " "correctly handle empty strings and strings with non-Latin characters (ie. " @@ -5749,13 +6172,13 @@ msgid "" "by Stéphane Wirtel." msgstr "" -#: ../../../build/NEWS:2985 +#: ../../../build/NEWS:3208 msgid "" "`bpo-21269 `__: Add ``args`` and " "``kwargs`` properties to mock call objects. Contributed by Kumar Akshay." msgstr "" -#: ../../../build/NEWS:2988 +#: ../../../build/NEWS:3211 msgid "" "`bpo-30670 `__: `pprint.pp` has been " "added to pretty-print objects with dictionary keys being sorted with their " @@ -5764,87 +6187,87 @@ msgid "" " Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:2993 +#: ../../../build/NEWS:3216 msgid "" "`bpo-35843 `__: Implement " "``__getitem__`` for ``_NamespacePath``. Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:2996 +#: ../../../build/NEWS:3219 msgid "" "`bpo-35802 `__: Clean up code which " "checked presence of ``os.stat`` / ``os.lstat`` / ``os.chmod`` which are " "always present. Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:3000 +#: ../../../build/NEWS:3223 msgid "" "`bpo-35715 `__: Librates the return " "value of a ProcessPoolExecutor _process_worker after it's no longer needed " "to free memory" msgstr "" -#: ../../../build/NEWS:3003 +#: ../../../build/NEWS:3226 msgid "" "`bpo-35493 `__: Use " ":func:`multiprocessing.connection.wait` instead of polling each 0.2 seconds " "for worker updates in :class:`multiprocessing.Pool`. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:3007 +#: ../../../build/NEWS:3230 msgid "" "`bpo-35661 `__: Store the venv prompt in" " pyvenv.cfg." msgstr "" -#: ../../../build/NEWS:3009 +#: ../../../build/NEWS:3232 msgid "" "`bpo-35121 `__: Don't set cookie for a " "request when the request path is a prefix match of the cookie's path " "attribute but doesn't end with \"/\". Patch by Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:3013 +#: ../../../build/NEWS:3236 msgid "" "`bpo-21478 `__: Calls to a child " "function created with :func:`unittest.mock.create_autospec` should propagate" " to the parent. Patch by Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:3017 +#: ../../../build/NEWS:3240 msgid "" "`bpo-35198 `__: Fix C++ extension " "compilation on AIX" msgstr "" -#: ../../../build/NEWS:3022 +#: ../../../build/NEWS:3245 msgid "" "`bpo-36329 `__: Declare the path of the " "Python binary for the usage of ``Tools/scripts/serve.py`` when executing " "``make -C Doc/ serve``. Contributed by Stéphane Wirtel" msgstr "" -#: ../../../build/NEWS:3026 +#: ../../../build/NEWS:3249 msgid "" "`bpo-36138 `__: Improve documentation " "about converting datetime.timedelta to scalars." msgstr "" -#: ../../../build/NEWS:3029 +#: ../../../build/NEWS:3252 msgid "" "`bpo-21314 `__: A new entry was added to" " the Core Language Section of the Programming FAQ, which explaines the usage" " of slash(/) in the signature of a function. Patch by Lysandros Nikolaou" msgstr "" -#: ../../../build/NEWS:3036 +#: ../../../build/NEWS:3259 msgid "" "`bpo-36234 `__: " "test_posix.PosixUidGidTests: add tests for invalid uid/gid type (str). " "Initial patch written by David Malcolm." msgstr "" -#: ../../../build/NEWS:3039 +#: ../../../build/NEWS:3262 msgid "" "`bpo-29571 `__: Fix " "``test_re.test_locale_flag()``: use ``locale.getpreferredencoding()`` " @@ -5852,164 +6275,164 @@ msgid "" "locales, ``locale.getlocale()`` returns the wrong encoding." msgstr "" -#: ../../../build/NEWS:3044 +#: ../../../build/NEWS:3267 msgid "" "`bpo-36123 `__: Fix race condition in " "test_socket." msgstr "" -#: ../../../build/NEWS:3049 +#: ../../../build/NEWS:3272 msgid "" "`bpo-36356 `__: Fix leaks that led to " "build failure when configured with address sanitizer." msgstr "" -#: ../../../build/NEWS:3052 +#: ../../../build/NEWS:3275 msgid "" "`bpo-36146 `__: Add ``TEST_EXTENSIONS`` " "constant to ``setup.py`` to allow to not build test extensions like " "``_testcapi``." msgstr "" -#: ../../../build/NEWS:3055 +#: ../../../build/NEWS:3278 msgid "" "`bpo-36146 `__: Fix setup.py on macOS: " "only add ``/usr/include/ffi`` to include directories of _ctypes, not for all" " extensions." msgstr "" -#: ../../../build/NEWS:3058 +#: ../../../build/NEWS:3281 msgid "" "`bpo-31904 `__: Enable build system to " "cross-build for VxWorks RTOS." msgstr "" -#: ../../../build/NEWS:3063 +#: ../../../build/NEWS:3286 msgid "" "`bpo-36312 `__: Fixed decoders for the " "following code pages: 50220, 50221, 50222, 50225, 50227, 50229, 57002 " "through 57011, 65000 and 42." msgstr "" -#: ../../../build/NEWS:3066 +#: ../../../build/NEWS:3289 msgid "" "`bpo-36264 `__: Don't honor POSIX " "``HOME`` in ``os.path.expanduser`` on windows. Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:3069 +#: ../../../build/NEWS:3292 msgid "" "`bpo-24643 `__: Fix name collisions due " "to ``#define timezone _timezone`` in PC/pyconfig.h." msgstr "" -#: ../../../build/NEWS:3075 +#: ../../../build/NEWS:3298 msgid "" "`bpo-36405 `__: Use dict unpacking in " "idlelib." msgstr "" -#: ../../../build/NEWS:3077 +#: ../../../build/NEWS:3300 msgid "" "`bpo-36396 `__: Remove fgBg param of " "idlelib.config.GetHighlight(). This param was only used twice and changed " "the return type." msgstr "" -#: ../../../build/NEWS:3080 +#: ../../../build/NEWS:3303 msgid "" "`bpo-36176 `__: Fix IDLE autocomplete & " "calltip popup colors. Prevent conflicts with Linux dark themes (and slightly" " darken calltip background)." msgstr "" -#: ../../../build/NEWS:3083 +#: ../../../build/NEWS:3306 msgid "" "`bpo-23205 `__: For the grep module, add" " tests for findfiles, refactor findfiles to be a module-level function, and " "refactor findfiles to use os.walk." msgstr "" -#: ../../../build/NEWS:3087 +#: ../../../build/NEWS:3310 msgid "" "`bpo-23216 `__: Add docstrings to IDLE " "search modules." msgstr "" -#: ../../../build/NEWS:3089 +#: ../../../build/NEWS:3312 msgid "" "`bpo-36152 `__: Remove " "colorizer.ColorDelegator.close_when_done and the corresponding argument of " ".close(). In IDLE, both have always been None or False since 2007." msgstr "" -#: ../../../build/NEWS:3093 +#: ../../../build/NEWS:3316 msgid "" "`bpo-32129 `__: Avoid blurry IDLE " "application icon on macOS with Tk 8.6. Patch by Kevin Walzer." msgstr "" -#: ../../../build/NEWS:3096 +#: ../../../build/NEWS:3319 msgid "" "`bpo-36096 `__: Refactor class variables" " to instance variables in colorizer." msgstr "" -#: ../../../build/NEWS:3098 +#: ../../../build/NEWS:3321 msgid "" "`bpo-30348 `__: Increase test coverage " "of idlelib.autocomplete by 30%. Patch by Louie Lu" msgstr "" -#: ../../../build/NEWS:3104 +#: ../../../build/NEWS:3327 msgid "" "`bpo-35132 `__: Fix py-list and py-bt " "commands of python-gdb.py on gdb7." msgstr "" -#: ../../../build/NEWS:3106 +#: ../../../build/NEWS:3329 msgid "" "`bpo-32217 `__: Fix freeze script on " "Windows." msgstr "" -#: ../../../build/NEWS:3111 +#: ../../../build/NEWS:3334 msgid "" "`bpo-36381 `__: Raise " "``DeprecationWarning`` when '#' formats are used for building or parsing " "values without ``PY_SSIZE_T_CLEAN``." msgstr "" -#: ../../../build/NEWS:3114 +#: ../../../build/NEWS:3337 msgid "" "`bpo-36142 `__: The whole coreconfig.h " "header is now excluded from Py_LIMITED_API. Move functions definitions into " "a new internal pycore_coreconfig.h header." msgstr "" -#: ../../../build/NEWS:3120 +#: ../../../build/NEWS:3343 msgid "Python 3.8.0 alpha 2" msgstr "Python 3.8.0 alfa 2" -#: ../../../build/NEWS:3122 +#: ../../../build/NEWS:3345 msgid "*Release date: 2019-02-25*" msgstr "*Tanggal rilis: 2019-02-25*" -#: ../../../build/NEWS:3127 +#: ../../../build/NEWS:3350 msgid "" "`bpo-36052 `__: Raise a " ":exc:`SyntaxError` when assigning a value to `__debug__` with the Assignment" " Operator. Contributed by Stéphane Wirtel and Pablo Galindo." msgstr "" -#: ../../../build/NEWS:3131 +#: ../../../build/NEWS:3354 msgid "" "`bpo-36012 `__: Doubled the speed of " "class variable writes. When a non-dunder attribute was updated, there was " "an unnecessary call to update slots." msgstr "" -#: ../../../build/NEWS:3134 +#: ../../../build/NEWS:3357 msgid "" "`bpo-35942 `__: The error message " "emitted when returning invalid types from ``__fspath__`` in interfaces that " @@ -6017,14 +6440,14 @@ msgid "" "does explain the origin of the error." msgstr "" -#: ../../../build/NEWS:3138 +#: ../../../build/NEWS:3361 msgid "" "`bpo-36016 `__: ``gc.get_objects`` can " "now receive an optional parameter indicating a generation to get objects " "from. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:3141 +#: ../../../build/NEWS:3364 msgid "" "`bpo-1054041 `__: When the main " "interpreter exits due to an uncaught KeyboardInterrupt, the process now " @@ -6033,33 +6456,33 @@ msgid "" "to understand that the user has asked them to stop." msgstr "" -#: ../../../build/NEWS:3147 +#: ../../../build/NEWS:3370 msgid "" "`bpo-35992 `__: Fix " "``__class_getitem__()`` not being called on a class with a custom non-" "subscriptable metaclass." msgstr "" -#: ../../../build/NEWS:3150 +#: ../../../build/NEWS:3373 msgid "" "`bpo-35993 `__: Fix a crash on fork when" " using subinterpreters. Contributed by Stéphane Wirtel" msgstr "" -#: ../../../build/NEWS:3153 +#: ../../../build/NEWS:3376 msgid "" "`bpo-35991 `__: Fix a potential double " "free in Modules/_randommodule.c." msgstr "" -#: ../../../build/NEWS:3155 +#: ../../../build/NEWS:3378 msgid "" "`bpo-35961 `__: Fix a crash in " "slice_richcompare(): use strong references rather than stolen references for" " the two temporary internal tuples." msgstr "" -#: ../../../build/NEWS:3158 +#: ../../../build/NEWS:3381 msgid "" "`bpo-35911 `__: Enable the creation of " "cell objects by adding a ``cell.__new__`` method, and expose the type " @@ -6067,41 +6490,41 @@ msgid "" "Glaser." msgstr "" -#: ../../../build/NEWS:3162 +#: ../../../build/NEWS:3385 msgid "" "`bpo-12822 `__: Use monotonic clock for " "``pthread_cond_timedwait`` when ``pthread_condattr_setclock`` and " "``CLOCK_MONOTONIC`` are available." msgstr "" -#: ../../../build/NEWS:3165 +#: ../../../build/NEWS:3388 msgid "" "`bpo-15248 `__: The compiler emits now " "syntax warnings in the case when a comma is likely missed before tuple or " "list." msgstr "" -#: ../../../build/NEWS:3168 +#: ../../../build/NEWS:3391 msgid "" "`bpo-35886 `__: The implementation of " "PyInterpreterState has been moved into the internal header files (guarded by" " Py_BUILD_CORE)." msgstr "" -#: ../../../build/NEWS:3171 +#: ../../../build/NEWS:3394 msgid "" "`bpo-31506 `__: Clarify the errors " "reported when ``object.__new__`` and ``object.__init__`` receive more than " "one argument. Contributed by Sanyam Khurana." msgstr "" -#: ../../../build/NEWS:3175 +#: ../../../build/NEWS:3398 msgid "" "`bpo-35724 `__: Signal-handling is now " "guaranteed to happen relative to the main interpreter." msgstr "" -#: ../../../build/NEWS:3178 +#: ../../../build/NEWS:3401 msgid "" "`bpo-33608 `__: We added a new internal " "_Py_AddPendingCall() that operates relative to the provided interpreter. " @@ -6111,14 +6534,14 @@ msgid "" "operates relative to the main interpreter." msgstr "" -#: ../../../build/NEWS:3185 +#: ../../../build/NEWS:3408 msgid "" "`bpo-33989 `__: Fix a possible crash in " ":meth:`list.sort` when sorting objects with ``ob_type->tp_richcompare == " "NULL``. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:3191 +#: ../../../build/NEWS:3414 msgid "" "`bpo-35512 `__: " ":func:`unittest.mock.patch.dict` used as a decorator with string target " @@ -6126,7 +6549,7 @@ msgid "" "construction. Patch by Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:3195 +#: ../../../build/NEWS:3418 msgid "" "`bpo-36018 `__: Add " "statistics.NormalDist, a tool for creating and manipulating normal " @@ -6134,33 +6557,33 @@ msgid "" "the mean and standard deviation of measurement data as single entity." msgstr "" -#: ../../../build/NEWS:3200 +#: ../../../build/NEWS:3423 msgid "" "`bpo-35904 `__: Added statistics.fmean()" " as a faster, floating point variant of the existing mean() function." msgstr "" -#: ../../../build/NEWS:3203 +#: ../../../build/NEWS:3426 msgid "" "`bpo-35918 `__: Removed broken " "``has_key`` method from multiprocessing.managers.SyncManager.dict. " "Contributed by Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:3206 +#: ../../../build/NEWS:3429 msgid "" "`bpo-18283 `__: Add support for bytes to" " :func:`shutil.which`." msgstr "" -#: ../../../build/NEWS:3208 +#: ../../../build/NEWS:3431 msgid "" "`bpo-35960 `__: Fix " ":func:`dataclasses.field` throwing away empty mapping objects passed as " "metadata." msgstr "" -#: ../../../build/NEWS:3211 +#: ../../../build/NEWS:3434 msgid "" "`bpo-35500 `__: Write expected and " "actual call parameters on separate lines in " @@ -6168,13 +6591,13 @@ msgid "" "by Susan Su." msgstr "" -#: ../../../build/NEWS:3215 +#: ../../../build/NEWS:3438 msgid "" "`bpo-35931 `__: The :mod:`pdb` ``debug``" " command now gracefully handles syntax errors." msgstr "" -#: ../../../build/NEWS:3218 +#: ../../../build/NEWS:3441 msgid "" "`bpo-24209 `__: In http.server script, " "rely on getaddrinfo to bind to preferred address based on the bind " @@ -6182,14 +6605,14 @@ msgid "" "stack, depending on the environment." msgstr "" -#: ../../../build/NEWS:3222 +#: ../../../build/NEWS:3445 msgid "" "`bpo-35321 `__: Set ``__spec__.origin`` " "of ``_frozen_importlib`` to frozen so that it matches the behavior of " "``_frozen_importlib_external``. Patch by Nina Zakharenko." msgstr "" -#: ../../../build/NEWS:3226 +#: ../../../build/NEWS:3449 msgid "" "`bpo-35378 `__: Fix a reference issue " "inside :class:`multiprocessing.Pool` that caused the pool to remain alive if" @@ -6199,7 +6622,7 @@ msgid "" "iterator is still alive." msgstr "" -#: ../../../build/NEWS:3233 +#: ../../../build/NEWS:3456 msgid "" "`bpo-34294 `__: re module, fix wrong " "capturing groups in rare cases. :func:`re.search`, :func:`re.findall`, " @@ -6208,14 +6631,14 @@ msgid "" " Lin." msgstr "" -#: ../../../build/NEWS:3238 +#: ../../../build/NEWS:3461 msgid "" "`bpo-35615 `__: :mod:`weakref`: Fix a " "RuntimeError when copying a WeakKeyDictionary or a WeakValueDictionary, due " "to some keys or values disappearing while iterating." msgstr "" -#: ../../../build/NEWS:3242 +#: ../../../build/NEWS:3465 msgid "" "`bpo-35606 `__: Implement " ":func:`math.prod` as analogous function to :func:`sum` that returns the " @@ -6223,7 +6646,7 @@ msgid "" "by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:3246 +#: ../../../build/NEWS:3469 msgid "" "`bpo-32417 `__: Performing arithmetic " "between :class:`datetime.datetime` subclasses and " @@ -6234,7 +6657,7 @@ msgid "" " a ``tz`` argument now *also* retain their subclass." msgstr "" -#: ../../../build/NEWS:3253 +#: ../../../build/NEWS:3476 msgid "" "`bpo-35153 `__: Add *headers* optional " "keyword-only parameter to :class:`xmlrpc.client.ServerProxy`, " @@ -6242,45 +6665,45 @@ msgid "" "Patch by Cédric Krier." msgstr "" -#: ../../../build/NEWS:3257 +#: ../../../build/NEWS:3480 msgid "" "`bpo-34572 `__: Fix C implementation of " "pickle.loads to use importlib's locking mechanisms, and thereby avoid using " "partially-loaded modules. Patch by Tim Burgess." msgstr "" -#: ../../../build/NEWS:3264 +#: ../../../build/NEWS:3487 msgid "" "`bpo-36083 `__: Fix formatting of " "--check-hash-based-pycs options in the manpage Synopsis." msgstr "" -#: ../../../build/NEWS:3267 +#: ../../../build/NEWS:3490 msgid "" "`bpo-36007 `__: Bump minimum sphinx " "version to 1.8. Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:3269 +#: ../../../build/NEWS:3492 msgid "" "`bpo-22062 `__: Update documentation and" " docstrings for pathlib. Original patch by Mike Short." msgstr "" -#: ../../../build/NEWS:3275 +#: ../../../build/NEWS:3498 msgid "" "`bpo-27313 `__: Avoid test_ttk_guionly " "ComboboxTest failure with macOS Cocoa Tk." msgstr "" -#: ../../../build/NEWS:3278 +#: ../../../build/NEWS:3501 msgid "" "`bpo-36019 `__: Add " "test.support.TEST_HTTP_URL and replace references of http://www.example.com " "by this new constant. Contributed by Stéphane Wirtel." msgstr "" -#: ../../../build/NEWS:3282 +#: ../../../build/NEWS:3505 msgid "" "`bpo-36037 `__: Fix test_ssl for strict " "OpenSSL configuration like RHEL8 strict crypto policy. Use older TLS version" @@ -6288,20 +6711,20 @@ msgid "" "version older than default minimum TLS version." msgstr "" -#: ../../../build/NEWS:3287 +#: ../../../build/NEWS:3510 msgid "" "`bpo-35798 `__: Added " ":func:`test.support.check_syntax_warning`." msgstr "" -#: ../../../build/NEWS:3289 +#: ../../../build/NEWS:3512 msgid "" "`bpo-35505 `__: Make " "test_imap4_host_default_value independent on whether the local IMAP server " "is running." msgstr "" -#: ../../../build/NEWS:3292 +#: ../../../build/NEWS:3515 msgid "" "`bpo-35917 `__: multiprocessing: provide" " unit tests for SyncManager and SharedMemoryManager classes + all the " @@ -6309,83 +6732,83 @@ msgid "" "Giampaolo Rodola)" msgstr "" -#: ../../../build/NEWS:3296 +#: ../../../build/NEWS:3519 msgid "" "`bpo-35704 `__: Skip " "``test_shutil.test_unpack_archive_xztar`` to prevent a MemoryError on 32-bit" " AIX when MAXDATA setting is less than 0x20000000." msgstr "" -#: ../../../build/NEWS:3299 +#: ../../../build/NEWS:3522 msgid "Patch by Michael Felt (aixtools)" msgstr "*Patch* oleh Michael Felt (aixtools)" -#: ../../../build/NEWS:3301 +#: ../../../build/NEWS:3524 msgid "" "`bpo-34720 `__: Assert m_state != NULL " "to mimic GC traversal functions that do not correctly handle module creation" " when the module state has not been created." msgstr "" -#: ../../../build/NEWS:3308 +#: ../../../build/NEWS:3531 msgid "" "`bpo-35976 `__: Added ARM build support " "to Windows build files in PCBuild." msgstr "" -#: ../../../build/NEWS:3310 +#: ../../../build/NEWS:3533 msgid "" "`bpo-35692 `__: ``pathlib`` no longer " "raises when checking file and directory existence on drives that are not " "ready" msgstr "" -#: ../../../build/NEWS:3313 +#: ../../../build/NEWS:3536 msgid "" "`bpo-35872 `__: Uses the base Python " "executable when invoking venv in a virtual environment" msgstr "" -#: ../../../build/NEWS:3316 +#: ../../../build/NEWS:3539 msgid "" "`bpo-35873 `__: Prevents venv paths " "being inherited by child processes" msgstr "" -#: ../../../build/NEWS:3318 +#: ../../../build/NEWS:3541 msgid "" "`bpo-35299 `__: Fix sysconfig detection " "of the source directory and distutils handling of pyconfig.h during PGO " "profiling" msgstr "" -#: ../../../build/NEWS:3324 +#: ../../../build/NEWS:3547 msgid "" "`bpo-24310 `__: IDLE -- Document " "settings dialog font tab sample." msgstr "" -#: ../../../build/NEWS:3326 +#: ../../../build/NEWS:3549 msgid "" "`bpo-35833 `__: Revise IDLE doc for " "control codes sent to Shell. Add a code example block." msgstr "" -#: ../../../build/NEWS:3329 +#: ../../../build/NEWS:3552 msgid "" "`bpo-35689 `__: Add docstrings and " "unittests for colorizer.py." msgstr "" -#: ../../../build/NEWS:3333 +#: ../../../build/NEWS:3556 msgid "Python 3.8.0 alpha 1" msgstr "Python 3.8.0 alfa 1" -#: ../../../build/NEWS:3335 +#: ../../../build/NEWS:3558 msgid "*Release date: 2019-02-03*" msgstr "*Tanggal rilis: 2019-02-03*" -#: ../../../build/NEWS:3340 +#: ../../../build/NEWS:3563 msgid "" "`bpo-35746 `__: [CVE-2019-5010] Fix a " "NULL pointer deref in ssl module. The cert parser did not handle CRL " @@ -6394,7 +6817,7 @@ msgid "" "reported by Colin Read and Nicolas Edet of Cisco." msgstr "" -#: ../../../build/NEWS:3346 +#: ../../../build/NEWS:3569 msgid "" "`bpo-34812 `__: The :option:`-I` command" " line option (run Python in isolated mode) is now also copied by the " @@ -6403,7 +6826,7 @@ msgid "" "by :option:`-I`) were copied." msgstr "" -#: ../../../build/NEWS:3352 +#: ../../../build/NEWS:3575 msgid "" "`bpo-34791 `__: The xml.sax and " "xml.dom.domreg no longer use environment variables to override parser " @@ -6411,7 +6834,7 @@ msgid "" "arguments." msgstr "" -#: ../../../build/NEWS:3356 +#: ../../../build/NEWS:3579 msgid "" "`bpo-17239 `__: The xml.sax and " "xml.dom.minidom parsers no longer processes external entities by default. " @@ -6419,46 +6842,46 @@ msgid "" "connections." msgstr "" -#: ../../../build/NEWS:3360 +#: ../../../build/NEWS:3583 msgid "" "`bpo-34623 `__: CVE-2018-14647: The C " "accelerated _elementtree module now initializes hash randomization salt from" " _Py_HashSecret instead of libexpat's default CSPRNG." msgstr "" -#: ../../../build/NEWS:3364 +#: ../../../build/NEWS:3587 msgid "" "`bpo-34405 `__: Updated to OpenSSL " "1.1.0i for Windows builds." msgstr "" -#: ../../../build/NEWS:3366 +#: ../../../build/NEWS:3589 msgid "" "`bpo-33871 `__: Fixed sending the part " "of the file in :func:`os.sendfile` on macOS. Using the *trailers* argument " "could cause sending more bytes from the input file than was specified." msgstr "" -#: ../../../build/NEWS:3370 +#: ../../../build/NEWS:3593 msgid "" "`bpo-32533 `__: Fixed thread-safety of " "error handling in _ssl." msgstr "" -#: ../../../build/NEWS:3372 ../../../build/NEWS:6871 +#: ../../../build/NEWS:3595 ../../../build/NEWS:7094 msgid "" "`bpo-33136 `__: Harden ssl module " "against LibreSSL CVE-2018-8970. X509_VERIFY_PARAM_set1_host() is called with" " an explicit namelen. A new test ensures that NULL bytes are not allowed." msgstr "" -#: ../../../build/NEWS:3376 ../../../build/NEWS:6875 ../../../build/NEWS:11268 +#: ../../../build/NEWS:3599 ../../../build/NEWS:7098 ../../../build/NEWS:11491 msgid "" "`bpo-33001 `__: Minimal fix to prevent " "buffer overrun in os.symlink on Windows" msgstr "" -#: ../../../build/NEWS:3378 ../../../build/NEWS:6877 ../../../build/NEWS:11270 +#: ../../../build/NEWS:3601 ../../../build/NEWS:7100 ../../../build/NEWS:11493 msgid "" "`bpo-32981 `__: Regexes in difflib and " "poplib were vulnerable to catastrophic backtracking. These regexes formed " @@ -6466,20 +6889,20 @@ msgid "" "CVE-2018-1060 and CVE-2018-1061. Patch by Jamie Davis." msgstr "" -#: ../../../build/NEWS:3383 ../../../build/NEWS:7089 +#: ../../../build/NEWS:3606 ../../../build/NEWS:7312 msgid "" "`bpo-28414 `__: The ssl module now " "allows users to perform their own IDN en/decoding when using SNI." msgstr "" -#: ../../../build/NEWS:3389 +#: ../../../build/NEWS:3612 msgid "" "`bpo-35877 `__: Make parenthesis " "optional for named expressions in while statement. Patch by Karthikeyan " "Singaravelan." msgstr "" -#: ../../../build/NEWS:3392 +#: ../../../build/NEWS:3615 msgid "" "`bpo-35814 `__: Allow same right hand " "side expressions in annotated assignments as in normal ones. In particular, " @@ -6487,7 +6910,7 @@ msgid "" "allowed." msgstr "" -#: ../../../build/NEWS:3396 +#: ../../../build/NEWS:3619 msgid "" "`bpo-35766 `__: Add the option to parse " "PEP 484 type comments in the ast module. (Off by default.) This is merging " @@ -6495,26 +6918,26 @@ msgid "" "[typed_ast](https://github.com/python/typed_ast)." msgstr "" -#: ../../../build/NEWS:3401 +#: ../../../build/NEWS:3624 msgid "" "`bpo-35713 `__: Reorganize Python " "initialization to get working exceptions and sys.stderr earlier." msgstr "" -#: ../../../build/NEWS:3404 +#: ../../../build/NEWS:3627 msgid "" "`bpo-33416 `__: Add end line and end " "column position information to the Python AST nodes. This is a C-level " "backwards incompatible change." msgstr "" -#: ../../../build/NEWS:3407 +#: ../../../build/NEWS:3630 msgid "" "`bpo-35720 `__: Fixed a minor memory " "leak in pymain_parse_cmdline_impl function in Modules/main.c" msgstr "" -#: ../../../build/NEWS:3410 +#: ../../../build/NEWS:3633 msgid "" "`bpo-35634 `__: ``func(**kwargs)`` will " "now raise an error when ``kwargs`` is a mapping containing multiple entries " @@ -6522,20 +6945,20 @@ msgid "" "are passed before ``**kwargs`` since Python 3.6." msgstr "" -#: ../../../build/NEWS:3415 +#: ../../../build/NEWS:3638 msgid "" "`bpo-35623 `__: Fix a crash when sorting" " very long lists. Patch by Stephan Hohe." msgstr "" -#: ../../../build/NEWS:3418 +#: ../../../build/NEWS:3641 msgid "" "`bpo-35214 `__: clang Memory Sanitizer " "build instrumentation was added to work around false positives from posix, " "socket, time, test_io, and test_faulthandler." msgstr "" -#: ../../../build/NEWS:3422 +#: ../../../build/NEWS:3645 msgid "" "`bpo-35560 `__: Fix an assertion error " "in :func:`format` in debug build for floating point formatting with \"n\" " @@ -6543,7 +6966,7 @@ msgid "" "by Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:3426 +#: ../../../build/NEWS:3649 msgid "" "`bpo-35552 `__: Format characters ``%s``" " and ``%V`` in :c:func:`PyUnicode_FromFormat` and ``%s`` in " @@ -6551,39 +6974,39 @@ msgid "" "*precision* is specified." msgstr "" -#: ../../../build/NEWS:3430 +#: ../../../build/NEWS:3653 msgid "" "`bpo-35504 `__: Fix segfaults and " ":exc:`SystemError`\\ s when deleting certain attributes. Patch by Zackery " "Spytz." msgstr "" -#: ../../../build/NEWS:3433 +#: ../../../build/NEWS:3656 msgid "" "`bpo-35504 `__: Fixed a SystemError when" " delete the characters_written attribute of an OSError." msgstr "" -#: ../../../build/NEWS:3436 +#: ../../../build/NEWS:3659 msgid "" "`bpo-35494 `__: Improved syntax error " "messages for unbalanced parentheses in f-string." msgstr "" -#: ../../../build/NEWS:3439 +#: ../../../build/NEWS:3662 msgid "" "`bpo-35444 `__: Fixed error handling in " "pickling methods when fail to look up builtin \"getattr\". Sped up pickling " "iterators." msgstr "" -#: ../../../build/NEWS:3442 +#: ../../../build/NEWS:3665 msgid "" "`bpo-35436 `__: Fix various issues with " "memory allocation error handling. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:3445 +#: ../../../build/NEWS:3668 msgid "" "`bpo-35423 `__: Separate the signal " "handling trigger in the eval loop from the \"pending calls\" machinery. " @@ -6591,7 +7014,7 @@ msgid "" "insignificant." msgstr "" -#: ../../../build/NEWS:3449 +#: ../../../build/NEWS:3672 msgid "" "`bpo-35357 `__: Internal attributes' " "names of unittest.mock._Call and unittest.mock.MagicProxy (name, parent & " @@ -6599,20 +7022,20 @@ msgid "" "widely used object attributes. Fixed minor typo in test function name." msgstr "" -#: ../../../build/NEWS:3454 +#: ../../../build/NEWS:3677 msgid "" "`bpo-35372 `__: Fixed the code page " "decoder for input longer than 2 GiB containing undecodable bytes." msgstr "" -#: ../../../build/NEWS:3457 +#: ../../../build/NEWS:3680 msgid "" "`bpo-35336 `__: Fix " "PYTHONCOERCECLOCALE=1 environment variable: only coerce the C locale if the " "LC_CTYPE locale is \"C\"." msgstr "" -#: ../../../build/NEWS:3460 +#: ../../../build/NEWS:3683 msgid "" "`bpo-31241 `__: The *lineno* and " "*col_offset* attributes of AST nodes for list comprehensions, generator " @@ -6621,33 +7044,33 @@ msgid "" "first item." msgstr "" -#: ../../../build/NEWS:3465 +#: ../../../build/NEWS:3688 msgid "" "`bpo-33954 `__: For :meth:`str.format`, " ":meth:`float.__format__` and :meth:`complex.__format__` methods for non-" "ASCII decimal point when using the \"n\" formatter." msgstr "" -#: ../../../build/NEWS:3469 +#: ../../../build/NEWS:3692 msgid "" "`bpo-35269 `__: Fix a possible segfault " "involving a newly-created coroutine. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:3472 +#: ../../../build/NEWS:3695 msgid "" "`bpo-35224 `__: Implement :pep:`572` " "(assignment expressions). Patch by Emily Morehouse." msgstr "" -#: ../../../build/NEWS:3475 +#: ../../../build/NEWS:3698 msgid "" "`bpo-32492 `__: Speed up " ":class:`namedtuple` attribute access by 1.6x using a C fast-path for the " "name descriptors. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:3478 +#: ../../../build/NEWS:3701 msgid "" "`bpo-35214 `__: Fixed an out of bounds " "memory access when parsing a truncated unicode escape sequence at the end of" @@ -6655,7 +7078,7 @@ msgid "" "memory allocation." msgstr "" -#: ../../../build/NEWS:3482 +#: ../../../build/NEWS:3705 msgid "" "`bpo-35214 `__: The interpreter and " "extension modules have had annotations added so that they work properly " @@ -6664,7 +7087,7 @@ msgid "" "perform." msgstr "" -#: ../../../build/NEWS:3487 +#: ../../../build/NEWS:3710 msgid "" "`bpo-35193 `__: Fix an off by one error " "in the bytecode peephole optimizer where it could read bytes beyond the end " @@ -6672,39 +7095,39 @@ msgid "" "in every release of Python 3.6 and 3.7 until now." msgstr "" -#: ../../../build/NEWS:3492 +#: ../../../build/NEWS:3715 msgid "" "`bpo-35169 `__: Improved error messages " "for forbidden assignments." msgstr "" -#: ../../../build/NEWS:3494 +#: ../../../build/NEWS:3717 msgid "" "`bpo-34022 `__: Fix handling of hash-" "based bytecode files in :mod:`zipimport`. Patch by Elvis Pranskevichus." msgstr "" -#: ../../../build/NEWS:3497 +#: ../../../build/NEWS:3720 msgid "" "`bpo-28401 `__: Debug builds will no " "longer to attempt to import extension modules built for the ABI as they were" " never compatible to begin with. Patch by Stefano Rivera." msgstr "" -#: ../../../build/NEWS:3501 +#: ../../../build/NEWS:3724 msgid "" "`bpo-29341 `__: Clarify in the " "docstrings of :mod:`os` methods that path-like objects are also accepted as " "input parameters." msgstr "" -#: ../../../build/NEWS:3504 +#: ../../../build/NEWS:3727 msgid "" "`bpo-35050 `__: :mod:`socket`: Fix off-" "by-one bug in length check for ``AF_ALG`` name and type." msgstr "" -#: ../../../build/NEWS:3507 +#: ../../../build/NEWS:3730 msgid "" "`bpo-29743 `__: Raise :exc:`ValueError` " "instead of :exc:`OverflowError` in case of a negative ``_length_`` in a " @@ -6713,48 +7136,48 @@ msgid "" "Milman." msgstr "" -#: ../../../build/NEWS:3512 +#: ../../../build/NEWS:3735 msgid "" "`bpo-16806 `__: Fix ``lineno`` and " "``col_offset`` for multi-line string tokens." msgstr "" -#: ../../../build/NEWS:3514 +#: ../../../build/NEWS:3737 msgid "" "`bpo-35029 `__: :exc:`SyntaxWarning` " "raised as an exception at code generation time will be now replaced with a " ":exc:`SyntaxError` for better error reporting." msgstr "" -#: ../../../build/NEWS:3518 +#: ../../../build/NEWS:3741 msgid "" "`bpo-34983 `__: Expose " ":meth:`symtable.Symbol.is_nonlocal` in the symtable module. Patch by Pablo " "Galindo." msgstr "" -#: ../../../build/NEWS:3521 +#: ../../../build/NEWS:3744 msgid "" "`bpo-34974 `__: :class:`bytes` and " ":class:`bytearray` constructors no longer convert unexpected exceptions " "(e.g. :exc:`MemoryError` and :exc:`KeyboardInterrupt`) to :exc:`TypeError`." msgstr "" -#: ../../../build/NEWS:3525 +#: ../../../build/NEWS:3748 msgid "" "`bpo-34939 `__: Allow annotated names in" " module namespace that are declared global before the annotation happens. " "Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:3528 +#: ../../../build/NEWS:3751 msgid "" "`bpo-34973 `__: Fixed crash in " ":func:`bytes` when the :class:`list` argument is mutated while it is " "iterated." msgstr "" -#: ../../../build/NEWS:3531 +#: ../../../build/NEWS:3754 msgid "" "`bpo-34876 `__: The *lineno* and " "*col_offset* attributes of the AST for decorated function and class refer " @@ -6764,34 +7187,34 @@ msgid "" "of child AST nodes can precede the position of the parent AST node." msgstr "" -#: ../../../build/NEWS:3538 +#: ../../../build/NEWS:3761 msgid "" "`bpo-34879 `__: Fix a possible null " "pointer dereference in bytesobject.c. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:3541 +#: ../../../build/NEWS:3764 msgid "" "`bpo-34784 `__: Fix the implementation " "of PyStructSequence_NewType in order to create heap allocated " "StructSequences." msgstr "" -#: ../../../build/NEWS:3544 +#: ../../../build/NEWS:3767 msgid "" "`bpo-32912 `__: A :exc:`SyntaxWarning` " "is now emitted instead of a :exc:`DeprecationWarning` for invalid escape " "sequences in string and bytes literals." msgstr "" -#: ../../../build/NEWS:3548 +#: ../../../build/NEWS:3771 msgid "" "`bpo-34854 `__: Fixed a crash in " "compiling string annotations containing a lambda with a keyword-only " "argument that doesn't have a default value." msgstr "" -#: ../../../build/NEWS:3551 +#: ../../../build/NEWS:3774 msgid "" "`bpo-34850 `__: The compiler now " "produces a :exc:`SyntaxWarning` when identity checks (``is`` and ``is not``)" @@ -6801,13 +7224,13 @@ msgid "" "instead." msgstr "" -#: ../../../build/NEWS:3557 +#: ../../../build/NEWS:3780 msgid "" "`bpo-34824 `__: Fix a possible null " "pointer dereference in Modules/_ssl.c. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:3560 +#: ../../../build/NEWS:3783 msgid "" "`bpo-30156 `__: The C function " "``property_descr_get()`` uses a \"cached\" tuple to optimize function calls." @@ -6816,13 +7239,13 @@ msgid "" "and it causes 3 different crashes last years." msgstr "" -#: ../../../build/NEWS:3565 +#: ../../../build/NEWS:3788 msgid "" "`bpo-34762 `__: Fix contextvars C API to" " use PyObject* pointer types." msgstr "" -#: ../../../build/NEWS:3567 +#: ../../../build/NEWS:3790 msgid "" "`bpo-34751 `__: The hash function for " "tuples is now based on xxHash which gives better collision results on " @@ -6831,65 +7254,65 @@ msgid "" "contributions by Tim Peters." msgstr "" -#: ../../../build/NEWS:3572 +#: ../../../build/NEWS:3795 msgid "" "`bpo-34735 `__: Fix a memory leak in " "Modules/timemodule.c. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:3575 +#: ../../../build/NEWS:3798 msgid "" "`bpo-34683 `__: Fixed a bug where some " "SyntaxError error pointed to locations that were off-by-one." msgstr "" -#: ../../../build/NEWS:3578 +#: ../../../build/NEWS:3801 msgid "" "`bpo-34651 `__: Only allow the main " "interpreter to fork. The avoids the possibility of affecting the main " "interpreter, which is critical to operation of the runtime." msgstr "" -#: ../../../build/NEWS:3582 +#: ../../../build/NEWS:3805 msgid "" "`bpo-34653 `__: Remove unused function " "PyParser_SimpleParseStringFilename." msgstr "" -#: ../../../build/NEWS:3584 +#: ../../../build/NEWS:3807 msgid "" "`bpo-32236 `__: Warn that line buffering" " is not supported if :func:`open` is called with binary mode and " "``buffering=1``." msgstr "" -#: ../../../build/NEWS:3587 +#: ../../../build/NEWS:3810 msgid "" "`bpo-34641 `__: Further restrict the " "syntax of the left-hand side of keyword arguments in function calls. In " "particular, ``f((keyword)=arg)`` is now disallowed." msgstr "" -#: ../../../build/NEWS:3591 +#: ../../../build/NEWS:3814 msgid "" "`bpo-34637 `__: Make the *start* " "argument to *sum()* visible as a keyword argument." msgstr "" -#: ../../../build/NEWS:3594 +#: ../../../build/NEWS:3817 msgid "" "`bpo-1621 `__: Do not assume signed " "integer overflow behavior (C undefined behavior) when performing set hash " "table resizing." msgstr "" -#: ../../../build/NEWS:3597 +#: ../../../build/NEWS:3820 msgid "" "`bpo-34588 `__: Fix an off-by-one in the" " recursive call pruning feature of traceback formatting." msgstr "" -#: ../../../build/NEWS:3600 +#: ../../../build/NEWS:3823 msgid "" "`bpo-34485 `__: On Windows, the LC_CTYPE" " is now set to the user preferred locale at startup. Previously, the " @@ -6897,7 +7320,7 @@ msgid "" "setlocale(LC_CTYPE, \"\") or setlocale(LC_ALL, \"\")." msgstr "" -#: ../../../build/NEWS:3604 +#: ../../../build/NEWS:3827 msgid "" "`bpo-34485 `__: Standard streams like " "sys.stdout now use the \"surrogateescape\" error handler, instead of " @@ -6905,14 +7328,14 @@ msgid "" "UTF-8 Mode is disabled)." msgstr "" -#: ../../../build/NEWS:3608 +#: ../../../build/NEWS:3831 msgid "" "`bpo-34485 `__: Fix the error handler of" " standard streams like sys.stdout: PYTHONIOENCODING=\":\" is now ignored " "instead of setting the error handler to \"strict\"." msgstr "" -#: ../../../build/NEWS:3612 +#: ../../../build/NEWS:3835 msgid "" "`bpo-34485 `__: Python now gets the " "locale encoding with C code to initialize the encoding of standard streams " @@ -6922,7 +7345,7 @@ msgid "" "startup by default." msgstr "" -#: ../../../build/NEWS:3618 +#: ../../../build/NEWS:3841 msgid "" "`bpo-34527 `__: On FreeBSD, " "Py_DecodeLocale() and Py_EncodeLocale() now also forces the ASCII encoding " @@ -6930,13 +7353,13 @@ msgid "" "\"C\"." msgstr "" -#: ../../../build/NEWS:3622 +#: ../../../build/NEWS:3845 msgid "" "`bpo-34527 `__: The UTF-8 Mode is now " "also enabled by the \"POSIX\" locale, not only by the \"C\" locale." msgstr "" -#: ../../../build/NEWS:3625 +#: ../../../build/NEWS:3848 msgid "" "`bpo-34403 `__: On HP-UX with C or POSIX" " locale, sys.getfilesystemencoding() now returns \"ascii\" instead of " @@ -6944,13 +7367,13 @@ msgid "" "coerced)." msgstr "" -#: ../../../build/NEWS:3629 +#: ../../../build/NEWS:3852 msgid "" "`bpo-34523 `__: The Python filesystem " "encoding is now read earlier during the Python initialization." msgstr "" -#: ../../../build/NEWS:3632 +#: ../../../build/NEWS:3855 msgid "" "`bpo-12458 `__: Tracebacks show now " "correct line number for subexpressions in multiline expressions. Tracebacks " @@ -6958,110 +7381,110 @@ msgid "" " of the line number of the last subexpression." msgstr "" -#: ../../../build/NEWS:3637 +#: ../../../build/NEWS:3860 msgid "" "`bpo-34408 `__: Prevent a null pointer " "dereference and resource leakage in ``PyInterpreterState_New()``." msgstr "" -#: ../../../build/NEWS:3640 +#: ../../../build/NEWS:3863 msgid "" "`bpo-34400 `__: Fix undefined behavior " "in parsetok.c. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:3642 +#: ../../../build/NEWS:3865 msgid "" "`bpo-33073 `__: Added as_integer_ratio " "to ints to make them more interoperable with floats." msgstr "" -#: ../../../build/NEWS:3645 +#: ../../../build/NEWS:3868 msgid "" "`bpo-34377 `__: Update valgrind " "suppression list to use ``_PyObject_Free``/``_PyObject_Realloc`` instead of " "``PyObject_Free``/``PyObject_Realloc``." msgstr "" -#: ../../../build/NEWS:3649 +#: ../../../build/NEWS:3872 msgid "" "`bpo-34353 `__: Added the \"socket\" " "option in the `stat.filemode()` Python implementation to match the C " "implementation." msgstr "" -#: ../../../build/NEWS:3652 +#: ../../../build/NEWS:3875 msgid "" "`bpo-34320 `__: Fix ``dict(od)`` didn't " "copy iteration order of OrderedDict." msgstr "" -#: ../../../build/NEWS:3654 +#: ../../../build/NEWS:3877 msgid "" "`bpo-34113 `__: Fixed crash on debug " "builds when opcode stack was adjusted with negative numbers. Patch by " "Constantin Petrisor." msgstr "" -#: ../../../build/NEWS:3657 +#: ../../../build/NEWS:3880 msgid "" "`bpo-34100 `__: Compiler now merges " "constants in tuples and frozensets recursively. Code attributes like " "``co_names`` are merged too." msgstr "" -#: ../../../build/NEWS:3660 +#: ../../../build/NEWS:3883 msgid "" "`bpo-34151 `__: Performance of list " "concatenation, repetition and slicing operations is slightly improved. Patch" " by Sergey Fedoseev." msgstr "" -#: ../../../build/NEWS:3663 +#: ../../../build/NEWS:3886 msgid "" "`bpo-34170 `__: -X dev: it is now " "possible to override the memory allocator using PYTHONMALLOC even if the " "developer mode is enabled." msgstr "" -#: ../../../build/NEWS:3666 +#: ../../../build/NEWS:3889 msgid "" "`bpo-33237 `__: Improved " ":exc:`AttributeError` message for partially initialized module." msgstr "" -#: ../../../build/NEWS:3669 +#: ../../../build/NEWS:3892 msgid "" "`bpo-34149 `__: Fix min and max " "functions to get default behavior when key is None." msgstr "" -#: ../../../build/NEWS:3672 +#: ../../../build/NEWS:3895 msgid "" "`bpo-34125 `__: Profiling of unbound " "built-in methods now works when ``**kwargs`` is given." msgstr "" -#: ../../../build/NEWS:3675 +#: ../../../build/NEWS:3898 msgid "" "`bpo-34141 `__: Optimized pickling " "atomic types (None, bool, int, float, bytes, str)." msgstr "" -#: ../../../build/NEWS:3678 +#: ../../../build/NEWS:3901 msgid "" "`bpo-34126 `__: Fix crashes when " "profiling certain invalid calls of unbound methods. Patch by Jeroen Demeyer." msgstr "" -#: ../../../build/NEWS:3681 +#: ../../../build/NEWS:3904 msgid "" "`bpo-24618 `__: Fixed reading invalid " "memory when create the code object with too small varnames tuple or too " "large argument counts." msgstr "" -#: ../../../build/NEWS:3684 +#: ../../../build/NEWS:3907 msgid "" "`bpo-34068 `__: In " ":meth:`io.IOBase.close`, ensure that the :attr:`~io.IOBase.closed` attribute" @@ -7069,63 +7492,63 @@ msgid "" "Storchaka." msgstr "" -#: ../../../build/NEWS:3688 +#: ../../../build/NEWS:3911 msgid "" "`bpo-34087 `__: Fix buffer overflow " "while converting unicode to numeric values." msgstr "" -#: ../../../build/NEWS:3690 +#: ../../../build/NEWS:3913 msgid "" "`bpo-34080 `__: Fixed a memory leak in " "the compiler when it raised some uncommon errors during tokenizing." msgstr "" -#: ../../../build/NEWS:3693 +#: ../../../build/NEWS:3916 msgid "" "`bpo-34066 `__: Disabled interruption by" " Ctrl-C between calling ``open()`` and entering a **with** block in ``with " "open()``." msgstr "" -#: ../../../build/NEWS:3696 +#: ../../../build/NEWS:3919 msgid "" "`bpo-34042 `__: Fix dict.copy() to " "maintain correct total refcount (as reported by sys.gettotalrefcount())." msgstr "" -#: ../../../build/NEWS:3699 +#: ../../../build/NEWS:3922 msgid "" "`bpo-33418 `__: Fix potential memory " "leak in function object when it creates reference cycle." msgstr "" -#: ../../../build/NEWS:3702 +#: ../../../build/NEWS:3925 msgid "" "`bpo-33985 `__: Implement " "contextvars.ContextVar.name attribute." msgstr "" -#: ../../../build/NEWS:3704 +#: ../../../build/NEWS:3927 msgid "" "`bpo-33956 `__: Update vendored Expat " "library copy to version 2.2.5." msgstr "" -#: ../../../build/NEWS:3706 +#: ../../../build/NEWS:3929 msgid "" "`bpo-24596 `__: Decref the module object" " in :c:func:`PyRun_SimpleFileExFlags` before calling " ":c:func:`PyErr_Print()`. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:3709 +#: ../../../build/NEWS:3932 msgid "" "`bpo-33451 `__: Close directly executed " "pyc files before calling ``PyEval_EvalCode()``." msgstr "" -#: ../../../build/NEWS:3712 +#: ../../../build/NEWS:3935 msgid "" "`bpo-1617161 `__: The hash of " ":class:`BuiltinMethodType` instances (methods of built-in classes) now " @@ -7137,21 +7560,21 @@ msgid "" "instances no longer support ordering." msgstr "" -#: ../../../build/NEWS:3720 +#: ../../../build/NEWS:3943 msgid "" "`bpo-33824 `__: Fix \"LC_ALL=C python3.7" " -V\": reset properly the command line parser when the encoding changes " "after reading the Python configuration." msgstr "" -#: ../../../build/NEWS:3723 ../../../build/NEWS:6369 +#: ../../../build/NEWS:3946 ../../../build/NEWS:6592 msgid "" "`bpo-33803 `__: Fix a crash in hamt.c " "caused by enabling GC tracking for an object that hadn't all of its fields " "set to NULL." msgstr "" -#: ../../../build/NEWS:3726 +#: ../../../build/NEWS:3949 msgid "" "`bpo-33738 `__: Seven macro " "incompatibilities with the Limited API were fixed, and the macros " @@ -7160,40 +7583,40 @@ msgid "" "automatic macro checks was added." msgstr "" -#: ../../../build/NEWS:3731 ../../../build/NEWS:10941 +#: ../../../build/NEWS:3954 ../../../build/NEWS:11164 msgid "" "`bpo-33786 `__: Fix asynchronous " "generators to handle GeneratorExit in athrow() correctly" msgstr "" -#: ../../../build/NEWS:3734 +#: ../../../build/NEWS:3957 msgid "" "`bpo-30167 `__: " "``PyRun_SimpleFileExFlags`` removes ``__cached__`` from module in addition " "to ``__file__``." msgstr "" -#: ../../../build/NEWS:3737 ../../../build/NEWS:6372 +#: ../../../build/NEWS:3960 ../../../build/NEWS:6595 msgid "" "`bpo-33706 `__: Fix a crash in Python " "initialization when parsing the command line options. Thanks Christoph " "Gohlke for the bug report and the fix!" msgstr "" -#: ../../../build/NEWS:3740 +#: ../../../build/NEWS:3963 msgid "" "`bpo-33597 `__: Reduce ``PyGC_Head`` " "size from 3 words to 2 words." msgstr "" -#: ../../../build/NEWS:3742 ../../../build/NEWS:6375 ../../../build/NEWS:10944 +#: ../../../build/NEWS:3965 ../../../build/NEWS:6598 ../../../build/NEWS:11167 msgid "" "`bpo-30654 `__: Fixed reset of the " "SIGINT handler to SIG_DFL on interpreter shutdown even when there was a " "custom handler set previously. Patch by Philipp Kerling." msgstr "" -#: ../../../build/NEWS:3746 ../../../build/NEWS:6481 ../../../build/NEWS:10948 +#: ../../../build/NEWS:3969 ../../../build/NEWS:6704 ../../../build/NEWS:11171 msgid "" "`bpo-33622 `__: Fixed a leak when the " "garbage collector fails to add an object with the ``__del__`` method or " @@ -7201,13 +7624,13 @@ msgid "" "can now be called when an exception is set and preserves it." msgstr "" -#: ../../../build/NEWS:3751 +#: ../../../build/NEWS:3974 msgid "" "`bpo-33462 `__: Make dict and dict views" " reversible. Patch by Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:3753 +#: ../../../build/NEWS:3976 msgid "" "`bpo-23722 `__: A :exc:`RuntimeError` is" " now raised when the custom metaclass doesn't provide the ``__classcell__`` " @@ -7215,7 +7638,7 @@ msgid "" ":exc:`DeprecationWarning` was emitted in Python 3.6--3.7." msgstr "" -#: ../../../build/NEWS:3758 +#: ../../../build/NEWS:3981 msgid "" "`bpo-33499 `__: Add " ":envvar:`PYTHONPYCACHEPREFIX` environment variable and :option:`-X` " @@ -7223,120 +7646,120 @@ msgid "" "for writing module bytecode cache files." msgstr "" -#: ../../../build/NEWS:3762 +#: ../../../build/NEWS:3985 msgid "" "`bpo-25711 `__: The :mod:`zipimport` " "module has been rewritten in pure Python." msgstr "" -#: ../../../build/NEWS:3764 ../../../build/NEWS:6486 +#: ../../../build/NEWS:3987 ../../../build/NEWS:6709 msgid "" "`bpo-33509 `__: Fix module_globals " "parameter of warnings.warn_explicit(): don't crash if module_globals is not " "a dict." msgstr "" -#: ../../../build/NEWS:3767 ../../../build/NEWS:6379 ../../../build/NEWS:10953 +#: ../../../build/NEWS:3990 ../../../build/NEWS:6602 ../../../build/NEWS:11176 msgid "" "`bpo-31849 `__: Fix signed/unsigned " "comparison warning in pyhash.c." msgstr "" -#: ../../../build/NEWS:3769 ../../../build/NEWS:6493 +#: ../../../build/NEWS:3992 ../../../build/NEWS:6716 msgid "" "`bpo-33475 `__: Fixed miscellaneous bugs" " in converting annotations to strings and optimized parentheses in the " "string representation." msgstr "" -#: ../../../build/NEWS:3772 +#: ../../../build/NEWS:3995 msgid "" "`bpo-20104 `__: Added support for the " "`setpgroup`, `resetids`, `setsigmask`, `setsigdef` and `scheduler` " "parameters of `posix_spawn`. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:3776 ../../../build/NEWS:6496 ../../../build/NEWS:10955 +#: ../../../build/NEWS:3999 ../../../build/NEWS:6719 ../../../build/NEWS:11178 msgid "" "`bpo-33391 `__: Fix a leak in " "set_symmetric_difference()." msgstr "" -#: ../../../build/NEWS:3778 ../../../build/NEWS:6694 +#: ../../../build/NEWS:4001 ../../../build/NEWS:6917 msgid "" "`bpo-33363 `__: Raise a SyntaxError for " "``async with`` and ``async for`` statements outside of async functions." msgstr "" -#: ../../../build/NEWS:3781 ../../../build/NEWS:6498 ../../../build/NEWS:10957 +#: ../../../build/NEWS:4004 ../../../build/NEWS:6721 ../../../build/NEWS:11180 msgid "" "`bpo-28055 `__: Fix unaligned accesses " "in siphash24(). Patch by Rolf Eike Beer." msgstr "" -#: ../../../build/NEWS:3783 ../../../build/NEWS:6697 +#: ../../../build/NEWS:4006 ../../../build/NEWS:6920 msgid "" "`bpo-33128 `__: Fix a bug that causes " "PathFinder to appear twice on sys.meta_path. Patch by Pablo Galindo Salgado." msgstr "" -#: ../../../build/NEWS:3786 +#: ../../../build/NEWS:4009 msgid "" "`bpo-33331 `__: Modules imported last " "are now cleared first at interpreter shutdown." msgstr "" -#: ../../../build/NEWS:3789 ../../../build/NEWS:6700 +#: ../../../build/NEWS:4012 ../../../build/NEWS:6923 msgid "" "`bpo-33312 `__: Fixed clang ubsan " "(undefined behavior sanitizer) warnings in dictobject.c by adjusting how the" " internal struct _dictkeysobject shared keys structure is declared." msgstr "" -#: ../../../build/NEWS:3793 +#: ../../../build/NEWS:4016 msgid "" "`bpo-33305 `__: Improved syntax error " "messages for invalid numerical literals." msgstr "" -#: ../../../build/NEWS:3795 +#: ../../../build/NEWS:4018 msgid "" "`bpo-33306 `__: Improved syntax error " "messages for unbalanced parentheses." msgstr "" -#: ../../../build/NEWS:3797 +#: ../../../build/NEWS:4020 msgid "" "`bpo-33234 `__: The list constructor " "will pre-size and not over-allocate when the input length is known." msgstr "" -#: ../../../build/NEWS:3800 +#: ../../../build/NEWS:4023 msgid "" "`bpo-33270 `__: Intern the names for all" " anonymous code objects. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:3803 +#: ../../../build/NEWS:4026 msgid "" "`bpo-30455 `__: The C and Python code " "and the documentation related to tokens are now generated from a single " "source file :file:`Grammar/Tokens`." msgstr "" -#: ../../../build/NEWS:3806 +#: ../../../build/NEWS:4029 msgid "" "`bpo-33176 `__: Add a ``toreadonly()`` " "method to memoryviews." msgstr "" -#: ../../../build/NEWS:3808 ../../../build/NEWS:6704 ../../../build/NEWS:10959 +#: ../../../build/NEWS:4031 ../../../build/NEWS:6927 ../../../build/NEWS:11182 msgid "" "`bpo-33231 `__: Fix potential memory " "leak in ``normalizestring()``." msgstr "" -#: ../../../build/NEWS:3810 ../../../build/NEWS:6706 +#: ../../../build/NEWS:4033 ../../../build/NEWS:6929 msgid "" "`bpo-33205 `__: Change dict growth " "function from ``round_up_to_power_2(used*2+hashtable_size/2)`` to " @@ -7344,20 +7767,20 @@ msgid "" "``used == 0``. Now dict has more chance to be shrinked." msgstr "" -#: ../../../build/NEWS:3815 ../../../build/NEWS:6711 ../../../build/NEWS:10961 +#: ../../../build/NEWS:4038 ../../../build/NEWS:6934 ../../../build/NEWS:11184 msgid "" "`bpo-29922 `__: Improved error messages " "in 'async with' when ``__aenter__()`` or ``__aexit__()`` return non-" "awaitable object." msgstr "" -#: ../../../build/NEWS:3818 ../../../build/NEWS:6714 ../../../build/NEWS:10964 +#: ../../../build/NEWS:4041 ../../../build/NEWS:6937 ../../../build/NEWS:11187 msgid "" "`bpo-33199 `__: Fix ``ma_version_tag`` " "in dict implementation is uninitialized when copying from key-sharing dict." msgstr "" -#: ../../../build/NEWS:3821 ../../../build/NEWS:6885 +#: ../../../build/NEWS:4044 ../../../build/NEWS:7108 msgid "" "`bpo-33053 `__: When using the -m " "switch, sys.path[0] is now explicitly expanded as the *starting* working " @@ -7365,14 +7788,14 @@ msgid "" "from the current working directory at the time of the import)" msgstr "" -#: ../../../build/NEWS:3826 +#: ../../../build/NEWS:4049 msgid "" "`bpo-33138 `__: Changed standard error " "message for non-pickleable and non-copyable types. It now says \"cannot " "pickle\" instead of \"can't pickle\" or \"cannot serialize\"." msgstr "" -#: ../../../build/NEWS:3830 ../../../build/NEWS:6890 +#: ../../../build/NEWS:4053 ../../../build/NEWS:7113 msgid "" "`bpo-33018 `__: Improve consistency of " "errors raised by ``issubclass()`` when called with a non-class and an " @@ -7380,40 +7803,40 @@ msgid "" "by Josh Bronson." msgstr "" -#: ../../../build/NEWS:3834 +#: ../../../build/NEWS:4057 msgid "" "`bpo-33083 `__: ``math.factorial`` no " "longer accepts arguments that are not int-like. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:3837 +#: ../../../build/NEWS:4060 msgid "" "`bpo-33041 `__: Added new opcode " ":opcode:`END_ASYNC_FOR` and fixes the following issues:" msgstr "" -#: ../../../build/NEWS:3840 +#: ../../../build/NEWS:4063 msgid "" "Setting global :exc:`StopAsyncIteration` no longer breaks ``async for`` " "loops." msgstr "" -#: ../../../build/NEWS:3842 +#: ../../../build/NEWS:4065 msgid "Jumping into an ``async for`` loop is now disabled." msgstr "" -#: ../../../build/NEWS:3843 +#: ../../../build/NEWS:4066 msgid "Jumping out of an ``async for`` loop no longer corrupts the stack." msgstr "" -#: ../../../build/NEWS:3845 +#: ../../../build/NEWS:4068 msgid "" "`bpo-25750 `__: Fix rare Python crash " "due to bad refcounting in ``type_getattro()`` if a descriptor deletes itself" " from the class. Patch by Jeroen Demeyer." msgstr "" -#: ../../../build/NEWS:3849 +#: ../../../build/NEWS:4072 msgid "" "`bpo-33041 `__: Fixed bytecode " "generation for \"async for\" with a complex target. A StopAsyncIteration " @@ -7421,13 +7844,13 @@ msgid "" "the iteration." msgstr "" -#: ../../../build/NEWS:3853 ../../../build/NEWS:6896 ../../../build/NEWS:11278 +#: ../../../build/NEWS:4076 ../../../build/NEWS:7119 ../../../build/NEWS:11501 msgid "" "`bpo-33026 `__: Fixed jumping out of " "\"with\" block by setting f_lineno." msgstr "" -#: ../../../build/NEWS:3855 ../../../build/NEWS:6898 +#: ../../../build/NEWS:4078 ../../../build/NEWS:7121 msgid "" "`bpo-33005 `__: Fix a crash on fork when" " using a custom memory allocator (ex: using PYTHONMALLOC env var). " @@ -7435,7 +7858,7 @@ msgid "" "RAW memory allocator to allocate a new interpreters mutex on fork." msgstr "" -#: ../../../build/NEWS:3860 ../../../build/NEWS:6500 +#: ../../../build/NEWS:4083 ../../../build/NEWS:6723 msgid "" "`bpo-32911 `__: Due to unexpected " "compatibility issues discovered during downstream beta testing, reverted " @@ -7445,26 +7868,26 @@ msgid "" "on patch by Inada Naoki." msgstr "" -#: ../../../build/NEWS:3866 ../../../build/NEWS:6903 ../../../build/NEWS:11280 +#: ../../../build/NEWS:4089 ../../../build/NEWS:7126 ../../../build/NEWS:11503 msgid "" "`bpo-17288 `__: Prevent jumps from " "'return' and 'exception' trace events." msgstr "" -#: ../../../build/NEWS:3868 +#: ../../../build/NEWS:4091 msgid "" "`bpo-32946 `__: Importing names from " "already imported module with \"from ... import ...\" is now 30% faster if " "the module is not a package." msgstr "" -#: ../../../build/NEWS:3871 +#: ../../../build/NEWS:4094 msgid "" "`bpo-32932 `__: Make error message more " "revealing when there are non-str objects in ``__all__``." msgstr "" -#: ../../../build/NEWS:3874 +#: ../../../build/NEWS:4097 msgid "" "`bpo-32925 `__: Optimized iterating and " "containing test for literal lists consisting of non-constants: ``x in [a, " @@ -7472,58 +7895,58 @@ msgid "" "optimized." msgstr "" -#: ../../../build/NEWS:3878 ../../../build/NEWS:7095 ../../../build/NEWS:11282 +#: ../../../build/NEWS:4101 ../../../build/NEWS:7318 ../../../build/NEWS:11505 msgid "" "`bpo-32889 `__: Update Valgrind " "suppression list to account for the rename of ``Py_ADDRESS_IN_RANG`` to " "``address_in_range``." msgstr "" -#: ../../../build/NEWS:3881 ../../../build/NEWS:6905 +#: ../../../build/NEWS:4104 ../../../build/NEWS:7128 msgid "" "`bpo-32836 `__: Don't use temporary " "variables in cases of list/dict/set comprehensions" msgstr "" -#: ../../../build/NEWS:3884 ../../../build/NEWS:7098 +#: ../../../build/NEWS:4107 ../../../build/NEWS:7321 msgid "" "`bpo-31356 `__: Remove the new API added" " in `bpo-31356 `__ (gc.ensure_disabled()" " context manager)." msgstr "" -#: ../../../build/NEWS:3887 ../../../build/NEWS:7101 +#: ../../../build/NEWS:4110 ../../../build/NEWS:7324 msgid "" "`bpo-32305 `__: For namespace packages, " "ensure that both ``__file__`` and ``__spec__.origin`` are set to None." msgstr "" -#: ../../../build/NEWS:3890 ../../../build/NEWS:7104 +#: ../../../build/NEWS:4113 ../../../build/NEWS:7327 msgid "" "`bpo-32303 `__: Make sure " "``__spec__.loader`` matches ``__loader__`` for namespace packages." msgstr "" -#: ../../../build/NEWS:3893 ../../../build/NEWS:7107 +#: ../../../build/NEWS:4116 ../../../build/NEWS:7330 msgid "" "`bpo-32711 `__: Fix the warning messages" " for Python/ast_unparse.c. Patch by Stéphane Wirtel" msgstr "" -#: ../../../build/NEWS:3896 ../../../build/NEWS:7110 ../../../build/NEWS:11293 +#: ../../../build/NEWS:4119 ../../../build/NEWS:7333 ../../../build/NEWS:11516 msgid "" "`bpo-32583 `__: Fix possible crashing in" " builtin Unicode decoders caused by write out-of-bound errors when using " "customized decode error handlers." msgstr "" -#: ../../../build/NEWS:3899 +#: ../../../build/NEWS:4122 msgid "" "`bpo-32489 `__: A :keyword:`continue` " "statement is now allowed in the :keyword:`finally` clause." msgstr "" -#: ../../../build/NEWS:3902 +#: ../../../build/NEWS:4125 msgid "" "`bpo-17611 `__: Simplified the " "interpreter loop by moving the logic of unrolling the stack of blocks into " @@ -7532,7 +7955,7 @@ msgid "" ":keyword:`continue` and :keyword:`return`." msgstr "" -#: ../../../build/NEWS:3908 +#: ../../../build/NEWS:4131 msgid "" "Removed opcodes :opcode:`BREAK_LOOP`, :opcode:`CONTINUE_LOOP`, " ":opcode:`SETUP_LOOP` and :opcode:`SETUP_EXCEPT`. Added new opcodes " @@ -7541,21 +7964,21 @@ msgid "" ":opcode:`WITH_CLEANUP_START`." msgstr "" -#: ../../../build/NEWS:3914 +#: ../../../build/NEWS:4137 msgid "" "`bpo-32285 `__: New function " "unicodedata.is_normalized, which can check whether a string is in a specific" " normal form." msgstr "" -#: ../../../build/NEWS:3917 +#: ../../../build/NEWS:4140 msgid "" "`bpo-10544 `__: Yield expressions are " "now disallowed in comprehensions and generator expressions except the " "expression for the outermost iterable." msgstr "" -#: ../../../build/NEWS:3920 +#: ../../../build/NEWS:4143 msgid "" "`bpo-32117 `__: Iterable unpacking is " "now allowed without parentheses in yield and return statements, e.g. ``yield" @@ -7563,7 +7986,7 @@ msgid "" "Chapman for added tests." msgstr "" -#: ../../../build/NEWS:3924 +#: ../../../build/NEWS:4147 msgid "" "`bpo-31902 `__: Fix the ``col_offset`` " "attribute for ast nodes ``ast.AsyncFor``, ``ast.AsyncFunctionDef``, and " @@ -7571,45 +7994,45 @@ msgid "" "``async``." msgstr "" -#: ../../../build/NEWS:3928 +#: ../../../build/NEWS:4151 msgid "" "`bpo-25862 `__: Fix assertion failures " "in the ``tell()`` method of ``io.TextIOWrapper``. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:3931 ../../../build/NEWS:6506 ../../../build/NEWS:10972 +#: ../../../build/NEWS:4154 ../../../build/NEWS:6729 ../../../build/NEWS:11195 msgid "" "`bpo-21983 `__: Fix a crash in " "`ctypes.cast()` in case the type argument is a ctypes structured data type. " "Patch by Eryk Sun and Oren Milman." msgstr "" -#: ../../../build/NEWS:3934 +#: ../../../build/NEWS:4157 msgid "" "`bpo-31577 `__: Fix a crash in " "`os.utime()` in case of a bad ns argument. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:3937 +#: ../../../build/NEWS:4160 msgid "" "`bpo-29832 `__: Remove references to " "'getsockaddrarg' from various socket error messages. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:3943 +#: ../../../build/NEWS:4166 msgid "" "`bpo-35845 `__: Add 'order' parameter to" " memoryview.tobytes()." msgstr "" -#: ../../../build/NEWS:3945 +#: ../../../build/NEWS:4168 msgid "" "`bpo-35864 `__: The _asdict() method for" " collections.namedtuple now returns a regular dict instead of an " "OrderedDict." msgstr "" -#: ../../../build/NEWS:3948 +#: ../../../build/NEWS:4171 msgid "" "`bpo-35537 `__: An ExitStack is now used" " internally within subprocess.POpen to clean up pipe file handles. No " @@ -7618,19 +8041,19 @@ msgid "" " by Giampaolo Rodola)" msgstr "" -#: ../../../build/NEWS:3953 +#: ../../../build/NEWS:4176 msgid "" "`bpo-35847 `__: RISC-V needed the " "CTYPES_PASS_BY_REF_HACK. Fixes ctypes Structure test_pass_by_value." msgstr "" -#: ../../../build/NEWS:3956 +#: ../../../build/NEWS:4179 msgid "" "`bpo-35813 `__: Shared memory submodule " "added to multiprocessing to avoid need for serialization between processes" msgstr "" -#: ../../../build/NEWS:3959 +#: ../../../build/NEWS:4182 msgid "" "`bpo-35780 `__: Fix lru_cache() errors " "arising in recursive, reentrant, or multi-threaded code. These errors could " @@ -7645,98 +8068,98 @@ msgid "" "times the underlying user function was called." msgstr "" -#: ../../../build/NEWS:3971 +#: ../../../build/NEWS:4194 msgid "" "`bpo-35537 `__: :func:`os.posix_spawn` " "and :func:`os.posix_spawnp` now have a *setsid* parameter." msgstr "" -#: ../../../build/NEWS:3974 +#: ../../../build/NEWS:4197 msgid "" "`bpo-23846 `__: " ":class:`asyncio.ProactorEventLoop` now catches and logs send errors when the" " self-pipe is full." msgstr "" -#: ../../../build/NEWS:3977 +#: ../../../build/NEWS:4200 msgid "" "`bpo-34323 `__: :mod:`asyncio`: Enhance " "``IocpProactor.close()`` log: wait 1 second before the first log, then log " "every second. Log also the number of seconds since ``close()`` was called." msgstr "" -#: ../../../build/NEWS:3981 +#: ../../../build/NEWS:4204 msgid "" "`bpo-35674 `__: Add a new " ":func:`os.posix_spawnp` function. Patch by Joannah Nanjekye." msgstr "" -#: ../../../build/NEWS:3984 +#: ../../../build/NEWS:4207 msgid "" "`bpo-35733 `__: " "``ast.Constant(boolean)`` no longer an instance of :class:`ast.Num`. Patch " "by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:3987 +#: ../../../build/NEWS:4210 msgid "" "`bpo-35726 `__: QueueHandler.prepare() " "now makes a copy of the record before modifying and enqueueing it, to avoid " "affecting other handlers in the chain." msgstr "" -#: ../../../build/NEWS:3991 +#: ../../../build/NEWS:4214 msgid "" "`bpo-35719 `__: Sped up multi-argument " ":mod:`math` functions atan2(), copysign(), remainder() and hypot() by 1.3--" "2.5 times." msgstr "" -#: ../../../build/NEWS:3994 +#: ../../../build/NEWS:4217 msgid "" "`bpo-35717 `__: Fix KeyError exception " "raised when using enums and compile. Patch contributed by Rémi Lapeyre." msgstr "" -#: ../../../build/NEWS:3997 +#: ../../../build/NEWS:4220 msgid "" "`bpo-35699 `__: Fixed detection of " "Visual Studio Build Tools 2017 in distutils" msgstr "" -#: ../../../build/NEWS:3999 +#: ../../../build/NEWS:4222 msgid "" "`bpo-32710 `__: Fix memory leaks in " "asyncio ProactorEventLoop on overlapped operation failure." msgstr "" -#: ../../../build/NEWS:4002 +#: ../../../build/NEWS:4225 msgid "" "`bpo-35702 `__: The " ":data:`time.CLOCK_UPTIME_RAW` constant is now available for macOS 10.12." msgstr "" -#: ../../../build/NEWS:4005 +#: ../../../build/NEWS:4228 msgid "" "`bpo-32710 `__: Fix a memory leak in " "asyncio in the ProactorEventLoop when ``ReadFile()`` or ``WSASend()`` " "overlapped operation fail immediately: release the internal buffer." msgstr "" -#: ../../../build/NEWS:4009 +#: ../../../build/NEWS:4232 msgid "" "`bpo-35682 `__: Fix " "``asyncio.ProactorEventLoop.sendfile()``: don't attempt to set the result of" " an internal future if it's already done." msgstr "" -#: ../../../build/NEWS:4012 +#: ../../../build/NEWS:4235 msgid "" "`bpo-35283 `__: Add a deprecated warning" " for the :meth:`threading.Thread.isAlive` method. Patch by Dong-hee Na." msgstr "" -#: ../../../build/NEWS:4015 +#: ../../../build/NEWS:4238 msgid "" "`bpo-35664 `__: Improve " "operator.itemgetter() performance by 33% with optimized argument handling " @@ -7745,52 +8168,52 @@ msgid "" "library)." msgstr "" -#: ../../../build/NEWS:4020 +#: ../../../build/NEWS:4243 msgid "" "`bpo-35643 `__: Fixed a SyntaxWarning: " "invalid escape sequence in Modules/_sha3/cleanup.py. Patch by Mickaël " "Schoentgen." msgstr "" -#: ../../../build/NEWS:4023 +#: ../../../build/NEWS:4246 msgid "" "`bpo-35619 `__: Improved support of " "custom data descriptors in :func:`help` and :mod:`pydoc`." msgstr "" -#: ../../../build/NEWS:4026 +#: ../../../build/NEWS:4249 msgid "" "`bpo-28503 `__: The `crypt` module now " "internally uses the `crypt_r()` library function instead of `crypt()` when " "available." msgstr "" -#: ../../../build/NEWS:4029 +#: ../../../build/NEWS:4252 msgid "" "`bpo-35614 `__: Fixed help() on " "metaclasses. Patch by Sanyam Khurana." msgstr "" -#: ../../../build/NEWS:4031 +#: ../../../build/NEWS:4254 msgid "" "`bpo-35568 `__: Expose ``raise(signum)``" " as `raise_signal`" msgstr "" -#: ../../../build/NEWS:4033 +#: ../../../build/NEWS:4256 msgid "" "`bpo-35588 `__: The floor division and " "modulo operations and the :func:`divmod` function on " ":class:`fractions.Fraction` types are 2--4x faster. Patch by Stefan Behnel." msgstr "" -#: ../../../build/NEWS:4037 +#: ../../../build/NEWS:4260 msgid "" "`bpo-35585 `__: Speed-up building enums " "by value, e.g. http.HTTPStatus(200)." msgstr "" -#: ../../../build/NEWS:4039 +#: ../../../build/NEWS:4262 msgid "" "`bpo-30561 `__: random.gammavariate(1.0," " beta) now computes the same result as random.expovariate(1.0 / beta). This" @@ -7799,33 +8222,33 @@ msgid "" "variables than it used to." msgstr "" -#: ../../../build/NEWS:4044 +#: ../../../build/NEWS:4267 msgid "" "`bpo-35537 `__: The :mod:`subprocess` " "module can now use the :func:`os.posix_spawn` function in some cases for " "better performance." msgstr "" -#: ../../../build/NEWS:4047 +#: ../../../build/NEWS:4270 msgid "" "`bpo-35526 `__: Delaying the 'joke' of " "barry_as_FLUFL.mandatory to Python version 4.0" msgstr "" -#: ../../../build/NEWS:4050 +#: ../../../build/NEWS:4273 msgid "" "`bpo-35523 `__: Remove :mod:`ctypes` " "callback workaround: no longer create a callback at startup. Avoid SELinux " "alert on ``import ctypes`` and ``import uuid``." msgstr "" -#: ../../../build/NEWS:4054 +#: ../../../build/NEWS:4277 msgid "" "`bpo-31784 `__: :func:`uuid.uuid1` now " "calls :func:`time.time_ns` rather than ``int(time.time() * 1e9)``." msgstr "" -#: ../../../build/NEWS:4057 +#: ../../../build/NEWS:4280 msgid "" "`bpo-35513 `__: " ":class:`~unittest.runner.TextTestRunner` of :mod:`unittest.runner` now uses " @@ -7834,14 +8257,14 @@ msgid "" ":func:`time.perf_counter` is monotonic." msgstr "" -#: ../../../build/NEWS:4063 +#: ../../../build/NEWS:4286 msgid "" "`bpo-35502 `__: Fixed reference leaks in" " :class:`xml.etree.ElementTree.TreeBuilder` in case of unfinished building " "of the tree (in particular when an error was raised during parsing XML)." msgstr "" -#: ../../../build/NEWS:4067 +#: ../../../build/NEWS:4290 msgid "" "`bpo-35348 `__: Make " ":func:`platform.architecture` parsing of ``file`` command output more " @@ -7850,7 +8273,7 @@ msgid "" "object\" pattern." msgstr "" -#: ../../../build/NEWS:4072 +#: ../../../build/NEWS:4295 msgid "" "`bpo-35491 `__: :mod:`multiprocessing`: " "Add ``Pool.__repr__()`` and enhance ``BaseProcess.__repr__()`` (add pid and " @@ -7859,74 +8282,74 @@ msgid "" "``0``." msgstr "" -#: ../../../build/NEWS:4077 +#: ../../../build/NEWS:4300 msgid "" "`bpo-35477 `__: " ":meth:`multiprocessing.Pool.__enter__` now fails if the pool is not running:" " ``with pool:`` fails if used more than once." msgstr "" -#: ../../../build/NEWS:4080 +#: ../../../build/NEWS:4303 msgid "" "`bpo-31446 `__: Copy command line that " "was passed to CreateProcessW since this function can change the content of " "the input buffer." msgstr "" -#: ../../../build/NEWS:4083 +#: ../../../build/NEWS:4306 msgid "" "`bpo-35471 `__: Python 2.4 dropped MacOS" " 9 support. The macpath module was deprecated in Python 3.7. The module is " "now removed." msgstr "" -#: ../../../build/NEWS:4086 +#: ../../../build/NEWS:4309 msgid "" "`bpo-23057 `__: Unblock Proactor event " "loop when keyboard interrupt is received on Windows" msgstr "" -#: ../../../build/NEWS:4089 +#: ../../../build/NEWS:4312 msgid "" "`bpo-35052 `__: Fix xml.dom.minidom " "cloneNode() on a document with an entity: pass the correct arguments to the " "user data handler of an entity." msgstr "" -#: ../../../build/NEWS:4092 +#: ../../../build/NEWS:4315 msgid "" "`bpo-20239 `__: Allow repeated " "assignment deletion of :class:`unittest.mock.Mock` attributes. Patch by " "Pablo Galindo." msgstr "" -#: ../../../build/NEWS:4095 +#: ../../../build/NEWS:4318 msgid "" "`bpo-17185 `__: Set ``__signature__`` on" " mock for :mod:`inspect` to get signature. Patch by Karthikeyan " "Singaravelan." msgstr "" -#: ../../../build/NEWS:4098 +#: ../../../build/NEWS:4321 msgid "" "`bpo-35445 `__: Memory errors during " "creating posix.environ no longer ignored." msgstr "" -#: ../../../build/NEWS:4100 +#: ../../../build/NEWS:4323 msgid "" "`bpo-35415 `__: Validate fileno= " "argument to socket.socket()." msgstr "" -#: ../../../build/NEWS:4102 +#: ../../../build/NEWS:4325 msgid "" "`bpo-35424 `__: " ":class:`multiprocessing.Pool` destructor now emits :exc:`ResourceWarning` if" " the pool is still running." msgstr "" -#: ../../../build/NEWS:4105 +#: ../../../build/NEWS:4328 msgid "" "`bpo-35330 `__: When a :class:`Mock` " "instance was used to wrap an object, if `side_effect` is used in one of the " @@ -7935,14 +8358,14 @@ msgid "" "return_value." msgstr "" -#: ../../../build/NEWS:4110 +#: ../../../build/NEWS:4333 msgid "" "`bpo-35346 `__: Drop Mac OS 9 and " "Rhapsody support from the :mod:`platform` module. Rhapsody last release was " "in 2000. Mac OS 9 last release was in 2001." msgstr "" -#: ../../../build/NEWS:4114 +#: ../../../build/NEWS:4337 msgid "" "`bpo-10496 `__: " ":func:`~distutils.utils.check_environ` of :mod:`distutils.utils` now catches" @@ -7950,7 +8373,7 @@ msgid "" "environment variable in this case." msgstr "" -#: ../../../build/NEWS:4119 +#: ../../../build/NEWS:4342 msgid "" "`bpo-10496 `__: " ":func:`posixpath.expanduser` now returns the input *path* unchanged if the " @@ -7960,20 +8383,20 @@ msgid "" "doesn't exist in the password database (if the user has no home directory)." msgstr "" -#: ../../../build/NEWS:4126 +#: ../../../build/NEWS:4349 msgid "" "`bpo-35389 `__: " ":func:`platform.libc_ver` now uses ``os.confstr('CS_GNU_LIBC_VERSION')`` if " "available and the *executable* parameter is not set." msgstr "" -#: ../../../build/NEWS:4130 +#: ../../../build/NEWS:4353 msgid "" "`bpo-35394 `__: Add empty slots to " "asyncio abstract protocols." msgstr "" -#: ../../../build/NEWS:4132 +#: ../../../build/NEWS:4355 msgid "" "`bpo-35310 `__: Fix a bug in " ":func:`select.select` where, in some cases, the file descriptor sequences " @@ -7982,32 +8405,32 @@ msgid "" "return empty lists if a timeout has occurred. Patch by Oran Avraham." msgstr "" -#: ../../../build/NEWS:4138 +#: ../../../build/NEWS:4361 msgid "" "`bpo-35380 `__: Enable TCP_NODELAY on " "Windows for proactor asyncio event loop." msgstr "" -#: ../../../build/NEWS:4140 +#: ../../../build/NEWS:4363 msgid "" "`bpo-35341 `__: Add generic version of " "``collections.OrderedDict`` to the ``typing`` module. Patch by Ismo Toijala." msgstr "" -#: ../../../build/NEWS:4143 +#: ../../../build/NEWS:4366 msgid "" "`bpo-35371 `__: Fixed possible crash in " "``os.utime()`` on Windows when pass incorrect arguments." msgstr "" -#: ../../../build/NEWS:4146 +#: ../../../build/NEWS:4369 msgid "" "`bpo-35346 `__: :func:`platform.uname` " "now redirects ``stderr`` to :data:`os.devnull` when running external " "programs like ``cmd /c ver``." msgstr "" -#: ../../../build/NEWS:4149 +#: ../../../build/NEWS:4372 msgid "" "`bpo-35066 `__: Previously, calling the " "strftime() method on a datetime object with a trailing '%' in the format " @@ -8017,14 +8440,14 @@ msgid "" "exception on a trailing '%'." msgstr "" -#: ../../../build/NEWS:4155 +#: ../../../build/NEWS:4378 msgid "" "`bpo-35345 `__: The function " "`platform.popen` has been removed, it was deprecated since Python 3.3: use " ":func:`os.popen` instead." msgstr "" -#: ../../../build/NEWS:4158 +#: ../../../build/NEWS:4381 msgid "" "`bpo-35344 `__: On macOS, " ":func:`platform.platform` now uses :func:`platform.mac_ver`, if it returns a" @@ -8032,28 +8455,28 @@ msgid "" "version." msgstr "" -#: ../../../build/NEWS:4162 +#: ../../../build/NEWS:4385 msgid "" "`bpo-35312 `__: Make " "``lib2to3.pgen2.parse.ParseError`` round-trip pickle-able. Patch by Anthony " "Sottile." msgstr "" -#: ../../../build/NEWS:4165 +#: ../../../build/NEWS:4388 msgid "" "`bpo-35308 `__: Fix regression in " "``webbrowser`` where default browsers may be preferred over browsers in the " "``BROWSER`` environment variable." msgstr "" -#: ../../../build/NEWS:4168 +#: ../../../build/NEWS:4391 msgid "" "`bpo-24746 `__: Avoid stripping trailing" " whitespace in doctest fancy diff. Original patch by R. David Murray & Jairo" " Trad. Enhanced by Sanyam Khurana." msgstr "" -#: ../../../build/NEWS:4172 +#: ../../../build/NEWS:4395 msgid "" "`bpo-28604 `__: " ":func:`locale.localeconv` now sets temporarily the ``LC_CTYPE`` locale to " @@ -8061,19 +8484,19 @@ msgid "" "strings are non-ASCII. This temporary change affects other threads." msgstr "" -#: ../../../build/NEWS:4177 +#: ../../../build/NEWS:4400 msgid "" "`bpo-35277 `__: Update ensurepip to " "install pip 18.1 and setuptools 40.6.2." msgstr "" -#: ../../../build/NEWS:4179 +#: ../../../build/NEWS:4402 msgid "" "`bpo-24209 `__: Adds IPv6 support when " "invoking http.server directly." msgstr "" -#: ../../../build/NEWS:4181 +#: ../../../build/NEWS:4404 msgid "" "`bpo-35226 `__: Recursively check " "arguments when testing for equality of :class:`unittest.mock.call` objects " @@ -8081,46 +8504,46 @@ msgid "" "in ``mock_calls`` is not possible." msgstr "" -#: ../../../build/NEWS:4186 +#: ../../../build/NEWS:4409 msgid "" "`bpo-29564 `__: The warnings module now " "suggests to enable tracemalloc if the source is specified, the tracemalloc " "module is available, but tracemalloc is not tracing memory allocations." msgstr "" -#: ../../../build/NEWS:4190 +#: ../../../build/NEWS:4413 msgid "" "`bpo-35189 `__: Modify the following " "fnctl function to retry if interrupted by a signal (EINTR): flock, lockf, " "fnctl" msgstr "" -#: ../../../build/NEWS:4193 +#: ../../../build/NEWS:4416 msgid "" "`bpo-30064 `__: Use add_done_callback() " "in sock_* asyncio API to unsubscribe reader/writer early on calcellation." msgstr "" -#: ../../../build/NEWS:4196 +#: ../../../build/NEWS:4419 msgid "" "`bpo-35186 `__: Removed the \"built " "with\" comment added when ``setup.py upload`` is used with either " "``bdist_rpm`` or ``bdist_dumb``." msgstr "" -#: ../../../build/NEWS:4199 +#: ../../../build/NEWS:4422 msgid "" "`bpo-35152 `__: Allow sending more than " "2 GB at once on a multiprocessing connection on non-Windows systems." msgstr "" -#: ../../../build/NEWS:4202 +#: ../../../build/NEWS:4425 msgid "" "`bpo-35062 `__: Fix incorrect parsing of" " :class:`_io.IncrementalNewlineDecoder`'s *translate* argument." msgstr "" -#: ../../../build/NEWS:4205 +#: ../../../build/NEWS:4428 msgid "" "`bpo-35065 `__: Remove " "`StreamReaderProtocol._untrack_reader`. The call to `_untrack_reader` is " @@ -8128,20 +8551,20 @@ msgid "" "reader before `connection_lost` can run and feed the EOF to the reader." msgstr "" -#: ../../../build/NEWS:4210 +#: ../../../build/NEWS:4433 msgid "" "`bpo-34160 `__: ElementTree and minidom " "now preserve the attribute order specified by the user." msgstr "" -#: ../../../build/NEWS:4213 +#: ../../../build/NEWS:4436 msgid "" "`bpo-35079 `__: Improve " "difflib.SequenceManager.get_matching_blocks doc by adding 'non-overlapping' " "and changing '!=' to '<'." msgstr "" -#: ../../../build/NEWS:4216 +#: ../../../build/NEWS:4439 msgid "" "`bpo-33710 `__: Deprecated " "``l*gettext()`` functions and methods in the :mod:`gettext` module. They " @@ -8150,7 +8573,7 @@ msgid "" " charset for ``l*gettext()`` functions and methods." msgstr "" -#: ../../../build/NEWS:4222 +#: ../../../build/NEWS:4445 msgid "" "`bpo-35017 `__: " ":meth:`socketserver.BaseServer.serve_forever` now exits immediately if it's " @@ -8158,14 +8581,14 @@ msgid "" "polling for new events." msgstr "" -#: ../../../build/NEWS:4226 +#: ../../../build/NEWS:4449 msgid "" "`bpo-35024 `__: `importlib` no longer " "logs `wrote ` redundantly after `(created|could not create) " "` is already logged. Patch by Quentin Agren." msgstr "" -#: ../../../build/NEWS:4230 +#: ../../../build/NEWS:4453 msgid "" "`bpo-35047 `__: ``unittest.mock`` now " "includes mock calls in exception messages if ``assert_not_called``, " @@ -8173,14 +8596,14 @@ msgid "" "Petter Strandmark." msgstr "" -#: ../../../build/NEWS:4234 +#: ../../../build/NEWS:4457 msgid "" "`bpo-31047 `__: Fix ``ntpath.abspath`` " "regression where it didn't remove a trailing separator on Windows. Patch by " "Tim Graham." msgstr "" -#: ../../../build/NEWS:4237 +#: ../../../build/NEWS:4460 msgid "" "`bpo-35053 `__: tracemalloc now tries to" " update the traceback when an object is reused from a \"free list\" " @@ -8188,32 +8611,32 @@ msgid "" "example)." msgstr "" -#: ../../../build/NEWS:4241 +#: ../../../build/NEWS:4464 msgid "" "`bpo-31553 `__: Add the --json-lines " "option to json.tool. Patch by hongweipeng." msgstr "" -#: ../../../build/NEWS:4243 +#: ../../../build/NEWS:4466 msgid "" "`bpo-34794 `__: Fixed a leak in Tkinter " "when pass the Python wrapper around Tcl_Obj back to Tcl/Tk." msgstr "" -#: ../../../build/NEWS:4246 +#: ../../../build/NEWS:4469 msgid "" "`bpo-34909 `__: Enum: fix grandchildren " "subclassing when parent mixed with concrete data types." msgstr "" -#: ../../../build/NEWS:4249 +#: ../../../build/NEWS:4472 msgid "" "`bpo-35022 `__: " ":class:`unittest.mock.MagicMock` now supports the ``__fspath__`` method " "(from :class:`os.PathLike`)." msgstr "" -#: ../../../build/NEWS:4252 +#: ../../../build/NEWS:4475 msgid "" "`bpo-35008 `__: Fixed references leaks " "when call the ``__setstate__()`` method of " @@ -8221,19 +8644,19 @@ msgid "" "initialized element." msgstr "" -#: ../../../build/NEWS:4256 +#: ../../../build/NEWS:4479 msgid "" "`bpo-23420 `__: Verify the value for the" " parameter '-s' of the cProfile CLI. Patch by Robert Kuska" msgstr "" -#: ../../../build/NEWS:4259 +#: ../../../build/NEWS:4482 msgid "" "`bpo-33947 `__: dataclasses now handle " "recursive reprs without raising RecursionError." msgstr "" -#: ../../../build/NEWS:4262 +#: ../../../build/NEWS:4485 msgid "" "`bpo-34890 `__: Make " ":func:`inspect.iscoroutinefunction`, :func:`inspect.isgeneratorfunction` and" @@ -8241,7 +8664,7 @@ msgid "" "Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:4266 +#: ../../../build/NEWS:4489 msgid "" "`bpo-34521 `__: Use " ":func:`socket.CMSG_SPACE` to calculate ancillary data size instead of " @@ -8249,20 +8672,20 @@ msgid "" ":rfc:`3542` requires the use of the former for portable applications." msgstr "" -#: ../../../build/NEWS:4271 +#: ../../../build/NEWS:4494 msgid "" "`bpo-31522 `__: The " "`mailbox.mbox.get_string` function *from_* parameter can now successfully be" " set to a non-default value." msgstr "" -#: ../../../build/NEWS:4274 +#: ../../../build/NEWS:4497 msgid "" "`bpo-34970 `__: Protect tasks weak set " "manipulation in ``asyncio.all_tasks()``" msgstr "" -#: ../../../build/NEWS:4276 +#: ../../../build/NEWS:4499 msgid "" "`bpo-34969 `__: gzip: Add --fast, --best" " on the gzip CLI, these parameters will be used for the fast compression " @@ -8270,34 +8693,34 @@ msgid "" " change the default compression level to 6 (tradeoff)." msgstr "" -#: ../../../build/NEWS:4281 +#: ../../../build/NEWS:4504 msgid "" "`bpo-16965 `__: The :term:`2to3` " ":2to3fixer:`execfile` fixer now opens the file with mode ``'rb'``. Patch by" " Zackery Spytz." msgstr "" -#: ../../../build/NEWS:4284 +#: ../../../build/NEWS:4507 msgid "" "`bpo-34966 `__: :mod:`pydoc` now " "supports aliases not only to methods defined in the end class, but also to " "inherited methods. The docstring is not duplicated for aliases." msgstr "" -#: ../../../build/NEWS:4288 +#: ../../../build/NEWS:4511 msgid "" "`bpo-34926 `__: " ":meth:`mimetypes.MimeTypes.guess_type` now accepts :term:`path-like object` " "in addition to url strings. Patch by Mayank Asthana." msgstr "" -#: ../../../build/NEWS:4292 +#: ../../../build/NEWS:4515 msgid "" "`bpo-23831 `__: Add ``moveto()`` method " "to the ``tkinter.Canvas`` widget. Patch by Juliette Monsel." msgstr "" -#: ../../../build/NEWS:4295 +#: ../../../build/NEWS:4518 msgid "" "`bpo-34941 `__: Methods ``find()``, " "``findtext()`` and ``findall()`` of the ``Element`` class in the " @@ -8305,26 +8728,26 @@ msgid "" "instances of ``Element`` subclasses." msgstr "" -#: ../../../build/NEWS:4299 +#: ../../../build/NEWS:4522 msgid "" "`bpo-32680 `__: :class:`smtplib.SMTP` " "objects now always have a `sock` attribute present" msgstr "" -#: ../../../build/NEWS:4302 +#: ../../../build/NEWS:4525 msgid "" "`bpo-34769 `__: Fix for async generators" " not finalizing when event loop is in debug mode and garbage collector runs " "in another thread." msgstr "" -#: ../../../build/NEWS:4305 +#: ../../../build/NEWS:4528 msgid "" "`bpo-34936 `__: Fix ``TclError`` in " "``tkinter.Spinbox.selection_element()``. Patch by Juliette Monsel." msgstr "" -#: ../../../build/NEWS:4308 +#: ../../../build/NEWS:4531 msgid "" "`bpo-34829 `__: Add methods " "``selection_from``, ``selection_range``, ``selection_present`` and " @@ -8332,7 +8755,7 @@ msgid "" "``tkinter.Entry`` widget. Patch by Juliette Monsel." msgstr "" -#: ../../../build/NEWS:4312 +#: ../../../build/NEWS:4535 msgid "" "`bpo-34911 `__: Added *secure_protocols*" " argument to *http.cookiejar.DefaultCookiePolicy* to allow for tweaking of " @@ -8340,7 +8763,7 @@ msgid "" " protocol." msgstr "" -#: ../../../build/NEWS:4317 +#: ../../../build/NEWS:4540 msgid "" "`bpo-34922 `__: Fixed integer overflow " "in the :meth:`~hashlib.shake.digest()` and " @@ -8348,20 +8771,20 @@ msgid "" ":mod:`hashlib` module." msgstr "" -#: ../../../build/NEWS:4321 +#: ../../../build/NEWS:4544 msgid "" "`bpo-34925 `__: 25% speedup in argument " "parsing for the functions in the bisect module." msgstr "" -#: ../../../build/NEWS:4324 +#: ../../../build/NEWS:4547 msgid "" "`bpo-34900 `__: Fixed " ":meth:`unittest.TestCase.debug` when used to call test methods with " "subtests. Patch by Bruno Oliveira." msgstr "" -#: ../../../build/NEWS:4327 +#: ../../../build/NEWS:4550 msgid "" "`bpo-34844 `__: logging.Formatter " "enhancement - Ensure styles and fmt matches in logging.Formatter - Added " @@ -8372,33 +8795,33 @@ msgid "" "invalid format fields." msgstr "" -#: ../../../build/NEWS:4334 +#: ../../../build/NEWS:4557 msgid "" "`bpo-34897 `__: Adjust " "test.support.missing_compiler_executable check so that a nominal command " "name of \"\" is ignored. Patch by Michael Felt." msgstr "" -#: ../../../build/NEWS:4337 +#: ../../../build/NEWS:4560 msgid "" "`bpo-34871 `__: Fix inspect module " "polluted ``sys.modules`` when parsing ``__text_signature__`` of callable." msgstr "" -#: ../../../build/NEWS:4340 +#: ../../../build/NEWS:4563 msgid "" "`bpo-34898 `__: Add `mtime` argument to " "`gzip.compress` for reproducible output. Patch by Guo Ci Teo." msgstr "" -#: ../../../build/NEWS:4343 +#: ../../../build/NEWS:4566 msgid "" "`bpo-28441 `__: On Cygwin and MinGW, " "ensure that ``sys.executable`` always includes the full filename in the " "path, including the ``.exe`` suffix (unless it is a symbolic link)." msgstr "" -#: ../../../build/NEWS:4347 +#: ../../../build/NEWS:4570 msgid "" "`bpo-34866 `__: Adding " "``max_num_fields`` to ``cgi.FieldStorage`` to make DOS attacks harder by " @@ -8406,7 +8829,7 @@ msgid "" "``FieldStorage``." msgstr "" -#: ../../../build/NEWS:4351 +#: ../../../build/NEWS:4574 msgid "" "`bpo-34711 `__: http.server ensures it " "reports HTTPStatus.NOT_FOUND when the local path ends with \"/\" and is not " @@ -8414,13 +8837,13 @@ msgid "" "valid file reference. Patch by Michael Felt." msgstr "" -#: ../../../build/NEWS:4356 +#: ../../../build/NEWS:4579 msgid "" "`bpo-34872 `__: Fix self-cancellation in" " C implementation of asyncio.Task" msgstr "" -#: ../../../build/NEWS:4358 +#: ../../../build/NEWS:4581 msgid "" "`bpo-34849 `__: Don't log waiting for " "``selector.select`` in asyncio loop iteration. The waiting is pretty normal " @@ -8428,7 +8851,7 @@ msgid "" "any useful information provided." msgstr "" -#: ../../../build/NEWS:4363 +#: ../../../build/NEWS:4586 msgid "" "`bpo-34022 `__: The " ":envvar:`SOURCE_DATE_EPOCH` environment variable no longer overrides the " @@ -8436,46 +8859,46 @@ msgid "" " determines its default value instead." msgstr "" -#: ../../../build/NEWS:4367 +#: ../../../build/NEWS:4590 msgid "" "`bpo-34819 `__: Use a monotonic clock to" " compute timeouts in :meth:`Executor.map` and :func:`as_completed`, in order" " to prevent timeouts from deviating when the system clock is adjusted." msgstr "" -#: ../../../build/NEWS:4371 +#: ../../../build/NEWS:4594 msgid "" "`bpo-34758 `__: Add .wasm -> " "application/wasm to list of recognized file types and content type headers" msgstr "" -#: ../../../build/NEWS:4374 +#: ../../../build/NEWS:4597 msgid "" "`bpo-34789 `__: " ":func:`xml.sax.make_parser` now accepts any iterable as its *parser_list* " "argument. Patch by Andrés Delfino." msgstr "" -#: ../../../build/NEWS:4377 +#: ../../../build/NEWS:4600 msgid "" "`bpo-34334 `__: In " ":class:`QueueHandler`, clear `exc_text` from :class:`LogRecord` to prevent " "traceback from being written twice." msgstr "" -#: ../../../build/NEWS:4380 +#: ../../../build/NEWS:4603 msgid "" "`bpo-34687 `__: On Windows, asyncio now " "uses ProactorEventLoop, instead of SelectorEventLoop, by default." msgstr "" -#: ../../../build/NEWS:4383 +#: ../../../build/NEWS:4606 msgid "" "`bpo-5950 `__: Support reading zip files " "with archive comments in :mod:`zipimport`." msgstr "" -#: ../../../build/NEWS:4386 +#: ../../../build/NEWS:4609 msgid "" "`bpo-32892 `__: The parser now " "represents all constants as :class:`ast.Constant` instead of using specific " @@ -8484,60 +8907,60 @@ msgid "" "in future Python versions." msgstr "" -#: ../../../build/NEWS:4392 +#: ../../../build/NEWS:4615 msgid "" "`bpo-34728 `__: Add deprecation warning " "when `loop` is used in methods: `asyncio.sleep`, `asyncio.wait` and " "`asyncio.wait_for`." msgstr "" -#: ../../../build/NEWS:4395 +#: ../../../build/NEWS:4618 msgid "" "`bpo-34738 `__: ZIP files created by " ":mod:`distutils` will now include entries for directories." msgstr "" -#: ../../../build/NEWS:4398 +#: ../../../build/NEWS:4621 msgid "" "`bpo-34659 `__: Add an optional " "*initial* argument to itertools.accumulate()." msgstr "" -#: ../../../build/NEWS:4400 +#: ../../../build/NEWS:4623 msgid "" "`bpo-29577 `__: Support multiple mixin " "classes when creating Enums." msgstr "" -#: ../../../build/NEWS:4402 +#: ../../../build/NEWS:4625 msgid "" "`bpo-34670 `__: Add " "SSLContext.post_handshake_auth and SSLSocket.verify_client_post_handshake " "for TLS 1.3's post handshake authentication feature." msgstr "" -#: ../../../build/NEWS:4406 +#: ../../../build/NEWS:4629 msgid "" "`bpo-32718 `__: The Activate.ps1 script " "from venv works with PowerShell Core 6.1 and is now available under all " "operating systems." msgstr "" -#: ../../../build/NEWS:4409 +#: ../../../build/NEWS:4632 msgid "" "`bpo-31177 `__: Fix bug that prevented " "using :meth:`reset_mock ` on mock instances " "with deleted attributes" msgstr "" -#: ../../../build/NEWS:4412 +#: ../../../build/NEWS:4635 msgid "" "`bpo-34672 `__: Add a workaround, so the" " ``'Z'`` :func:`time.strftime` specifier on the musl C library can work in " "some cases." msgstr "" -#: ../../../build/NEWS:4415 +#: ../../../build/NEWS:4638 msgid "" "`bpo-34666 `__: Implement " "``asyncio.StreamWriter.awrite`` and ``asyncio.StreamWriter.aclose()`` " @@ -8545,14 +8968,14 @@ msgid "" "control flow switched on by default." msgstr "" -#: ../../../build/NEWS:4420 +#: ../../../build/NEWS:4643 msgid "" "`bpo-6721 `__: Acquire the logging " "module's commonly used internal locks while fork()ing to avoid deadlocks in " "the child process." msgstr "" -#: ../../../build/NEWS:4423 +#: ../../../build/NEWS:4646 msgid "" "`bpo-34658 `__: Fix a rare interpreter " "unhandled exception state SystemError only seen when using subprocess with a" @@ -8560,13 +8983,13 @@ msgid "" "os.register_at_fork and the fork system call fails." msgstr "" -#: ../../../build/NEWS:4428 +#: ../../../build/NEWS:4651 msgid "" "`bpo-34652 `__: Ensure :func:`os.lchmod`" " is never defined on Linux." msgstr "" -#: ../../../build/NEWS:4430 +#: ../../../build/NEWS:4653 msgid "" "`bpo-34638 `__: Store a weak reference " "to stream reader to break strong references loop between reader and " @@ -8574,20 +8997,20 @@ msgid "" " (garbage collected) without ``close()`` call." msgstr "" -#: ../../../build/NEWS:4435 +#: ../../../build/NEWS:4658 msgid "" "`bpo-34536 `__: `Enum._missing_`: raise" " `ValueError` if None returned and `TypeError` if non-member is returned." msgstr "" -#: ../../../build/NEWS:4438 +#: ../../../build/NEWS:4661 msgid "" "`bpo-34636 `__: Speed up re scanning of " "many non-matching characters for \\s \\w and \\d within bytes objects. " "(microoptimization)" msgstr "" -#: ../../../build/NEWS:4441 +#: ../../../build/NEWS:4664 msgid "" "`bpo-24412 `__: Add " ":func:`~unittest.addModuleCleanup()` and " @@ -8596,40 +9019,40 @@ msgid "" ":meth:`~unittest.TestCase.setUpClass()`. Patch by Lisa Roach." msgstr "" -#: ../../../build/NEWS:4446 +#: ../../../build/NEWS:4669 msgid "" "`bpo-34630 `__: Don't log SSL " "certificate errors in asyncio code (connection error logging is skipped " "already)." msgstr "" -#: ../../../build/NEWS:4449 +#: ../../../build/NEWS:4672 msgid "" "`bpo-32490 `__: Prevent filename " "duplication in :mod:`subprocess` exception messages. Patch by Zackery " "Spytz." msgstr "" -#: ../../../build/NEWS:4452 +#: ../../../build/NEWS:4675 msgid "" "`bpo-34363 `__: dataclasses.asdict() and" " .astuple() now handle namedtuples correctly." msgstr "" -#: ../../../build/NEWS:4455 +#: ../../../build/NEWS:4678 msgid "" "`bpo-34625 `__: Update vendorized expat " "library version to 2.2.6." msgstr "" -#: ../../../build/NEWS:4457 +#: ../../../build/NEWS:4680 msgid "" "`bpo-32270 `__: The subprocess module no" " longer mistakenly closes redirected fds even when they were in pass_fds " "when outside of the default {0, 1, 2} set." msgstr "" -#: ../../../build/NEWS:4461 +#: ../../../build/NEWS:4684 msgid "" "`bpo-34622 `__: Create a dedicated " "``asyncio.CancelledError``, ``asyncio.InvalidStateError`` and " @@ -8638,19 +9061,19 @@ msgid "" "exceptions into a separate file." msgstr "" -#: ../../../build/NEWS:4467 +#: ../../../build/NEWS:4690 msgid "" "`bpo-34610 `__: Fixed iterator of " ":class:`multiprocessing.managers.DictProxy`." msgstr "" -#: ../../../build/NEWS:4469 +#: ../../../build/NEWS:4692 msgid "" "`bpo-34421 `__: Fix distutils logging " "for non-ASCII strings. This caused installation issues on Windows." msgstr "" -#: ../../../build/NEWS:4472 +#: ../../../build/NEWS:4695 msgid "" "`bpo-34604 `__: Fix possible mojibake in" " the error message of `pwd.getpwnam` and `grp.getgrnam` using string " @@ -8658,54 +9081,54 @@ msgid "" "Patch by William Grzybowski." msgstr "" -#: ../../../build/NEWS:4476 +#: ../../../build/NEWS:4699 msgid "" "`bpo-30977 `__: Make uuid.UUID use " "``__slots__`` to reduce its memory footprint. Based on original patch by " "Wouter Bolsterlee." msgstr "" -#: ../../../build/NEWS:4479 +#: ../../../build/NEWS:4702 msgid "" "`bpo-34574 `__: OrderedDict iterators " "are not exhausted during pickling anymore. Patch by Sergey Fedoseev." msgstr "" -#: ../../../build/NEWS:4482 +#: ../../../build/NEWS:4705 msgid "" "`bpo-8110 `__: Refactored " ":mod:`subprocess` to check for Windows-specific modules rather than " "``sys.platform == 'win32'``." msgstr "" -#: ../../../build/NEWS:4485 +#: ../../../build/NEWS:4708 msgid "" "`bpo-34530 `__: " "``distutils.spawn.find_executable()`` now falls back on :data:`os.defpath` " "if the ``PATH`` environment variable is not set." msgstr "" -#: ../../../build/NEWS:4488 +#: ../../../build/NEWS:4711 msgid "" "`bpo-34563 `__: On Windows, fix " "multiprocessing.Connection for very large read: fix _winapi.PeekNamedPipe() " "and _winapi.ReadFile() for read larger than INT_MAX (usually 2^31-1)." msgstr "" -#: ../../../build/NEWS:4492 +#: ../../../build/NEWS:4715 msgid "" "`bpo-34558 `__: Correct typo in " "Lib/ctypes/_aix.py" msgstr "" -#: ../../../build/NEWS:4494 +#: ../../../build/NEWS:4717 msgid "" "`bpo-34282 `__: Move ``Enum._convert`` " "to ``EnumMeta._convert_`` and fix enum members getting shadowed by parent " "attributes." msgstr "" -#: ../../../build/NEWS:4497 +#: ../../../build/NEWS:4720 msgid "" "`bpo-22872 `__: When the queue is " "closed, :exc:`ValueError` is now raised by :meth:`multiprocessing.Queue.put`" @@ -8713,20 +9136,20 @@ msgid "" ":exc:`OSError`, respectively. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:4502 +#: ../../../build/NEWS:4725 msgid "" "`bpo-34515 `__: Fix parsing non-ASCII " "identifiers in :mod:`lib2to3.pgen2.tokenize` (PEP 3131)." msgstr "" -#: ../../../build/NEWS:4505 +#: ../../../build/NEWS:4728 msgid "" "`bpo-13312 `__: Avoids a possible " "integer underflow (undefined behavior) in the time module's year handling " "code when passed a very low negative year value." msgstr "" -#: ../../../build/NEWS:4509 +#: ../../../build/NEWS:4732 msgid "" "`bpo-34472 `__: Improved compatibility " "for streamed files in :mod:`zipfile`. Previously an optional signature was " @@ -8734,7 +9157,7 @@ msgid "" "Silas Sewell." msgstr "" -#: ../../../build/NEWS:4513 +#: ../../../build/NEWS:4736 msgid "" "`bpo-34454 `__: Fix the .fromisoformat()" " methods of datetime types crashing when given unicode with non-" @@ -8743,84 +9166,84 @@ msgid "" "tests by Alexey Izbyshev, patch by Paul Ganssle." msgstr "" -#: ../../../build/NEWS:4518 +#: ../../../build/NEWS:4741 msgid "" "`bpo-6700 `__: Fix inspect.getsourcelines" " for module level frames/tracebacks. Patch by Vladimir Matveev." msgstr "" -#: ../../../build/NEWS:4521 +#: ../../../build/NEWS:4744 msgid "" "`bpo-34171 `__: Running the :mod:`trace`" " module no longer creates the ``trace.cover`` file." msgstr "" -#: ../../../build/NEWS:4524 +#: ../../../build/NEWS:4747 msgid "" "`bpo-34441 `__: Fix crash when an " "``ABC``-derived class with invalid ``__subclasses__`` is passed as the " "second argument to :func:`issubclass()`. Patch by Alexey Izbyshev." msgstr "" -#: ../../../build/NEWS:4528 +#: ../../../build/NEWS:4751 msgid "" "`bpo-34427 `__: Fix infinite loop in " "``a.extend(a)`` for ``MutableSequence`` subclasses." msgstr "" -#: ../../../build/NEWS:4531 +#: ../../../build/NEWS:4754 msgid "" "`bpo-34412 `__: Make " ":func:`signal.strsignal` work on HP-UX. Patch by Michael Osipov." msgstr "" -#: ../../../build/NEWS:4534 +#: ../../../build/NEWS:4757 msgid "" "`bpo-20849 `__: shutil.copytree now " "accepts a new ``dirs_exist_ok`` keyword argument. Patch by Josh Bronson." msgstr "" -#: ../../../build/NEWS:4537 +#: ../../../build/NEWS:4760 msgid "" "`bpo-31715 `__: Associate ``.mjs`` file " "extension with ``application/javascript`` MIME Type." msgstr "" -#: ../../../build/NEWS:4540 +#: ../../../build/NEWS:4763 msgid "" "`bpo-34384 `__: :func:`os.readlink` now " "accepts :term:`path-like ` and :class:`bytes` objects on " "Windows." msgstr "" -#: ../../../build/NEWS:4543 +#: ../../../build/NEWS:4766 msgid "" "`bpo-22602 `__: The UTF-7 decoder now " "raises :exc:`UnicodeDecodeError` for ill-formed sequences starting with " "\"+\" (as specified in RFC 2152). Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:4547 +#: ../../../build/NEWS:4770 msgid "" "`bpo-2122 `__: The :meth:`mmap.flush() " "` method now returns ``None`` on success, raises an " "exception on error under all platforms." msgstr "" -#: ../../../build/NEWS:4550 +#: ../../../build/NEWS:4773 msgid "" "`bpo-34341 `__: Appending to the ZIP " "archive with the ZIP64 extension no longer grows the size of extra fields of" " existing entries." msgstr "" -#: ../../../build/NEWS:4553 +#: ../../../build/NEWS:4776 msgid "" "`bpo-34333 `__: Fix %-formatting in " ":meth:`pathlib.PurePath.with_suffix` when formatting an error message." msgstr "" -#: ../../../build/NEWS:4556 +#: ../../../build/NEWS:4779 msgid "" "`bpo-18540 `__: The " ":class:`imaplib.IMAP4` and :class:`imaplib.IMAP4_SSL` classes now resolve to" @@ -8828,14 +9251,14 @@ msgid "" "(``''``) is used." msgstr "" -#: ../../../build/NEWS:4560 +#: ../../../build/NEWS:4783 msgid "" "`bpo-26502 `__: Implement " "``traceback.FrameSummary.__len__()`` method to preserve compatibility with " "the old tuple API." msgstr "" -#: ../../../build/NEWS:4563 +#: ../../../build/NEWS:4786 msgid "" "`bpo-34318 `__: " ":func:`~unittest.TestCase.assertRaises`, " @@ -8847,21 +9270,21 @@ msgid "" "Python 3.5." msgstr "" -#: ../../../build/NEWS:4571 +#: ../../../build/NEWS:4794 msgid "" "`bpo-9372 `__: Deprecate " ":meth:`__getitem__` methods of :class:`xml.dom.pulldom.DOMEventStream`, " ":class:`wsgiref.util.FileWrapper` and :class:`fileinput.FileInput`." msgstr "" -#: ../../../build/NEWS:4575 +#: ../../../build/NEWS:4798 msgid "" "`bpo-33613 `__: Fix a race condition in " "``multiprocessing.semaphore_tracker`` when the tracker receives SIGINT " "before it can register signal handlers for ignoring it." msgstr "" -#: ../../../build/NEWS:4579 +#: ../../../build/NEWS:4802 msgid "" "`bpo-34248 `__: Report filename in the " "exception raised when the database file cannot be opened by " @@ -8869,32 +9292,32 @@ msgid "" "Patch by Zsolt Cserna." msgstr "" -#: ../../../build/NEWS:4583 +#: ../../../build/NEWS:4806 msgid "" "`bpo-33089 `__: Add math.dist() to " "compute the Euclidean distance between two points." msgstr "" -#: ../../../build/NEWS:4586 +#: ../../../build/NEWS:4809 msgid "" "`bpo-34246 `__: " ":meth:`smtplib.SMTP.send_message` no longer modifies the content of the " "*mail_options* argument. Patch by Pablo S. Blum de Aguiar." msgstr "" -#: ../../../build/NEWS:4589 +#: ../../../build/NEWS:4812 msgid "" "`bpo-31047 `__: Fix ``ntpath.abspath`` " "for invalid paths on windows. Patch by Franz Woellert." msgstr "" -#: ../../../build/NEWS:4592 +#: ../../../build/NEWS:4815 msgid "" "`bpo-32321 `__: Add pure Python fallback" " for functools.reduce. Patch by Robert Wright." msgstr "" -#: ../../../build/NEWS:4595 +#: ../../../build/NEWS:4818 msgid "" "`bpo-34270 `__: The default asyncio task" " class now always has a name which can be get or set using two new methods " @@ -8906,60 +9329,60 @@ msgid "" "like ``Task-1`` using a monotonic counter." msgstr "" -#: ../../../build/NEWS:4604 +#: ../../../build/NEWS:4827 msgid "" "`bpo-34263 `__: asyncio's event loop " "will not pass timeouts longer than one day to epoll/select etc." msgstr "" -#: ../../../build/NEWS:4607 +#: ../../../build/NEWS:4830 msgid "" "`bpo-34035 `__: Fix several " "AttributeError in zipfile seek() methods. Patch by Mickaël Schoentgen." msgstr "" -#: ../../../build/NEWS:4610 +#: ../../../build/NEWS:4833 msgid "" "`bpo-32215 `__: Fix performance " "regression in :mod:`sqlite3` when a DML statement appeared in a different " "line than the rest of the SQL query." msgstr "" -#: ../../../build/NEWS:4613 +#: ../../../build/NEWS:4836 msgid "" "`bpo-34075 `__: Deprecate passing non-" "ThreadPoolExecutor instances to " ":meth:`AbstractEventLoop.set_default_executor`." msgstr "" -#: ../../../build/NEWS:4616 +#: ../../../build/NEWS:4839 msgid "" "`bpo-34251 `__: Restore ``msilib.Win64``" " to preserve backwards compatibility since it's already used by " ":mod:`distutils`' ``bdist_msi`` command." msgstr "" -#: ../../../build/NEWS:4619 +#: ../../../build/NEWS:4842 msgid "" "`bpo-19891 `__: Ignore errors caused by " "missing / non-writable homedir while writing history during exit of an " "interactive session. Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:4623 +#: ../../../build/NEWS:4846 msgid "" "`bpo-33089 `__: Enhanced math.hypot() to" " support more than two dimensions." msgstr "" -#: ../../../build/NEWS:4625 +#: ../../../build/NEWS:4848 msgid "" "`bpo-34228 `__: tracemalloc: " "PYTHONTRACEMALLOC=0 environment variable and -X tracemalloc=0 command line " "option are now allowed to disable explicitly tracemalloc at startup." msgstr "" -#: ../../../build/NEWS:4629 +#: ../../../build/NEWS:4852 msgid "" "`bpo-13041 `__: Use " ":func:`shutil.get_terminal_size` to calculate the terminal width correctly " @@ -8967,14 +9390,14 @@ msgid "" "Jędrzejewski-Szmek." msgstr "" -#: ../../../build/NEWS:4633 +#: ../../../build/NEWS:4856 msgid "" "`bpo-34213 `__: Allow frozen dataclasses" " to have a field named \"object\". Previously this conflicted with an " "internal use of \"object\"." msgstr "" -#: ../../../build/NEWS:4636 +#: ../../../build/NEWS:4859 msgid "" "`bpo-34052 `__: " ":meth:`sqlite3.Connection.create_aggregate`, " @@ -8986,7 +9409,7 @@ msgid "" "Patch by Sergey Fedoseev." msgstr "" -#: ../../../build/NEWS:4644 +#: ../../../build/NEWS:4867 msgid "" "`bpo-34197 `__: Attributes " "*skipinitialspace*, *doublequote* and *strict* of the *dialect* attribute of" @@ -8994,41 +9417,41 @@ msgid "" " or 1." msgstr "" -#: ../../../build/NEWS:4648 +#: ../../../build/NEWS:4871 msgid "" "`bpo-32788 `__: Errors other than " ":exc:`TypeError` raised in methods ``__adapt__()`` and ``__conform__()`` in " "the :mod:`sqlite3` module are now propagated to the user." msgstr "" -#: ../../../build/NEWS:4652 +#: ../../../build/NEWS:4875 msgid "" "`bpo-21446 `__: The :2to3fixer:`reload` " "fixer now uses :func:`importlib.reload` instead of deprecated " ":func:`imp.reload`." msgstr "" -#: ../../../build/NEWS:4655 +#: ../../../build/NEWS:4878 msgid "" "`bpo-940286 `__: pydoc's " "``Helper.showtopic()`` method now prints the cross references of a topic " "correctly." msgstr "" -#: ../../../build/NEWS:4658 +#: ../../../build/NEWS:4881 msgid "" "`bpo-34164 `__: :func:`base64.b32decode`" " could raise UnboundLocalError or OverflowError for incorrect padding. Now " "it always raises :exc:`base64.Error` in these cases." msgstr "" -#: ../../../build/NEWS:4662 +#: ../../../build/NEWS:4885 msgid "" "`bpo-33729 `__: Fixed issues with " "arguments parsing in :mod:`hashlib`." msgstr "" -#: ../../../build/NEWS:4664 +#: ../../../build/NEWS:4887 msgid "" "`bpo-34097 `__: ZipFile can zip files " "older than 1980-01-01 and newer than 2107-12-31 using a new " @@ -9036,39 +9459,39 @@ msgid "" "limit." msgstr "" -#: ../../../build/NEWS:4668 +#: ../../../build/NEWS:4891 msgid "" "`bpo-34108 `__: Remove extraneous CR in " "2to3 refactor." msgstr "" -#: ../../../build/NEWS:4670 +#: ../../../build/NEWS:4893 msgid "" "`bpo-34070 `__: Make sure to only check " "if the handle is a tty, when opening a file with ``buffering=-1``." msgstr "" -#: ../../../build/NEWS:4673 +#: ../../../build/NEWS:4896 msgid "" "`bpo-27494 `__: Reverted :issue:`27494`." " 2to3 rejects now a trailing comma in generator expressions." msgstr "" -#: ../../../build/NEWS:4676 +#: ../../../build/NEWS:4899 msgid "" "`bpo-33967 `__: functools.singledispatch" " now raises TypeError instead of IndexError when no positional arguments are" " passed." msgstr "" -#: ../../../build/NEWS:4679 +#: ../../../build/NEWS:4902 msgid "" "`bpo-34041 `__: Add the parameter " "*deterministic* to the :meth:`sqlite3.Connection.create_function` method. " "Patch by Sergey Fedoseev." msgstr "" -#: ../../../build/NEWS:4683 +#: ../../../build/NEWS:4906 msgid "" "`bpo-34056 `__: Ensure the loader shim " "created by ``imp.load_module`` always returns bytes from its ``get_data()`` " @@ -9076,54 +9499,54 @@ msgid "" "pycs." msgstr "" -#: ../../../build/NEWS:4687 +#: ../../../build/NEWS:4910 msgid "" "`bpo-34054 `__: The multiprocessing " "module now uses the monotonic clock :func:`time.monotonic` instead of the " "system clock :func:`time.time` to implement timeout." msgstr "" -#: ../../../build/NEWS:4691 +#: ../../../build/NEWS:4914 msgid "" "`bpo-34043 `__: Optimize tarfile " "uncompress performance about 15% when gzip is used." msgstr "" -#: ../../../build/NEWS:4694 +#: ../../../build/NEWS:4917 msgid "" "`bpo-34044 `__: ``subprocess.Popen`` now" " copies the *startupinfo* argument to leave it unchanged: it will modify the" " copy, so that the same ``STARTUPINFO`` object can be used multiple times." msgstr "" -#: ../../../build/NEWS:4698 +#: ../../../build/NEWS:4921 msgid "" "`bpo-34010 `__: Fixed a performance " "regression for reading streams with tarfile. The buffered read should use a " "list, instead of appending to a bytes object." msgstr "" -#: ../../../build/NEWS:4702 +#: ../../../build/NEWS:4925 msgid "" "`bpo-34019 `__: webbrowser: Correct the " "arguments passed to Opera Browser when opening a new URL using the " "``webbrowser`` module. Patch by Bumsik Kim." msgstr "" -#: ../../../build/NEWS:4705 +#: ../../../build/NEWS:4928 msgid "" "`bpo-34003 `__: csv.DictReader now " "creates dicts instead of OrderedDicts. Patch by Michael Selik." msgstr "" -#: ../../../build/NEWS:4708 +#: ../../../build/NEWS:4931 msgid "" "`bpo-33978 `__: Closed existing logging " "handlers before reconfiguration via fileConfig and dictConfig. Patch by " "Karthikeyan Singaravelan." msgstr "" -#: ../../../build/NEWS:4711 +#: ../../../build/NEWS:4934 msgid "" "`bpo-14117 `__: Make minor tweaks to " "turtledemo. The 'wikipedia' example is now 'rosette', describing what it " @@ -9131,27 +9554,27 @@ msgid "" " eliminated." msgstr "" -#: ../../../build/NEWS:4715 +#: ../../../build/NEWS:4938 msgid "" "`bpo-33974 `__: Fixed passing lists and " "tuples of strings containing special characters ``\"``, ``\\``, ``{``, ``}``" " and ``\\n`` as options to :mod:`~tkinter.ttk` widgets." msgstr "" -#: ../../../build/NEWS:4719 +#: ../../../build/NEWS:4942 msgid "" "`bpo-27500 `__: Fix getaddrinfo to " "resolve IPv6 addresses correctly." msgstr "" -#: ../../../build/NEWS:4721 +#: ../../../build/NEWS:4944 msgid "" "`bpo-24567 `__: Improve random.choices()" " to handle subnormal input weights that could occasionally trigger an " "IndexError." msgstr "" -#: ../../../build/NEWS:4724 +#: ../../../build/NEWS:4947 msgid "" "`bpo-33871 `__: Fixed integer overflow " "in :func:`os.readv`, :func:`os.writev`, :func:`os.preadv` and " @@ -9159,14 +9582,14 @@ msgid "" "arguments (on BSD-based OSes and macOS)." msgstr "" -#: ../../../build/NEWS:4728 +#: ../../../build/NEWS:4951 msgid "" "`bpo-25007 `__: Add :func:`copy.copy` " "and :func:`copy.deepcopy` support to zlib compressors and decompressors. " "Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:4731 +#: ../../../build/NEWS:4954 msgid "" "`bpo-33929 `__: multiprocessing: Fix a " "race condition in Popen of multiprocessing.popen_spawn_win32. The child " @@ -9176,7 +9599,7 @@ msgid "" "steal the handle from the parent process." msgstr "" -#: ../../../build/NEWS:4738 +#: ../../../build/NEWS:4961 msgid "" "`bpo-33899 `__: Tokenize module now " "implicitly emits a NEWLINE when provided with input that does not have a " @@ -9184,13 +9607,13 @@ msgid "" "internally. Contributed by Ammar Askar." msgstr "" -#: ../../../build/NEWS:4742 +#: ../../../build/NEWS:4965 msgid "" "`bpo-33897 `__: Added a 'force' keyword " "argument to logging.basicConfig()." msgstr "" -#: ../../../build/NEWS:4744 +#: ../../../build/NEWS:4967 msgid "" "`bpo-33695 `__: :func:`shutil.copytree` " "uses :func:`os.scandir` function and all copy functions depending from it " @@ -9201,33 +9624,33 @@ msgid "" "(Contributed by Giampaolo Rodola' in :issue:`33695`.)" msgstr "" -#: ../../../build/NEWS:4752 +#: ../../../build/NEWS:4975 msgid "" "`bpo-33916 `__: bz2 and lzma: When " "Decompressor.__init__() is called twice, free the old lock to not leak " "memory." msgstr "" -#: ../../../build/NEWS:4755 +#: ../../../build/NEWS:4978 msgid "" "`bpo-32568 `__: Make select.epoll() and " "its documentation consistent regarding *sizehint* and *flags*." msgstr "" -#: ../../../build/NEWS:4758 +#: ../../../build/NEWS:4981 msgid "" "`bpo-33833 `__: Fixed bug in asyncio " "where ProactorSocketTransport logs AssertionError if force closed during " "write." msgstr "" -#: ../../../build/NEWS:4761 +#: ../../../build/NEWS:4984 msgid "" "`bpo-33663 `__: Convert content length " "to string before putting to header." msgstr "" -#: ../../../build/NEWS:4763 +#: ../../../build/NEWS:4986 msgid "" "`bpo-33721 `__: :mod:`os.path` functions" " that return a boolean result like :func:`~os.path.exists`, " @@ -9244,136 +9667,136 @@ msgid "" "unrepresentable at the OS level." msgstr "" -#: ../../../build/NEWS:4777 +#: ../../../build/NEWS:5000 msgid "" "`bpo-26544 `__: Fixed implementation of " ":func:`platform.libc_ver`. It almost always returned version '2.9' for " "glibc." msgstr "" -#: ../../../build/NEWS:4780 +#: ../../../build/NEWS:5003 msgid "" "`bpo-33843 `__: Remove deprecated " "``cgi.escape``, ``cgi.parse_qs`` and ``cgi.parse_qsl``." msgstr "" -#: ../../../build/NEWS:4783 +#: ../../../build/NEWS:5006 msgid "" "`bpo-33842 `__: Remove " "``tarfile.filemode`` which is deprecated since Python 3.3." msgstr "" -#: ../../../build/NEWS:4786 ../../../build/NEWS:6384 ../../../build/NEWS:10978 +#: ../../../build/NEWS:5009 ../../../build/NEWS:6607 ../../../build/NEWS:11201 msgid "" "`bpo-30167 `__: Prevent site.main() " "exception if PYTHONSTARTUP is set. Patch by Steve Weber." msgstr "" -#: ../../../build/NEWS:4789 +#: ../../../build/NEWS:5012 msgid "" "`bpo-33805 `__: Improve error message of" " dataclasses.replace() when an InitVar is not specified" msgstr "" -#: ../../../build/NEWS:4792 +#: ../../../build/NEWS:5015 msgid "" "`bpo-33687 `__: Fix the call to " "``os.chmod()`` for ``uu.decode()`` if a mode is given or decoded. Patch by " "Timo Furrer." msgstr "" -#: ../../../build/NEWS:4795 ../../../build/NEWS:6387 ../../../build/NEWS:10981 +#: ../../../build/NEWS:5018 ../../../build/NEWS:6610 ../../../build/NEWS:11204 msgid "" "`bpo-33812 `__: Datetime instance d with" " non-None tzinfo, but with d.tzinfo.utcoffset(d) returning None is now " "treated as naive by the astimezone() method." msgstr "" -#: ../../../build/NEWS:4799 +#: ../../../build/NEWS:5022 msgid "" "`bpo-32108 `__: In configparser, don't " "clear section when it is assigned to itself." msgstr "" -#: ../../../build/NEWS:4802 +#: ../../../build/NEWS:5025 msgid "" "`bpo-27397 `__: Make email module " "properly handle invalid-length base64 strings." msgstr "" -#: ../../../build/NEWS:4805 +#: ../../../build/NEWS:5028 msgid "" "`bpo-33578 `__: Implement multibyte " "encoder/decoder state methods" msgstr "" -#: ../../../build/NEWS:4807 ../../../build/NEWS:6391 ../../../build/NEWS:10985 +#: ../../../build/NEWS:5030 ../../../build/NEWS:6614 ../../../build/NEWS:11208 msgid "" "`bpo-30805 `__: Avoid race condition " "with debug logging" msgstr "" -#: ../../../build/NEWS:4809 +#: ../../../build/NEWS:5032 msgid "" "`bpo-33476 `__: Fix " "_header_value_parser.py when address group is missing final ';'. Contributed" " by Enrique Perez-Terron" msgstr "" -#: ../../../build/NEWS:4812 ../../../build/NEWS:6393 +#: ../../../build/NEWS:5035 ../../../build/NEWS:6616 msgid "" "`bpo-33694 `__: asyncio: Fix a race " "condition causing data loss on pause_reading()/resume_reading() when using " "the ProactorEventLoop." msgstr "" -#: ../../../build/NEWS:4815 ../../../build/NEWS:6396 +#: ../../../build/NEWS:5038 ../../../build/NEWS:6619 msgid "" "`bpo-32493 `__: Correct test for " "``uuid_enc_be`` availability in ``configure.ac``. Patch by Michael Felt." msgstr "" -#: ../../../build/NEWS:4818 ../../../build/NEWS:6399 +#: ../../../build/NEWS:5041 ../../../build/NEWS:6622 msgid "" "`bpo-33792 `__: Add " "asyncio.WindowsSelectorEventLoopPolicy and " "asyncio.WindowsProactorEventLoopPolicy." msgstr "" -#: ../../../build/NEWS:4821 +#: ../../../build/NEWS:5044 msgid "" "`bpo-33274 `__: W3C DOM Level 1 " "specifies return value of Element.removeAttributeNode() as \"The Attr node " "that was removed.\" xml.dom.minidom now complies with this requirement." msgstr "" -#: ../../../build/NEWS:4825 ../../../build/NEWS:6402 +#: ../../../build/NEWS:5048 ../../../build/NEWS:6625 msgid "" "`bpo-33778 `__: Update ``unicodedata``'s" " database to Unicode version 11.0.0." msgstr "" -#: ../../../build/NEWS:4827 +#: ../../../build/NEWS:5050 msgid "" "`bpo-33165 `__: Added a stacklevel " "parameter to logging calls to allow use of wrapper/helper functions for " "logging APIs." msgstr "" -#: ../../../build/NEWS:4830 ../../../build/NEWS:6404 +#: ../../../build/NEWS:5053 ../../../build/NEWS:6627 msgid "" "`bpo-33770 `__: improve base64 exception" " message for encoded inputs of invalid length" msgstr "" -#: ../../../build/NEWS:4833 ../../../build/NEWS:6407 +#: ../../../build/NEWS:5056 ../../../build/NEWS:6630 msgid "" "`bpo-33769 `__: asyncio/start_tls: Fix " "error message; cancel callbacks in case of an unhandled error; mark " "SSLTransport as closed if it is aborted." msgstr "" -#: ../../../build/NEWS:4836 ../../../build/NEWS:6410 ../../../build/NEWS:10987 +#: ../../../build/NEWS:5059 ../../../build/NEWS:6633 ../../../build/NEWS:11210 msgid "" "`bpo-33767 `__: The concatenation " "(``+``) and repetition (``*``) sequence operations now raise " @@ -9381,58 +9804,58 @@ msgid "" ":class:`mmap.mmap` objects. Patch by Zackery Spytz." msgstr "" -#: ../../../build/NEWS:4840 ../../../build/NEWS:6414 +#: ../../../build/NEWS:5063 ../../../build/NEWS:6637 msgid "" "`bpo-33734 `__: asyncio/ssl: Fix " "AttributeError, increase default handshake timeout" msgstr "" -#: ../../../build/NEWS:4843 +#: ../../../build/NEWS:5066 msgid "" "`bpo-31014 `__: Fixed creating a " "controller for :mod:`webbrowser` when a user specifies a path to an entry in" " the BROWSER environment variable. Based on patch by John Still." msgstr "" -#: ../../../build/NEWS:4847 +#: ../../../build/NEWS:5070 msgid "" "`bpo-2504 `__: Add gettext.pgettext() and" " variants." msgstr "" -#: ../../../build/NEWS:4849 +#: ../../../build/NEWS:5072 msgid "" "`bpo-33197 `__: Add description property" " for _ParameterKind" msgstr "" -#: ../../../build/NEWS:4851 ../../../build/NEWS:6512 +#: ../../../build/NEWS:5074 ../../../build/NEWS:6735 msgid "" "`bpo-32751 `__: When cancelling the task" " due to a timeout, :meth:`asyncio.wait_for` will now wait until the " "cancellation is complete." msgstr "" -#: ../../../build/NEWS:4854 ../../../build/NEWS:6515 ../../../build/NEWS:10991 +#: ../../../build/NEWS:5077 ../../../build/NEWS:6738 ../../../build/NEWS:11214 msgid "" "`bpo-32684 `__: Fix gather to propagate " "cancellation of itself even with return_exceptions." msgstr "" -#: ../../../build/NEWS:4857 ../../../build/NEWS:6518 +#: ../../../build/NEWS:5080 ../../../build/NEWS:6741 msgid "" "`bpo-33654 `__: Support protocol type " "switching in SSLTransport.set_protocol()." msgstr "" -#: ../../../build/NEWS:4859 ../../../build/NEWS:6520 +#: ../../../build/NEWS:5082 ../../../build/NEWS:6743 msgid "" "`bpo-33674 `__: Pause the transport as " "early as possible to further reduce the risk of data_received() being called" " before connection_made()." msgstr "" -#: ../../../build/NEWS:4862 +#: ../../../build/NEWS:5085 msgid "" "`bpo-33671 `__: :func:`shutil.copyfile`," " :func:`shutil.copy`, :func:`shutil.copy2`, :func:`shutil.copytree` and " @@ -9445,7 +9868,7 @@ msgid "" "(Contributed by Giampaolo Rodola' in :issue:`25427`.)" msgstr "" -#: ../../../build/NEWS:4872 ../../../build/NEWS:6523 ../../../build/NEWS:10994 +#: ../../../build/NEWS:5095 ../../../build/NEWS:6746 ../../../build/NEWS:11217 msgid "" "`bpo-33674 `__: Fix a race condition in " "SSLProtocol.connection_made() of asyncio.sslproto: start immediately the " @@ -9453,38 +9876,38 @@ msgid "" " called before the handshake started, causing the handshake to hang or fail." msgstr "" -#: ../../../build/NEWS:4877 ../../../build/NEWS:6528 ../../../build/NEWS:10999 +#: ../../../build/NEWS:5100 ../../../build/NEWS:6751 ../../../build/NEWS:11222 msgid "" "`bpo-31647 `__: Fixed bug where calling " "write_eof() on a _SelectorSocketTransport after it's already closed raises " "AttributeError." msgstr "" -#: ../../../build/NEWS:4880 ../../../build/NEWS:6531 +#: ../../../build/NEWS:5103 ../../../build/NEWS:6754 msgid "" "`bpo-32610 `__: Make asyncio.all_tasks()" " return only pending tasks." msgstr "" -#: ../../../build/NEWS:4882 ../../../build/NEWS:6533 +#: ../../../build/NEWS:5105 ../../../build/NEWS:6756 msgid "" "`bpo-32410 `__: Avoid blocking on file " "IO in sendfile fallback code" msgstr "" -#: ../../../build/NEWS:4884 ../../../build/NEWS:6535 ../../../build/NEWS:11004 +#: ../../../build/NEWS:5107 ../../../build/NEWS:6758 ../../../build/NEWS:11227 msgid "" "`bpo-33469 `__: Fix RuntimeError after " "closing loop that used run_in_executor" msgstr "" -#: ../../../build/NEWS:4886 ../../../build/NEWS:6537 ../../../build/NEWS:11002 +#: ../../../build/NEWS:5109 ../../../build/NEWS:6760 ../../../build/NEWS:11225 msgid "" "`bpo-33672 `__: Fix Task.__repr__ crash " "with Cython's bogus coroutines" msgstr "" -#: ../../../build/NEWS:4888 ../../../build/NEWS:6539 +#: ../../../build/NEWS:5111 ../../../build/NEWS:6762 msgid "" "`bpo-33654 `__: Fix " "transport.set_protocol() to support switching between asyncio.Protocol and " @@ -9492,20 +9915,20 @@ msgid "" "asyncio.BufferedProtocols." msgstr "" -#: ../../../build/NEWS:4892 ../../../build/NEWS:6543 +#: ../../../build/NEWS:5115 ../../../build/NEWS:6766 msgid "" "`bpo-33652 `__: Pickles of type " "variables and subscripted generics are now future-proof and compatible with " "older Python versions." msgstr "" -#: ../../../build/NEWS:4895 ../../../build/NEWS:6546 +#: ../../../build/NEWS:5118 ../../../build/NEWS:6769 msgid "" "`bpo-32493 `__: Fixed :func:`uuid.uuid1`" " on FreeBSD." msgstr "" -#: ../../../build/NEWS:4897 +#: ../../../build/NEWS:5120 msgid "" "`bpo-33238 `__: Add " "``InvalidStateError`` to :mod:`concurrent.futures`. ``Future.set_result`` " @@ -9513,13 +9936,13 @@ msgid "" "are not pending or running. Patch by Jason Haydaman." msgstr "" -#: ../../../build/NEWS:4902 ../../../build/NEWS:6548 +#: ../../../build/NEWS:5125 ../../../build/NEWS:6771 msgid "" "`bpo-33618 `__: Finalize and document " "preliminary and experimental TLS 1.3 support with OpenSSL 1.1.1" msgstr "" -#: ../../../build/NEWS:4905 +#: ../../../build/NEWS:5128 msgid "" "`bpo-33625 `__: Release GIL on " "`grp.getgrnam`, `grp.getgrgid`, `pwd.getpwnam` and `pwd.getpwuid` if " @@ -9527,20 +9950,20 @@ msgid "" "Grzybowski." msgstr "" -#: ../../../build/NEWS:4909 ../../../build/NEWS:6551 +#: ../../../build/NEWS:5132 ../../../build/NEWS:6774 msgid "" "`bpo-33623 `__: Fix possible SIGSGV when" " asyncio.Future is created in __del__" msgstr "" -#: ../../../build/NEWS:4911 ../../../build/NEWS:6417 ../../../build/NEWS:11006 +#: ../../../build/NEWS:5134 ../../../build/NEWS:6640 ../../../build/NEWS:11229 msgid "" "`bpo-11874 `__: Use a better regex when " "breaking usage into wrappable parts. Avoids bogus assertion errors from " "custom metavar strings." msgstr "" -#: ../../../build/NEWS:4914 ../../../build/NEWS:6553 ../../../build/NEWS:11009 +#: ../../../build/NEWS:5137 ../../../build/NEWS:6776 ../../../build/NEWS:11232 msgid "" "`bpo-30877 `__: Fixed a bug in the " "Python implementation of the JSON decoder that prevented the cache of parsed" @@ -9548,34 +9971,34 @@ msgid "" "c-fos." msgstr "" -#: ../../../build/NEWS:4918 +#: ../../../build/NEWS:5141 msgid "" "`bpo-33604 `__: Remove HMAC default to " "md5 marked for removal in 3.8 (removal originally planned in 3.6, bump to " "3.8 in gh-7062)." msgstr "" -#: ../../../build/NEWS:4921 ../../../build/NEWS:6420 +#: ../../../build/NEWS:5144 ../../../build/NEWS:6643 msgid "" "`bpo-33582 `__: Emit a deprecation " "warning for inspect.formatargspec" msgstr "" -#: ../../../build/NEWS:4923 +#: ../../../build/NEWS:5146 msgid "" "`bpo-21145 `__: Add " "``functools.cached_property`` decorator, for computed properties cached for " "the life of the instance." msgstr "" -#: ../../../build/NEWS:4926 ../../../build/NEWS:6557 +#: ../../../build/NEWS:5149 ../../../build/NEWS:6780 msgid "" "`bpo-33570 `__: Change TLS 1.3 cipher " "suite settings for compatibility with OpenSSL 1.1.1-pre6 and newer. OpenSSL " "1.1.1 will have TLS 1.3 ciphers enabled by default." msgstr "" -#: ../../../build/NEWS:4930 ../../../build/NEWS:6561 +#: ../../../build/NEWS:5153 ../../../build/NEWS:6784 msgid "" "`bpo-28556 `__: Do not simplify " "arguments to `typing.Union`. Now `Union[Manager, Employee]` is not " @@ -9583,73 +10006,73 @@ msgid "" "several bugs and limited possibilities for introspection." msgstr "" -#: ../../../build/NEWS:4935 +#: ../../../build/NEWS:5158 msgid "" "`bpo-12486 `__: " ":func:`tokenize.generate_tokens` is now documented as a public API to " "tokenize unicode strings. It was previously present but undocumented." msgstr "" -#: ../../../build/NEWS:4939 ../../../build/NEWS:6566 +#: ../../../build/NEWS:5162 ../../../build/NEWS:6789 msgid "" "`bpo-33540 `__: Add a new " "``block_on_close`` class attribute to ``ForkingMixIn`` and " "``ThreadingMixIn`` classes of :mod:`socketserver`." msgstr "" -#: ../../../build/NEWS:4942 ../../../build/NEWS:6569 ../../../build/NEWS:11013 +#: ../../../build/NEWS:5165 ../../../build/NEWS:6792 ../../../build/NEWS:11236 msgid "" "`bpo-33548 `__: " "tempfile._candidate_tempdir_list should consider common TEMP locations" msgstr "" -#: ../../../build/NEWS:4945 ../../../build/NEWS:6572 +#: ../../../build/NEWS:5168 ../../../build/NEWS:6795 msgid "" "`bpo-33109 `__: argparse subparsers are " "once again not required by default, reverting the change in behavior " "introduced by `bpo-26510 `__ in 3.7.0a2." msgstr "" -#: ../../../build/NEWS:4948 +#: ../../../build/NEWS:5171 msgid "" "`bpo-33541 `__: Remove unused private " "method ``_strptime.LocaleTime.__pad`` (a.k.a. ``_LocaleTime__pad``)." msgstr "" -#: ../../../build/NEWS:4951 ../../../build/NEWS:6575 +#: ../../../build/NEWS:5174 ../../../build/NEWS:6798 msgid "" "`bpo-33536 `__: " "dataclasses.make_dataclass now checks for invalid field names and duplicate " "fields. Also, added a check for invalid field specifications." msgstr "" -#: ../../../build/NEWS:4955 ../../../build/NEWS:6579 ../../../build/NEWS:11016 +#: ../../../build/NEWS:5178 ../../../build/NEWS:6802 ../../../build/NEWS:11239 msgid "" "`bpo-33542 `__: Prevent " "``uuid.get_node`` from using a DUID instead of a MAC on Windows. Patch by " "Zvi Effron" msgstr "" -#: ../../../build/NEWS:4958 ../../../build/NEWS:6582 ../../../build/NEWS:11019 +#: ../../../build/NEWS:5181 ../../../build/NEWS:6805 ../../../build/NEWS:11242 msgid "" "`bpo-26819 `__: Fix race condition with " "`ReadTransport.resume_reading` in Windows proactor event loop." msgstr "" -#: ../../../build/NEWS:4961 ../../../build/NEWS:6585 +#: ../../../build/NEWS:5184 ../../../build/NEWS:6808 msgid "" "Fix failure in `typing.get_type_hints()` when ClassVar was provided as a " "string forward reference." msgstr "" -#: ../../../build/NEWS:4964 +#: ../../../build/NEWS:5187 msgid "" "`bpo-33516 `__: " ":class:`unittest.mock.MagicMock` now supports the ``__round__`` magic " "method." msgstr "" -#: ../../../build/NEWS:4967 +#: ../../../build/NEWS:5190 msgid "" "`bpo-28612 `__: Added support for Site " "Maps to urllib's ``RobotFileParser`` as :meth:`RobotFileParser.site_maps() " @@ -9657,40 +10080,40 @@ msgid "" " patch by Peter Wirtz." msgstr "" -#: ../../../build/NEWS:4972 +#: ../../../build/NEWS:5195 msgid "" "`bpo-28167 `__: Remove " "platform.linux_distribution, which was deprecated since 3.5." msgstr "" -#: ../../../build/NEWS:4975 +#: ../../../build/NEWS:5198 msgid "" "`bpo-33504 `__: Switch the default " "dictionary implementation for :mod:`configparser` from " ":class:`collections.OrderedDict` to the standard :class:`dict` type." msgstr "" -#: ../../../build/NEWS:4979 ../../../build/NEWS:6588 +#: ../../../build/NEWS:5202 ../../../build/NEWS:6811 msgid "" "`bpo-33505 `__: Optimize " "asyncio.ensure_future() by reordering if checks: 1.17x faster." msgstr "" -#: ../../../build/NEWS:4982 ../../../build/NEWS:6591 +#: ../../../build/NEWS:5205 ../../../build/NEWS:6814 msgid "" "`bpo-33497 `__: Add errors param to " "cgi.parse_multipart and make an encoding in FieldStorage use the given " "errors (needed for Twisted). Patch by Amber Brown." msgstr "" -#: ../../../build/NEWS:4986 +#: ../../../build/NEWS:5209 msgid "" "`bpo-29235 `__: The " ":class:`cProfile.Profile` class can now be used as a context manager. Patch " "by Scott Sanderson." msgstr "" -#: ../../../build/NEWS:4989 ../../../build/NEWS:6595 +#: ../../../build/NEWS:5212 ../../../build/NEWS:6818 msgid "" "`bpo-33495 `__: Change " "dataclasses.Fields repr to use the repr of each of its members, instead of " @@ -9698,14 +10121,14 @@ msgid "" " especially true for the 'type' member." msgstr "" -#: ../../../build/NEWS:4993 +#: ../../../build/NEWS:5216 msgid "" "`bpo-26103 `__: Correct " "``inspect.isdatadescriptor`` to look for ``__set__`` or ``__delete__``. " "Patch by Aaron Hall." msgstr "" -#: ../../../build/NEWS:4996 +#: ../../../build/NEWS:5219 msgid "" "`bpo-29209 `__: Removed the " "``doctype()`` method and the *html* parameter of the constructor of " @@ -9716,7 +10139,7 @@ msgid "" ":exc:`PendingDeprecationWarning`." msgstr "" -#: ../../../build/NEWS:5003 ../../../build/NEWS:6599 +#: ../../../build/NEWS:5226 ../../../build/NEWS:6822 msgid "" "`bpo-33453 `__: Fix dataclasses to work " "if using literal string type annotations or if using PEP 563 \"Postponed " @@ -9725,7 +10148,7 @@ msgid "" "(\"InitVar\" and \"dataclasses.InitVar\")." msgstr "" -#: ../../../build/NEWS:5008 ../../../build/NEWS:6604 ../../../build/NEWS:11022 +#: ../../../build/NEWS:5231 ../../../build/NEWS:6827 ../../../build/NEWS:11245 msgid "" "`bpo-28556 `__: Minor fixes in typing " "module: add annotations to ``NamedTuple.__new__``, pass ``*args`` and " @@ -9733,80 +10156,80 @@ msgid "" "Dombrova." msgstr "" -#: ../../../build/NEWS:5012 +#: ../../../build/NEWS:5235 msgid "" "`bpo-33365 `__: Print the header values " "besides the header keys instead just the header keys if *debuglevel* is set " "to >0 in :mod:`http.client`. Patch by Marco Strigl." msgstr "" -#: ../../../build/NEWS:5016 ../../../build/NEWS:6608 ../../../build/NEWS:11026 +#: ../../../build/NEWS:5239 ../../../build/NEWS:6831 ../../../build/NEWS:11249 msgid "" "`bpo-20087 `__: Updated alias mapping " "with glibc 2.27 supported locales." msgstr "" -#: ../../../build/NEWS:5018 ../../../build/NEWS:6610 ../../../build/NEWS:11028 +#: ../../../build/NEWS:5241 ../../../build/NEWS:6833 ../../../build/NEWS:11251 msgid "" "`bpo-33422 `__: Fix trailing quotation " "marks getting deleted when looking up byte/string literals on pydoc. Patch " "by Andrés Delfino." msgstr "" -#: ../../../build/NEWS:5021 ../../../build/NEWS:6613 +#: ../../../build/NEWS:5244 ../../../build/NEWS:6836 msgid "" "`bpo-28167 `__: The function " "``platform.linux_distribution`` and ``platform.dist`` now trigger a " "``DeprecationWarning`` and have been marked for removal in Python 3.8" msgstr "" -#: ../../../build/NEWS:5025 ../../../build/NEWS:6720 +#: ../../../build/NEWS:5248 ../../../build/NEWS:6943 msgid "" "`bpo-33281 `__: Fix " "ctypes.util.find_library regression on macOS." msgstr "" -#: ../../../build/NEWS:5027 +#: ../../../build/NEWS:5250 msgid "" "`bpo-33311 `__: Text and html output " "generated by cgitb does not display parentheses if the current call is done " "directly in the module. Patch by Stéphane Blondon." msgstr "" -#: ../../../build/NEWS:5031 +#: ../../../build/NEWS:5254 msgid "" "`bpo-27300 `__: The file classes in " "*tempfile* now accept an *errors* parameter that complements the already " "existing *encoding*. Patch by Stephan Hohe." msgstr "" -#: ../../../build/NEWS:5034 +#: ../../../build/NEWS:5257 msgid "" "`bpo-32933 `__: " ":func:`unittest.mock.mock_open` now supports iteration over the file " "contents. Patch by Tony Flury." msgstr "" -#: ../../../build/NEWS:5037 +#: ../../../build/NEWS:5260 msgid "" "`bpo-33217 `__: Raise :exc:`TypeError` " "when looking up non-Enum objects in Enum classes and Enum members." msgstr "" -#: ../../../build/NEWS:5040 ../../../build/NEWS:6617 ../../../build/NEWS:11031 +#: ../../../build/NEWS:5263 ../../../build/NEWS:6840 ../../../build/NEWS:11254 msgid "" "`bpo-33197 `__: Update error message " "when constructing invalid inspect.Parameters Patch by Dong-hee Na." msgstr "" -#: ../../../build/NEWS:5043 ../../../build/NEWS:6722 ../../../build/NEWS:11034 +#: ../../../build/NEWS:5266 ../../../build/NEWS:6945 ../../../build/NEWS:11257 msgid "" "`bpo-33383 `__: Fixed crash in the get()" " method of the :mod:`dbm.ndbm` database object when it is called with a " "single argument." msgstr "" -#: ../../../build/NEWS:5046 +#: ../../../build/NEWS:5269 msgid "" "`bpo-33375 `__: The warnings module now " "finds the Python file associated with a warning from the code object, rather" @@ -9815,88 +10238,88 @@ msgid "" "code." msgstr "" -#: ../../../build/NEWS:5051 +#: ../../../build/NEWS:5274 msgid "" "`bpo-33336 `__: ``imaplib`` now allows " "``MOVE`` command in ``IMAP4.uid()`` (RFC 6851: IMAP MOVE Extension) and " "potentially as a name of supported method of ``IMAP4`` object." msgstr "" -#: ../../../build/NEWS:5055 +#: ../../../build/NEWS:5278 msgid "" "`bpo-32455 `__: Added *jump* parameter " "to :func:`dis.stack_effect`." msgstr "" -#: ../../../build/NEWS:5057 +#: ../../../build/NEWS:5280 msgid "" "`bpo-27485 `__: Rename and deprecate " "undocumented functions in :func:`urllib.parse`." msgstr "" -#: ../../../build/NEWS:5060 +#: ../../../build/NEWS:5283 msgid "" "`bpo-33332 `__: Add " "``signal.valid_signals()`` to expose the POSIX sigfillset() functionality." msgstr "" -#: ../../../build/NEWS:5063 +#: ../../../build/NEWS:5286 msgid "" "`bpo-33251 `__: `ConfigParser.items()` " "was fixed so that key-value pairs passed in via `vars` are not included in " "the resulting output." msgstr "" -#: ../../../build/NEWS:5066 ../../../build/NEWS:6725 ../../../build/NEWS:11037 +#: ../../../build/NEWS:5289 ../../../build/NEWS:6948 ../../../build/NEWS:11260 msgid "" "`bpo-33329 `__: Fix multiprocessing " "regression on newer glibcs" msgstr "" -#: ../../../build/NEWS:5068 +#: ../../../build/NEWS:5291 msgid "" "`bpo-33334 `__: :func:`dis.stack_effect`" " now supports all defined opcodes including NOP and EXTENDED_ARG." msgstr "" -#: ../../../build/NEWS:5071 ../../../build/NEWS:6727 ../../../build/NEWS:11039 +#: ../../../build/NEWS:5294 ../../../build/NEWS:6950 ../../../build/NEWS:11262 msgid "" "`bpo-991266 `__: Fix quoting of the " "``Comment`` attribute of :class:`http.cookies.SimpleCookie`." msgstr "" -#: ../../../build/NEWS:5074 ../../../build/NEWS:6730 ../../../build/NEWS:11042 +#: ../../../build/NEWS:5297 ../../../build/NEWS:6953 ../../../build/NEWS:11265 msgid "" "`bpo-33131 `__: Upgrade bundled version " "of pip to 10.0.1." msgstr "" -#: ../../../build/NEWS:5076 ../../../build/NEWS:6732 ../../../build/NEWS:11044 +#: ../../../build/NEWS:5299 ../../../build/NEWS:6955 ../../../build/NEWS:11267 msgid "" "`bpo-33308 `__: Fixed a crash in the " ":mod:`parser` module when converting an ST object to a tree of tuples or " "lists with ``line_info=False`` and ``col_info=True``." msgstr "" -#: ../../../build/NEWS:5080 +#: ../../../build/NEWS:5303 msgid "" "`bpo-23403 `__: lib2to3 now uses pickle " "protocol 4 for pre-computed grammars." msgstr "" -#: ../../../build/NEWS:5082 ../../../build/NEWS:6736 +#: ../../../build/NEWS:5305 ../../../build/NEWS:6959 msgid "" "`bpo-33266 `__: lib2to3 now recognizes " "``rf'...'`` strings." msgstr "" -#: ../../../build/NEWS:5084 ../../../build/NEWS:6738 +#: ../../../build/NEWS:5307 ../../../build/NEWS:6961 msgid "" "`bpo-11594 `__: Ensure line-endings are " "respected when using lib2to3." msgstr "" -#: ../../../build/NEWS:5086 ../../../build/NEWS:6740 +#: ../../../build/NEWS:5309 ../../../build/NEWS:6963 msgid "" "`bpo-33254 `__: Have " ":func:`importlib.resources.contents` and " @@ -9904,27 +10327,27 @@ msgid "" "instead of an :term:`iterator`." msgstr "" -#: ../../../build/NEWS:5090 +#: ../../../build/NEWS:5313 msgid "" "`bpo-33265 `__: ``contextlib.ExitStack``" " and ``contextlib.AsyncExitStack`` now use a method instead of a wrapper " "function for exit callbacks." msgstr "" -#: ../../../build/NEWS:5093 ../../../build/NEWS:6620 ../../../build/NEWS:11048 +#: ../../../build/NEWS:5316 ../../../build/NEWS:6843 ../../../build/NEWS:11271 msgid "" "`bpo-33263 `__: Fix FD leak in " "`_SelectorSocketTransport` Patch by Vlad Starostin." msgstr "" -#: ../../../build/NEWS:5096 ../../../build/NEWS:6744 ../../../build/NEWS:11051 +#: ../../../build/NEWS:5319 ../../../build/NEWS:6967 ../../../build/NEWS:11274 msgid "" "`bpo-33256 `__: Fix display of " "```` call in the html produced by ``cgitb.html()``. Patch by " "Stéphane Blondon." msgstr "" -#: ../../../build/NEWS:5099 +#: ../../../build/NEWS:5322 msgid "" "`bpo-33144 `__: ``random.Random()`` and " "its subclassing mechanism got optimized to check only once at class/subclass" @@ -9933,33 +10356,33 @@ msgid "" " large random integers. Patch by Wolfgang Maier." msgstr "" -#: ../../../build/NEWS:5105 +#: ../../../build/NEWS:5328 msgid "" "`bpo-33185 `__: Fixed regression when " "running pydoc with the :option:`-m` switch. (The regression was introduced " "in 3.7.0b3 by the resolution of :issue:`33053`)" msgstr "" -#: ../../../build/NEWS:5109 +#: ../../../build/NEWS:5332 msgid "" "This fix also changed pydoc to add ``os.getcwd()`` to :data:`sys.path` when " "necessary, rather than adding ``\".\"``." msgstr "" -#: ../../../build/NEWS:5112 +#: ../../../build/NEWS:5335 msgid "" "`bpo-29613 `__: Added support for the " "``SameSite`` cookie flag to the ``http.cookies`` module." msgstr "" -#: ../../../build/NEWS:5115 ../../../build/NEWS:6752 +#: ../../../build/NEWS:5338 ../../../build/NEWS:6975 msgid "" "`bpo-33169 `__: Delete entries of " "``None`` in :data:`sys.path_importer_cache` when " ":meth:`importlib.machinery.invalidate_caches` is called." msgstr "" -#: ../../../build/NEWS:5118 ../../../build/NEWS:6758 ../../../build/NEWS:11054 +#: ../../../build/NEWS:5341 ../../../build/NEWS:6981 ../../../build/NEWS:11277 msgid "" "`bpo-33203 `__: " "``random.Random.choice()`` now raises ``IndexError`` for empty sequences " @@ -9967,20 +10390,20 @@ msgid "" "implementation." msgstr "" -#: ../../../build/NEWS:5122 ../../../build/NEWS:6762 ../../../build/NEWS:11058 +#: ../../../build/NEWS:5345 ../../../build/NEWS:6985 ../../../build/NEWS:11281 msgid "" "`bpo-33224 `__: Update difflib.mdiff() " "for :pep:`479`. Convert an uncaught StopIteration in a generator into a " "return-statement." msgstr "" -#: ../../../build/NEWS:5125 ../../../build/NEWS:6765 ../../../build/NEWS:11061 +#: ../../../build/NEWS:5348 ../../../build/NEWS:6988 ../../../build/NEWS:11284 msgid "" "`bpo-33209 `__: End framing at the end " "of C implementation of :func:`pickle.Pickler.dump`." msgstr "" -#: ../../../build/NEWS:5128 +#: ../../../build/NEWS:5351 msgid "" "`bpo-32861 `__: The urllib.robotparser's" " ``__str__`` representation now includes wildcard entries and the \"Crawl-" @@ -9988,7 +10411,7 @@ msgid "" "being appended to the end of the string. Patch by Michael Lazar." msgstr "" -#: ../../../build/NEWS:5133 +#: ../../../build/NEWS:5356 msgid "" "`bpo-23403 `__: ``DEFAULT_PROTOCOL`` in " ":mod:`pickle` was bumped to 4. Protocol 4 is described in :pep:`3154` and " @@ -9996,47 +10419,47 @@ msgid "" "compared to protocol 3 introduced in Python 3.0." msgstr "" -#: ../../../build/NEWS:5138 ../../../build/NEWS:6768 +#: ../../../build/NEWS:5361 ../../../build/NEWS:6991 msgid "" "`bpo-20104 `__: Improved error handling " "and fixed a reference leak in :func:`os.posix_spawn()`." msgstr "" -#: ../../../build/NEWS:5141 +#: ../../../build/NEWS:5364 msgid "" "`bpo-33106 `__: Deleting a key from a " "read-only dbm database raises module specific error instead of KeyError." msgstr "" -#: ../../../build/NEWS:5144 ../../../build/NEWS:6771 +#: ../../../build/NEWS:5367 ../../../build/NEWS:6994 msgid "" "`bpo-33175 `__: In dataclasses, " "Field.__set_name__ now looks up the __set_name__ special method on the " "class, not the instance, of the default value." msgstr "" -#: ../../../build/NEWS:5148 +#: ../../../build/NEWS:5371 msgid "" "`bpo-32380 `__: Create " "functools.singledispatchmethod to support generic single dispatch on " "descriptors and methods." msgstr "" -#: ../../../build/NEWS:5151 ../../../build/NEWS:6911 +#: ../../../build/NEWS:5374 ../../../build/NEWS:7134 msgid "" "`bpo-33141 `__: Have Field objects pass " "through __set_name__ to their default values, if they have their own " "__set_name__." msgstr "" -#: ../../../build/NEWS:5154 ../../../build/NEWS:6914 ../../../build/NEWS:11068 +#: ../../../build/NEWS:5377 ../../../build/NEWS:7137 ../../../build/NEWS:11291 msgid "" "`bpo-33096 `__: Allow " "ttk.Treeview.insert to insert iid that has a false boolean value. Note iid=0" " and iid=False would be same. Patch by Garvit Khatri." msgstr "" -#: ../../../build/NEWS:5158 ../../../build/NEWS:6918 +#: ../../../build/NEWS:5381 ../../../build/NEWS:7141 msgid "" "`bpo-32873 `__: Treat type variables and" " special typing forms as immutable by copy and pickle. This fixes several " @@ -10044,7 +10467,7 @@ msgid "" "Python 3.6." msgstr "" -#: ../../../build/NEWS:5162 ../../../build/NEWS:6922 +#: ../../../build/NEWS:5385 ../../../build/NEWS:7145 msgid "" "`bpo-33134 `__: When computing " "dataclass's __hash__, use the lookup table to contain the function which " @@ -10052,46 +10475,46 @@ msgid "" "string, and then testing that string to see what to do." msgstr "" -#: ../../../build/NEWS:5167 ../../../build/NEWS:6927 ../../../build/NEWS:11072 +#: ../../../build/NEWS:5390 ../../../build/NEWS:7150 ../../../build/NEWS:11295 msgid "" "`bpo-33127 `__: The ssl module now " "compiles with LibreSSL 2.7.1." msgstr "" -#: ../../../build/NEWS:5169 ../../../build/NEWS:6929 +#: ../../../build/NEWS:5392 ../../../build/NEWS:7152 msgid "" "`bpo-32505 `__: Raise TypeError if a " "member variable of a dataclass is of type Field, but doesn't have a type " "annotation." msgstr "" -#: ../../../build/NEWS:5172 ../../../build/NEWS:6932 +#: ../../../build/NEWS:5395 ../../../build/NEWS:7155 msgid "" "`bpo-33078 `__: Fix the failure on OSX " "caused by the tests relying on sem_getvalue" msgstr "" -#: ../../../build/NEWS:5175 ../../../build/NEWS:6935 +#: ../../../build/NEWS:5398 ../../../build/NEWS:7158 msgid "" "`bpo-33116 `__: Add 'Field' to " "dataclasses.__all__." msgstr "" -#: ../../../build/NEWS:5177 ../../../build/NEWS:6937 +#: ../../../build/NEWS:5400 ../../../build/NEWS:7160 msgid "" "`bpo-32896 `__: Fix an error where " "subclassing a dataclass with a field that uses a default_factory would " "generate an incorrect class." msgstr "" -#: ../../../build/NEWS:5180 ../../../build/NEWS:6940 +#: ../../../build/NEWS:5403 ../../../build/NEWS:7163 msgid "" "`bpo-33100 `__: Dataclasses: If a field " "has a default value that's a MemberDescriptorType, then it's from that field" " being in __slots__, not an actual default value." msgstr "" -#: ../../../build/NEWS:5184 ../../../build/NEWS:6944 +#: ../../../build/NEWS:5407 ../../../build/NEWS:7167 msgid "" "`bpo-32953 `__: If a non-dataclass " "inherits from a frozen dataclass, allow attributes to be added to the " @@ -10100,77 +10523,77 @@ msgid "" "non-frozen." msgstr "" -#: ../../../build/NEWS:5189 ../../../build/NEWS:6775 +#: ../../../build/NEWS:5412 ../../../build/NEWS:6998 msgid "" "`bpo-33097 `__: Raise RuntimeError when " "``executor.submit`` is called during interpreter shutdown." msgstr "" -#: ../../../build/NEWS:5192 +#: ../../../build/NEWS:5415 msgid "" "`bpo-32968 `__: Modulo and floor " "division involving Fraction and float should return float." msgstr "" -#: ../../../build/NEWS:5195 ../../../build/NEWS:6949 +#: ../../../build/NEWS:5418 ../../../build/NEWS:7172 msgid "" "`bpo-33061 `__: Add missing ``NoReturn``" " to ``__all__`` in typing.py" msgstr "" -#: ../../../build/NEWS:5197 ../../../build/NEWS:6951 +#: ../../../build/NEWS:5420 ../../../build/NEWS:7174 msgid "" "`bpo-33078 `__: Fix the size handling in" " multiprocessing.Queue when a pickling error occurs." msgstr "" -#: ../../../build/NEWS:5200 ../../../build/NEWS:6954 ../../../build/NEWS:11324 +#: ../../../build/NEWS:5423 ../../../build/NEWS:7177 ../../../build/NEWS:11547 msgid "" "`bpo-33064 `__: lib2to3 now properly " "supports trailing commas after ``*args`` and ``**kwargs`` in function " "signatures." msgstr "" -#: ../../../build/NEWS:5203 ../../../build/NEWS:6957 +#: ../../../build/NEWS:5426 ../../../build/NEWS:7180 msgid "" "`bpo-33056 `__: FIX properly close " "leaking fds in concurrent.futures.ProcessPoolExecutor." msgstr "" -#: ../../../build/NEWS:5206 ../../../build/NEWS:6960 ../../../build/NEWS:11074 +#: ../../../build/NEWS:5429 ../../../build/NEWS:7183 ../../../build/NEWS:11297 msgid "" "`bpo-33021 `__: Release the GIL during " "fstat() calls, avoiding hang of all threads when calling mmap.mmap(), " "os.urandom(), and random.seed(). Patch by Nir Soffer." msgstr "" -#: ../../../build/NEWS:5210 ../../../build/NEWS:6964 ../../../build/NEWS:11327 +#: ../../../build/NEWS:5433 ../../../build/NEWS:7187 ../../../build/NEWS:11550 msgid "" "`bpo-31804 `__: Avoid failing in " "multiprocessing.Process if the standard streams are closed or None at exit." msgstr "" -#: ../../../build/NEWS:5213 +#: ../../../build/NEWS:5436 msgid "" "`bpo-33034 `__: Providing an explicit " "error message when casting the port property to anything that is not an " "integer value using ``urlparse()`` and ``urlsplit()``. Patch by Matt Eaton." msgstr "" -#: ../../../build/NEWS:5217 +#: ../../../build/NEWS:5440 msgid "" "`bpo-30249 `__: Improve " "struct.unpack_from() exception messages for problems with the buffer size " "and offset." msgstr "" -#: ../../../build/NEWS:5220 ../../../build/NEWS:6967 ../../../build/NEWS:11330 +#: ../../../build/NEWS:5443 ../../../build/NEWS:7190 ../../../build/NEWS:11553 msgid "" "`bpo-33037 `__: Skip sending/receiving " "data after SSL transport closing." msgstr "" -#: ../../../build/NEWS:5222 ../../../build/NEWS:6969 ../../../build/NEWS:11078 +#: ../../../build/NEWS:5445 ../../../build/NEWS:7192 ../../../build/NEWS:11301 msgid "" "`bpo-27683 `__: Fix a regression in " ":mod:`ipaddress` that result of :meth:`hosts` is empty when the network is " @@ -10178,53 +10601,53 @@ msgid "" "addresses." msgstr "" -#: ../../../build/NEWS:5226 +#: ../../../build/NEWS:5449 msgid "" "`bpo-22674 `__: Add the strsignal() " "function in the signal module that returns the system description of the " "given signal, as returned by strsignal(3)." msgstr "" -#: ../../../build/NEWS:5229 ../../../build/NEWS:6973 +#: ../../../build/NEWS:5452 ../../../build/NEWS:7196 msgid "" "`bpo-32999 `__: Fix C implementation of " "``ABC.__subclasscheck__(cls, subclass)`` crashed when ``subclass`` is not a " "type object." msgstr "" -#: ../../../build/NEWS:5232 ../../../build/NEWS:6976 ../../../build/NEWS:11334 +#: ../../../build/NEWS:5455 ../../../build/NEWS:7199 ../../../build/NEWS:11557 msgid "" "`bpo-33009 `__: Fix inspect.signature() " "for single-parameter partialmethods." msgstr "" -#: ../../../build/NEWS:5234 ../../../build/NEWS:6978 ../../../build/NEWS:11336 +#: ../../../build/NEWS:5457 ../../../build/NEWS:7201 ../../../build/NEWS:11559 msgid "" "`bpo-32969 `__: Expose several missing " "constants in zlib and fix corresponding documentation." msgstr "" -#: ../../../build/NEWS:5237 ../../../build/NEWS:6981 +#: ../../../build/NEWS:5460 ../../../build/NEWS:7204 msgid "" "`bpo-32056 `__: Improved exceptions " "raised for invalid number of channels and sample width when read an audio " "file in modules :mod:`aifc`, :mod:`wave` and :mod:`sunau`." msgstr "" -#: ../../../build/NEWS:5241 +#: ../../../build/NEWS:5464 msgid "" "`bpo-32970 `__: Improved disassembly of " "the MAKE_FUNCTION instruction." msgstr "" -#: ../../../build/NEWS:5243 ../../../build/NEWS:6985 ../../../build/NEWS:11082 +#: ../../../build/NEWS:5466 ../../../build/NEWS:7208 ../../../build/NEWS:11305 msgid "" "`bpo-32844 `__: Fix wrong redirection of" " a low descriptor (0 or 1) to stderr in subprocess if another low descriptor" " is closed." msgstr "" -#: ../../../build/NEWS:5246 ../../../build/NEWS:7116 +#: ../../../build/NEWS:5469 ../../../build/NEWS:7339 msgid "" "`bpo-32960 `__: For dataclasses, " "disallow inheriting frozen from non-frozen classes, and also disallow " @@ -10232,20 +10655,20 @@ msgid "" "at a future date." msgstr "" -#: ../../../build/NEWS:5250 ../../../build/NEWS:7120 ../../../build/NEWS:11339 +#: ../../../build/NEWS:5473 ../../../build/NEWS:7343 ../../../build/NEWS:11562 msgid "" "`bpo-32713 `__: Fixed tarfile.itn " "handling of out-of-bounds float values. Patch by Joffrey Fuhrer." msgstr "" -#: ../../../build/NEWS:5253 ../../../build/NEWS:6627 +#: ../../../build/NEWS:5476 ../../../build/NEWS:6850 msgid "" "`bpo-32257 `__: The ssl module now " "contains OP_NO_RENEGOTIATION constant, available with OpenSSL 1.1.0h or " "1.1.1." msgstr "" -#: ../../../build/NEWS:5256 ../../../build/NEWS:7123 +#: ../../../build/NEWS:5479 ../../../build/NEWS:7346 msgid "" "`bpo-32951 `__: Direct instantiation of " "SSLSocket and SSLObject objects is now prohibited. The constructors were " @@ -10253,7 +10676,7 @@ msgid "" "suppose to use ssl.wrap_socket() or SSLContext." msgstr "" -#: ../../../build/NEWS:5261 ../../../build/NEWS:7128 +#: ../../../build/NEWS:5484 ../../../build/NEWS:7351 msgid "" "`bpo-32929 `__: Remove the tri-state " "parameter \"hash\", and add the boolean \"unsafe_hash\". If unsafe_hash is " @@ -10263,51 +10686,51 @@ msgid "" "behavior. unsafe_hash=False is the default, just as hash=None used to be." msgstr "" -#: ../../../build/NEWS:5268 ../../../build/NEWS:7135 +#: ../../../build/NEWS:5491 ../../../build/NEWS:7358 msgid "" "`bpo-32947 `__: Add " "OP_ENABLE_MIDDLEBOX_COMPAT and test workaround for TLSv1.3 for future " "compatibility with OpenSSL 1.1.1." msgstr "" -#: ../../../build/NEWS:5271 +#: ../../../build/NEWS:5494 msgid "" "`bpo-32146 `__: Document the interaction" " between frozen executables and the spawn and forkserver start methods in " "multiprocessing." msgstr "" -#: ../../../build/NEWS:5274 ../../../build/NEWS:7138 ../../../build/NEWS:11342 +#: ../../../build/NEWS:5497 ../../../build/NEWS:7361 ../../../build/NEWS:11565 msgid "" "`bpo-30622 `__: The ssl module now " "detects missing NPN support in LibreSSL." msgstr "" -#: ../../../build/NEWS:5276 ../../../build/NEWS:7140 ../../../build/NEWS:11344 +#: ../../../build/NEWS:5499 ../../../build/NEWS:7363 ../../../build/NEWS:11567 msgid "" "`bpo-32922 `__: dbm.open() now encodes " "filename with the filesystem encoding rather than default encoding." msgstr "" -#: ../../../build/NEWS:5279 +#: ../../../build/NEWS:5502 msgid "" "`bpo-32759 `__: Free unused arenas in " "multiprocessing.heap." msgstr "" -#: ../../../build/NEWS:5281 ../../../build/NEWS:7143 ../../../build/NEWS:11347 +#: ../../../build/NEWS:5504 ../../../build/NEWS:7366 ../../../build/NEWS:11570 msgid "" "`bpo-32859 `__: In ``os.dup2``, don't " "check every call whether the ``dup3`` syscall exists or not." msgstr "" -#: ../../../build/NEWS:5284 ../../../build/NEWS:7146 +#: ../../../build/NEWS:5507 ../../../build/NEWS:7369 msgid "" "`bpo-32556 `__: nt._getfinalpathname, " "nt._getvolumepathname and nt._getdiskusage now correctly convert from bytes." msgstr "" -#: ../../../build/NEWS:5287 ../../../build/NEWS:7152 ../../../build/NEWS:11350 +#: ../../../build/NEWS:5510 ../../../build/NEWS:7375 ../../../build/NEWS:11573 msgid "" "`bpo-21060 `__: Rewrite confusing " "message from setup.py upload from \"No dist file created in earlier " @@ -10315,20 +10738,20 @@ msgid "" "command\"." msgstr "" -#: ../../../build/NEWS:5291 ../../../build/NEWS:6988 ../../../build/NEWS:11354 +#: ../../../build/NEWS:5514 ../../../build/NEWS:7211 ../../../build/NEWS:11577 msgid "" "`bpo-32857 `__: In :mod:`tkinter`, " "``after_cancel(None)`` now raises a :exc:`ValueError` instead of canceling " "the first scheduled function. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:5295 ../../../build/NEWS:7156 ../../../build/NEWS:11358 +#: ../../../build/NEWS:5518 ../../../build/NEWS:7379 ../../../build/NEWS:11581 msgid "" "`bpo-32852 `__: Make sure sys.argv " "remains as a list when running trace." msgstr "" -#: ../../../build/NEWS:5297 +#: ../../../build/NEWS:5520 msgid "" "`bpo-31333 `__: ``_abc`` module is " "added. It is a speedup module with C implementations for various functions " @@ -10337,7 +10760,7 @@ msgid "" "this makes Python start-up up to 10% faster." msgstr "" -#: ../../../build/NEWS:5303 +#: ../../../build/NEWS:5526 msgid "" "Note that the new implementation hides internal registry and caches, " "previously accessible via private attributes ``_abc_registry``, " @@ -10346,14 +10769,14 @@ msgid "" "``_abc_registry_clear``, and ``_abc_caches_clear``." msgstr "" -#: ../../../build/NEWS:5309 ../../../build/NEWS:7168 ../../../build/NEWS:11360 +#: ../../../build/NEWS:5532 ../../../build/NEWS:7391 ../../../build/NEWS:11583 msgid "" "`bpo-32841 `__: Fixed " "`asyncio.Condition` issue which silently ignored cancellation after " "notifying and cancelling a conditional lock. Patch by Bar Harel." msgstr "" -#: ../../../build/NEWS:5313 ../../../build/NEWS:7172 +#: ../../../build/NEWS:5536 ../../../build/NEWS:7395 msgid "" "`bpo-32819 `__: ssl.match_hostname() has" " been simplified and no longer depends on re and ipaddress module for " @@ -10361,46 +10784,46 @@ msgid "" "improved." msgstr "" -#: ../../../build/NEWS:5317 +#: ../../../build/NEWS:5540 msgid "" "`bpo-19675 `__: ``multiprocessing.Pool``" " no longer leaks processes if its initialization fails." msgstr "" -#: ../../../build/NEWS:5320 ../../../build/NEWS:7176 +#: ../../../build/NEWS:5543 ../../../build/NEWS:7399 msgid "" "`bpo-32394 `__: socket: Remove " "TCP_FASTOPEN,TCP_KEEPCNT,TCP_KEEPIDLE,TCP_KEEPINTVL flags on older version " "Windows during run-time." msgstr "" -#: ../../../build/NEWS:5324 ../../../build/NEWS:7180 ../../../build/NEWS:11364 +#: ../../../build/NEWS:5547 ../../../build/NEWS:7403 ../../../build/NEWS:11587 msgid "" "`bpo-31787 `__: Fixed refleaks of " "``__init__()`` methods in various modules. (Contributed by Oren Milman)" msgstr "" -#: ../../../build/NEWS:5327 ../../../build/NEWS:7183 ../../../build/NEWS:11367 +#: ../../../build/NEWS:5550 ../../../build/NEWS:7406 ../../../build/NEWS:11590 msgid "" "`bpo-30157 `__: Fixed guessing quote and" " delimiter in csv.Sniffer.sniff() when only the last field is quoted. Patch" " by Jake Davis." msgstr "" -#: ../../../build/NEWS:5330 +#: ../../../build/NEWS:5553 msgid "" "`bpo-30688 `__: Added support of " "``\\N{name}`` escapes in regular expressions. Based on patch by Jonathan " "Eunice." msgstr "" -#: ../../../build/NEWS:5333 ../../../build/NEWS:7186 +#: ../../../build/NEWS:5556 ../../../build/NEWS:7409 msgid "" "`bpo-32792 `__: collections.ChainMap() " "preserves the order of the underlying mappings." msgstr "" -#: ../../../build/NEWS:5336 ../../../build/NEWS:7189 +#: ../../../build/NEWS:5559 ../../../build/NEWS:7412 msgid "" "`bpo-32775 `__: " ":func:`fnmatch.translate()` no longer produces patterns which contain set " @@ -10410,13 +10833,13 @@ msgid "" "patterns containing such sets by accident." msgstr "" -#: ../../../build/NEWS:5342 ../../../build/NEWS:7195 +#: ../../../build/NEWS:5565 ../../../build/NEWS:7418 msgid "" "`bpo-32622 `__: Implement native fast " "sendfile for Windows proactor event loop." msgstr "" -#: ../../../build/NEWS:5344 ../../../build/NEWS:7197 ../../../build/NEWS:11373 +#: ../../../build/NEWS:5567 ../../../build/NEWS:7420 ../../../build/NEWS:11596 msgid "" "`bpo-32777 `__: Fix a rare but potential" " pre-exec child process deadlock in subprocess on POSIX systems when marking" @@ -10424,46 +10847,46 @@ msgid "" "appears to have been introduced in 3.4." msgstr "" -#: ../../../build/NEWS:5349 ../../../build/NEWS:7202 ../../../build/NEWS:11378 +#: ../../../build/NEWS:5572 ../../../build/NEWS:7425 ../../../build/NEWS:11601 msgid "" "`bpo-32647 `__: The ctypes module used " "to depend on indirect linking for dlopen. The shared extension is now " "explicitly linked against libdl on platforms with dl." msgstr "" -#: ../../../build/NEWS:5353 +#: ../../../build/NEWS:5576 msgid "" "`bpo-32749 `__: A :mod:`dbm.dumb` " "database opened with flags 'r' is now read-only. :func:`dbm.dumb.open` with " "flags 'r' and 'w' no longer creates a database if it does not exist." msgstr "" -#: ../../../build/NEWS:5357 ../../../build/NEWS:7206 +#: ../../../build/NEWS:5580 ../../../build/NEWS:7429 msgid "" "`bpo-32741 `__: Implement " "``asyncio.TimerHandle.when()`` method." msgstr "" -#: ../../../build/NEWS:5359 ../../../build/NEWS:7208 +#: ../../../build/NEWS:5582 ../../../build/NEWS:7431 msgid "" "`bpo-32691 `__: Use mod_spec.parent when" " running modules with pdb" msgstr "" -#: ../../../build/NEWS:5361 ../../../build/NEWS:7210 ../../../build/NEWS:11382 +#: ../../../build/NEWS:5584 ../../../build/NEWS:7433 ../../../build/NEWS:11605 msgid "" "`bpo-32734 `__: Fixed ``asyncio.Lock()``" " safety issue which allowed acquiring and locking the same lock multiple " "times, without it being free. Patch by Bar Harel." msgstr "" -#: ../../../build/NEWS:5365 ../../../build/NEWS:7214 ../../../build/NEWS:11386 +#: ../../../build/NEWS:5588 ../../../build/NEWS:7437 ../../../build/NEWS:11609 msgid "" "`bpo-32727 `__: Do not include name " "field in SMTP envelope from address. Patch by Stéphane Wirtel" msgstr "" -#: ../../../build/NEWS:5368 ../../../build/NEWS:7217 +#: ../../../build/NEWS:5591 ../../../build/NEWS:7440 msgid "" "`bpo-31453 `__: Add TLSVersion constants" " and SSLContext.maximum_version / minimum_version attributes. The new API " @@ -10472,7 +10895,7 @@ msgid "" " feature." msgstr "" -#: ../../../build/NEWS:5373 ../../../build/NEWS:7222 +#: ../../../build/NEWS:5596 ../../../build/NEWS:7445 msgid "" "`bpo-24334 `__: Internal implementation " "details of ssl module were cleaned up. The SSLSocket has one less layer of " @@ -10481,51 +10904,51 @@ msgid "" "simplified." msgstr "" -#: ../../../build/NEWS:5378 ../../../build/NEWS:7227 ../../../build/NEWS:11399 +#: ../../../build/NEWS:5601 ../../../build/NEWS:7450 ../../../build/NEWS:11622 msgid "" "`bpo-31848 `__: Fix the error handling " "in Aifc_read.initfp() when the SSND chunk is not found. Patch by Zackery " "Spytz." msgstr "" -#: ../../../build/NEWS:5381 ../../../build/NEWS:7230 +#: ../../../build/NEWS:5604 ../../../build/NEWS:7453 msgid "" "`bpo-32585 `__: Add Ttk spinbox widget " "to :mod:`tkinter.ttk`. Patch by Alan D Moore." msgstr "" -#: ../../../build/NEWS:5384 +#: ../../../build/NEWS:5607 msgid "" "`bpo-32512 `__: :mod:`profile` CLI " "accepts `-m module_name` as an alternative to script path." msgstr "" -#: ../../../build/NEWS:5387 +#: ../../../build/NEWS:5610 msgid "" "`bpo-8525 `__: help() on a type now " "displays builtin subclasses. This is intended primarily to help with " "notification of more specific exception subclasses." msgstr "" -#: ../../../build/NEWS:5391 +#: ../../../build/NEWS:5614 msgid "Patch by Sanyam Khurana." msgstr "*Patch* oleh Sanyam Khurana." -#: ../../../build/NEWS:5393 +#: ../../../build/NEWS:5616 msgid "" "`bpo-31639 `__: http.server now exposes " "a ThreadingHTTPServer class and uses it when the module is run with ``-m`` " "to cope with web browsers pre-opening sockets." msgstr "" -#: ../../../build/NEWS:5397 +#: ../../../build/NEWS:5620 msgid "" "`bpo-29877 `__: compileall: import " "ProcessPoolExecutor only when needed, preventing hangs on low resource " "platforms" msgstr "" -#: ../../../build/NEWS:5400 ../../../build/NEWS:7233 +#: ../../../build/NEWS:5623 ../../../build/NEWS:7456 msgid "" "`bpo-32221 `__: Various functions " "returning tuple containing IPv6 addresses now omit ``%scope`` part since the" @@ -10534,46 +10957,46 @@ msgid "" "since useless resolving of network interface name is omitted." msgstr "" -#: ../../../build/NEWS:5406 +#: ../../../build/NEWS:5629 msgid "" "`bpo-32147 `__: " ":func:`binascii.unhexlify` is now up to 2 times faster. Patch by Sergey " "Fedoseev." msgstr "" -#: ../../../build/NEWS:5409 ../../../build/NEWS:7239 +#: ../../../build/NEWS:5632 ../../../build/NEWS:7462 msgid "" "`bpo-30693 `__: The TarFile class now " "recurses directories in a reproducible way." msgstr "" -#: ../../../build/NEWS:5412 ../../../build/NEWS:7242 +#: ../../../build/NEWS:5635 ../../../build/NEWS:7465 msgid "" "`bpo-30693 `__: The ZipFile class now " "recurses directories in a reproducible way." msgstr "" -#: ../../../build/NEWS:5415 +#: ../../../build/NEWS:5638 msgid "" "`bpo-31680 `__: Added " ":data:`curses.ncurses_version`." msgstr "" -#: ../../../build/NEWS:5417 ../../../build/NEWS:6778 ../../../build/NEWS:11085 +#: ../../../build/NEWS:5640 ../../../build/NEWS:7001 ../../../build/NEWS:11308 msgid "" "`bpo-31908 `__: Fix output of cover " "files for ``trace`` module command-line tool. Previously emitted cover files" " only when ``--missing`` option was used. Patch by Michael Selik." msgstr "" -#: ../../../build/NEWS:5421 +#: ../../../build/NEWS:5644 msgid "" "`bpo-31608 `__: Raise a ``TypeError`` " "instead of crashing if a ``collections.deque`` subclass returns a non-deque " "from ``__new__``. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:5425 +#: ../../../build/NEWS:5648 msgid "" "`bpo-31425 `__: Add support for sockets " "of the AF_QIPCRTR address family, supported by the Linux kernel. This is " @@ -10581,7 +11004,7 @@ msgid "" " devices. Patch by Bjorn Andersson." msgstr "" -#: ../../../build/NEWS:5430 +#: ../../../build/NEWS:5653 msgid "" "`bpo-22005 `__: Implemented unpickling " "instances of :class:`~datetime.datetime`, :class:`~datetime.date` and " @@ -10589,7 +11012,7 @@ msgid "" " used for successful decoding." msgstr "" -#: ../../../build/NEWS:5435 ../../../build/NEWS:6996 +#: ../../../build/NEWS:5658 ../../../build/NEWS:7219 msgid "" "`bpo-27645 `__: " ":class:`sqlite3.Connection` now exposes a " @@ -10597,44 +11020,44 @@ msgid "" " is at version 3.6.11 or higher. Patch by Lele Gaifax." msgstr "" -#: ../../../build/NEWS:5439 ../../../build/NEWS:6630 ../../../build/NEWS:11092 +#: ../../../build/NEWS:5662 ../../../build/NEWS:6853 ../../../build/NEWS:11315 msgid "" "`bpo-16865 `__: Support arrays >=2GiB in" " :mod:`ctypes`. Patch by Segev Finer." msgstr "" -#: ../../../build/NEWS:5441 +#: ../../../build/NEWS:5664 msgid "" "`bpo-31508 `__: Removed support of " "arguments in `tkinter.ttk.Treeview.selection`. It was deprecated in 3.6. " "Use specialized methods like `selection_set` for changing the selection." msgstr "" -#: ../../../build/NEWS:5445 +#: ../../../build/NEWS:5668 msgid "" "`bpo-29456 `__: Fix bugs in hangul " "normalization: u1176, u11a7 and u11c3" msgstr "" -#: ../../../build/NEWS:5450 +#: ../../../build/NEWS:5673 msgid "" "`bpo-21257 `__: Document " ":func:`http.client.parse_headers`." msgstr "" -#: ../../../build/NEWS:5452 +#: ../../../build/NEWS:5675 msgid "" "`bpo-34764 `__: Improve example of " "iter() with 2nd sentinel argument." msgstr "" -#: ../../../build/NEWS:5454 +#: ../../../build/NEWS:5677 msgid "" "`bpo-35564 `__: Explicitly set " "master_doc variable in conf.py for compliance with Sphinx 2.0" msgstr "" -#: ../../../build/NEWS:5457 +#: ../../../build/NEWS:5680 msgid "" "`bpo-35511 `__: Specified that " "profile.Profile class doesn't not support enable or disable methods. Also, " @@ -10642,127 +11065,127 @@ msgid "" "cProfile module." msgstr "" -#: ../../../build/NEWS:5461 +#: ../../../build/NEWS:5684 msgid "" "`bpo-10536 `__: Enhance the gettext " "docs. Patch by Éric Araujo" msgstr "" -#: ../../../build/NEWS:5463 +#: ../../../build/NEWS:5686 msgid "" "`bpo-35089 `__: Remove mention of " "``typing.io`` and ``typing.re``. Their types should be imported from " "``typing`` directly." msgstr "" -#: ../../../build/NEWS:5466 +#: ../../../build/NEWS:5689 msgid "" "`bpo-35038 `__: Fix the documentation " "about an unexisting `f_restricted` attribute in the frame object. Patch by " "Stéphane Wirtel" msgstr "" -#: ../../../build/NEWS:5469 +#: ../../../build/NEWS:5692 msgid "" "`bpo-35042 `__: Replace PEP XYZ by the " "pep role and allow to use the direct links to the PEPs." msgstr "" -#: ../../../build/NEWS:5472 +#: ../../../build/NEWS:5695 msgid "" "`bpo-35044 `__: Fix the documentation " "with the role ``exc`` for the appropriated exception. Patch by Stéphane " "Wirtel" msgstr "" -#: ../../../build/NEWS:5475 +#: ../../../build/NEWS:5698 msgid "" "`bpo-35035 `__: Rename documentation for" " :mod:`email.utils` to ``email.utils.rst``." msgstr "" -#: ../../../build/NEWS:5478 +#: ../../../build/NEWS:5701 msgid "" "`bpo-34967 `__: Use " "app.add_object_type() instead of the deprecated Sphinx function " "app.description_unit()" msgstr "" -#: ../../../build/NEWS:5481 +#: ../../../build/NEWS:5704 msgid "" "`bpo-34913 `__: Add documentation about " "the new command line interface of the gzip module." msgstr "" -#: ../../../build/NEWS:5484 +#: ../../../build/NEWS:5707 msgid "" "`bpo-32174 `__: chm document displays " "non-ASCII charaters properly on some MBCS Windows systems." msgstr "" -#: ../../../build/NEWS:5487 +#: ../../../build/NEWS:5710 msgid "" "`bpo-11233 `__: Create availability " "directive for documentation. Original patch by Georg Brandl." msgstr "" -#: ../../../build/NEWS:5490 +#: ../../../build/NEWS:5713 msgid "" "`bpo-34790 `__: Document how passing " "coroutines to asyncio.wait() can be confusing." msgstr "" -#: ../../../build/NEWS:5493 +#: ../../../build/NEWS:5716 msgid "" "`bpo-34552 `__: Make clear that ``==`` " "operator sometimes is equivalent to `is`. The ``<``, ``<=``, ``>`` and " "``>=`` operators are only defined where they make sense." msgstr "" -#: ../../../build/NEWS:5497 +#: ../../../build/NEWS:5720 msgid "" "`bpo-28617 `__: Fixed info in the " "stdtypes docs concerning the types that support membership tests." msgstr "" -#: ../../../build/NEWS:5500 +#: ../../../build/NEWS:5723 msgid "" "`bpo-20177 `__: Migrate " "datetime.date.fromtimestamp to Argument Clinic. Patch by Tim Hoffmann." msgstr "" -#: ../../../build/NEWS:5503 +#: ../../../build/NEWS:5726 msgid "" "`bpo-34065 `__: Fix wrongly written " "basicConfig documentation markup syntax" msgstr "" -#: ../../../build/NEWS:5505 +#: ../../../build/NEWS:5728 msgid "" "`bpo-33460 `__: replaced ellipsis with " "correct error codes in tutorial chapter 3." msgstr "" -#: ../../../build/NEWS:5508 +#: ../../../build/NEWS:5731 msgid "" "`bpo-33847 `__: Add '@' operator entry " "to index." msgstr "" -#: ../../../build/NEWS:5510 ../../../build/NEWS:6425 +#: ../../../build/NEWS:5733 ../../../build/NEWS:6648 msgid "" "`bpo-33409 `__: Clarified the " "relationship between :pep:`538`'s PYTHONCOERCECLOCALE and PEP 540's " "PYTHONUTF8 mode." msgstr "" -#: ../../../build/NEWS:5513 +#: ../../../build/NEWS:5736 msgid "" "`bpo-33197 `__: Add versionadded tag to " "the documentation of ParameterKind.description" msgstr "" -#: ../../../build/NEWS:5516 +#: ../../../build/NEWS:5739 msgid "" "`bpo-17045 `__: Improve the C-API doc " "for PyTypeObject. This includes adding several quick-reference tables and a" @@ -10770,32 +11193,32 @@ msgid "" " up with a slightly more consistent format." msgstr "" -#: ../../../build/NEWS:5521 ../../../build/NEWS:6428 +#: ../../../build/NEWS:5744 ../../../build/NEWS:6651 msgid "" "`bpo-33736 `__: Improve the " "documentation of :func:`asyncio.open_connection`, " ":func:`asyncio.start_server` and their UNIX socket counterparts." msgstr "" -#: ../../../build/NEWS:5524 ../../../build/NEWS:6635 +#: ../../../build/NEWS:5747 ../../../build/NEWS:6858 msgid "" "`bpo-23859 `__: Document that " "`asyncio.wait()` does not cancel its futures on timeout." msgstr "" -#: ../../../build/NEWS:5527 ../../../build/NEWS:6638 +#: ../../../build/NEWS:5750 ../../../build/NEWS:6861 msgid "" "`bpo-32436 `__: Document :pep:`567` " "changes to asyncio." msgstr "" -#: ../../../build/NEWS:5529 ../../../build/NEWS:6640 +#: ../../../build/NEWS:5752 ../../../build/NEWS:6863 msgid "" "`bpo-33604 `__: Update HMAC md5 default " "to a DeprecationWarning, bump removal to 3.8." msgstr "" -#: ../../../build/NEWS:5532 +#: ../../../build/NEWS:5755 msgid "" "`bpo-33594 `__: Document ``getargspec``," " ``from_function`` and ``from_builtin`` as deprecated in their respective " @@ -10803,183 +11226,183 @@ msgid "" "message." msgstr "" -#: ../../../build/NEWS:5536 ../../../build/NEWS:6643 ../../../build/NEWS:11101 +#: ../../../build/NEWS:5759 ../../../build/NEWS:6866 ../../../build/NEWS:11324 msgid "" "`bpo-33503 `__: Fix broken pypi link" msgstr "" -#: ../../../build/NEWS:5538 ../../../build/NEWS:6645 ../../../build/NEWS:11103 +#: ../../../build/NEWS:5761 ../../../build/NEWS:6868 ../../../build/NEWS:11326 msgid "" "`bpo-33421 `__: Add missing " "documentation for ``typing.AsyncContextManager``." msgstr "" -#: ../../../build/NEWS:5540 +#: ../../../build/NEWS:5763 msgid "" "`bpo-33487 `__: BZ2file now emit a " "DeprecationWarning when buffering=None is passed, the deprecation message " "and documentation also now explicitly state it is deprecated since 3.0." msgstr "" -#: ../../../build/NEWS:5544 ../../../build/NEWS:6785 ../../../build/NEWS:11105 +#: ../../../build/NEWS:5767 ../../../build/NEWS:7008 ../../../build/NEWS:11328 msgid "" "`bpo-33378 `__: Add Korean language " "switcher for https://docs.python.org/3/" msgstr "" -#: ../../../build/NEWS:5546 ../../../build/NEWS:6787 ../../../build/NEWS:11107 +#: ../../../build/NEWS:5769 ../../../build/NEWS:7010 ../../../build/NEWS:11330 msgid "" "`bpo-33276 `__: Clarify that the " "``__path__`` attribute on modules cannot be just any value." msgstr "" -#: ../../../build/NEWS:5549 ../../../build/NEWS:6790 ../../../build/NEWS:11110 +#: ../../../build/NEWS:5772 ../../../build/NEWS:7013 ../../../build/NEWS:11333 msgid "" "`bpo-33201 `__: Modernize documentation " "for writing C extension types." msgstr "" -#: ../../../build/NEWS:5551 ../../../build/NEWS:6792 ../../../build/NEWS:11112 +#: ../../../build/NEWS:5774 ../../../build/NEWS:7015 ../../../build/NEWS:11335 msgid "" "`bpo-33195 `__: Deprecate ``Py_UNICODE``" " usage in ``c-api/arg`` document. ``Py_UNICODE`` related APIs are deprecated" " since Python 3.3, but it is missed in the document." msgstr "" -#: ../../../build/NEWS:5555 ../../../build/NEWS:7003 ../../../build/NEWS:11116 +#: ../../../build/NEWS:5778 ../../../build/NEWS:7226 ../../../build/NEWS:11339 msgid "" "`bpo-33126 `__: Document " "PyBuffer_ToContiguous()." msgstr "" -#: ../../../build/NEWS:5557 ../../../build/NEWS:7005 ../../../build/NEWS:11118 +#: ../../../build/NEWS:5780 ../../../build/NEWS:7228 ../../../build/NEWS:11341 msgid "" "`bpo-27212 `__: Modify documentation for" " the :func:`islice` recipe to consume initial values up to the start index." msgstr "" -#: ../../../build/NEWS:5560 ../../../build/NEWS:7008 ../../../build/NEWS:11121 +#: ../../../build/NEWS:5783 ../../../build/NEWS:7231 ../../../build/NEWS:11344 msgid "" "`bpo-28247 `__: Update :mod:`zipapp` " "documentation to describe how to make standalone applications." msgstr "" -#: ../../../build/NEWS:5563 ../../../build/NEWS:7011 ../../../build/NEWS:11124 +#: ../../../build/NEWS:5786 ../../../build/NEWS:7234 ../../../build/NEWS:11347 msgid "" "`bpo-18802 `__: Documentation changes " "for ipaddress. Patch by Jon Foster and Berker Peksag." msgstr "" -#: ../../../build/NEWS:5566 ../../../build/NEWS:7014 ../../../build/NEWS:11127 +#: ../../../build/NEWS:5789 ../../../build/NEWS:7237 ../../../build/NEWS:11350 msgid "" "`bpo-27428 `__: Update documentation to " "clarify that ``WindowsRegistryFinder`` implements ``MetaPathFinder``. (Patch" " by Himanshu Lakhara)" msgstr "" -#: ../../../build/NEWS:5569 ../../../build/NEWS:7248 +#: ../../../build/NEWS:5792 ../../../build/NEWS:7471 msgid "" "`bpo-28124 `__: The ssl module function " "ssl.wrap_socket() has been de-emphasized and deprecated in favor of the more" " secure and efficient SSLContext.wrap_socket() method." msgstr "" -#: ../../../build/NEWS:5573 ../../../build/NEWS:7252 ../../../build/NEWS:11457 +#: ../../../build/NEWS:5796 ../../../build/NEWS:7475 ../../../build/NEWS:11680 msgid "" "`bpo-17232 `__: Clarify docs for -O and " "-OO. Patch by Terry Reedy." msgstr "" -#: ../../../build/NEWS:5575 ../../../build/NEWS:7254 +#: ../../../build/NEWS:5798 ../../../build/NEWS:7477 msgid "" "`bpo-32436 `__: Add documentation for " "the contextvars module (PEP 567)." msgstr "" -#: ../../../build/NEWS:5577 ../../../build/NEWS:7256 ../../../build/NEWS:11459 +#: ../../../build/NEWS:5800 ../../../build/NEWS:7479 ../../../build/NEWS:11682 msgid "" "`bpo-32800 `__: Update link to w3c doc " "for xml default namespaces." msgstr "" -#: ../../../build/NEWS:5579 ../../../build/NEWS:7258 +#: ../../../build/NEWS:5802 ../../../build/NEWS:7481 msgid "" "`bpo-11015 `__: Update " ":mod:`test.support` documentation." msgstr "" -#: ../../../build/NEWS:5581 +#: ../../../build/NEWS:5804 msgid "" "`bpo-32613 `__: Update the " "faq/windows.html to use the py command from PEP 397 instead of python." msgstr "" -#: ../../../build/NEWS:5584 ../../../build/NEWS:7260 ../../../build/NEWS:11461 +#: ../../../build/NEWS:5807 ../../../build/NEWS:7483 ../../../build/NEWS:11684 msgid "" "`bpo-8722 `__: Document " ":meth:`__getattr__` behavior when property :meth:`get` method raises " ":exc:`AttributeError`." msgstr "" -#: ../../../build/NEWS:5587 ../../../build/NEWS:7263 ../../../build/NEWS:11464 +#: ../../../build/NEWS:5810 ../../../build/NEWS:7486 ../../../build/NEWS:11687 msgid "" "`bpo-32614 `__: Modify RE examples in " "documentation to use raw strings to prevent :exc:`DeprecationWarning` and " "add text to REGEX HOWTO to highlight the deprecation." msgstr "" -#: ../../../build/NEWS:5591 +#: ../../../build/NEWS:5814 msgid "" "`bpo-20709 `__: Remove the paragraph " "where we explain that os.utime() does not support a directory as path under " "Windows. Patch by Jan-Philip Gehrcke" msgstr "" -#: ../../../build/NEWS:5594 +#: ../../../build/NEWS:5817 msgid "" "`bpo-32722 `__: Remove the bad example " "in the tutorial of the Generator Expression. Patch by Stéphane Wirtel" msgstr "" -#: ../../../build/NEWS:5597 ../../../build/NEWS:7267 ../../../build/NEWS:11468 +#: ../../../build/NEWS:5820 ../../../build/NEWS:7490 ../../../build/NEWS:11691 msgid "" "`bpo-31972 `__: Improve docstrings for " "`pathlib.PurePath` subclasses." msgstr "" -#: ../../../build/NEWS:5599 +#: ../../../build/NEWS:5822 msgid "" "`bpo-30607 `__: Use the externalized " "``python-docs-theme`` package when building the documentation." msgstr "" -#: ../../../build/NEWS:5602 ../../../build/NEWS:6796 ../../../build/NEWS:11130 +#: ../../../build/NEWS:5825 ../../../build/NEWS:7019 ../../../build/NEWS:11353 msgid "" "`bpo-8243 `__: Add a note about " "curses.addch and curses.addstr exception behavior when writing outside a " "window, or pad." msgstr "" -#: ../../../build/NEWS:5605 ../../../build/NEWS:6799 +#: ../../../build/NEWS:5828 ../../../build/NEWS:7022 msgid "" "`bpo-32337 `__: Update documentation " "related with ``dict`` order." msgstr "" -#: ../../../build/NEWS:5607 +#: ../../../build/NEWS:5830 msgid "" "`bpo-25041 `__: Document ``AF_PACKET`` " "in the :mod:`socket` module." msgstr "" -#: ../../../build/NEWS:5609 ../../../build/NEWS:6431 ../../../build/NEWS:11133 +#: ../../../build/NEWS:5832 ../../../build/NEWS:6654 ../../../build/NEWS:11356 msgid "" "`bpo-31432 `__: Clarify meaning of " "CERT_NONE, CERT_OPTIONAL, and CERT_REQUIRED flags for " "ssl.SSLContext.verify_mode." msgstr "" -#: ../../../build/NEWS:5615 +#: ../../../build/NEWS:5838 msgid "" "`bpo-35772 `__: Fix sparse file tests of" " test_tarfile on ppc64 with the tmpfs filesystem. Fix the function testing " @@ -10990,14 +11413,14 @@ msgid "" "KiB pages, whereas the test punch holes of 4 KiB." msgstr "" -#: ../../../build/NEWS:5623 +#: ../../../build/NEWS:5846 msgid "" "`bpo-35045 `__: Make ssl tests less " "strict and also accept TLSv1 as system default. The changes unbreaks " "test_min_max_version on Fedora 29." msgstr "" -#: ../../../build/NEWS:5626 +#: ../../../build/NEWS:5849 msgid "" "`bpo-32710 `__: " "``test_asyncio/test_sendfile.py`` now resets the event loop policy using " @@ -11005,20 +11428,20 @@ msgid "" "running tests on Windows." msgstr "" -#: ../../../build/NEWS:5630 +#: ../../../build/NEWS:5853 msgid "" "`bpo-33717 `__: test.pythoninfo now logs" " information of all clocks, not only time.time() and time.perf_counter()." msgstr "" -#: ../../../build/NEWS:5633 +#: ../../../build/NEWS:5856 msgid "" "`bpo-35488 `__: Add a test to pathlib's " "Path.match() to verify it does not support glob-style ** recursive pattern " "matching." msgstr "" -#: ../../../build/NEWS:5636 +#: ../../../build/NEWS:5859 msgid "" "`bpo-31731 `__: Fix a race condition in " "``check_interrupted_write()`` of test_io: create directly the thread with " @@ -11027,14 +11450,14 @@ msgid "" "the signal is blocked." msgstr "" -#: ../../../build/NEWS:5641 +#: ../../../build/NEWS:5864 msgid "" "`bpo-35424 `__: Fix " "test_multiprocessing_main_handling: use :class:`multiprocessing.Pool` with a" " context manager and then explicitly join the pool." msgstr "" -#: ../../../build/NEWS:5645 +#: ../../../build/NEWS:5868 msgid "" "`bpo-35519 `__: Rename " ":mod:`test.bisect` module to :mod:`test.bisect_cmd` to avoid conflict with " @@ -11042,14 +11465,14 @@ msgid "" "Lib/test/test_xmlrpc.py``." msgstr "" -#: ../../../build/NEWS:5649 +#: ../../../build/NEWS:5872 msgid "" "`bpo-35513 `__: Replace " ":func:`time.time` with :func:`time.monotonic` in tests to measure time " "delta." msgstr "" -#: ../../../build/NEWS:5652 +#: ../../../build/NEWS:5875 msgid "" "`bpo-34279 `__: " ":func:`test.support.run_unittest` no longer raise :exc:`TestDidNotRun` if " @@ -11057,32 +11480,32 @@ msgid "" "no test have been run and no test have been skipped." msgstr "" -#: ../../../build/NEWS:5657 +#: ../../../build/NEWS:5880 msgid "" "`bpo-35412 `__: Add testcase to " "``test_future4``: check unicode literal." msgstr "" -#: ../../../build/NEWS:5659 +#: ../../../build/NEWS:5882 msgid "" "`bpo-26704 `__: Added test demonstrating" " double-patching of an instance method. Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:5662 +#: ../../../build/NEWS:5885 msgid "" "`bpo-33725 `__: " "test_multiprocessing_fork may crash on recent versions of macOS. Until the " "issue is resolved, skip the test on macOS." msgstr "" -#: ../../../build/NEWS:5665 +#: ../../../build/NEWS:5888 msgid "" "`bpo-35352 `__: Modify test_asyncio to " "use the certificate set from the test directory." msgstr "" -#: ../../../build/NEWS:5668 +#: ../../../build/NEWS:5891 msgid "" "`bpo-35317 `__: Fix ``mktime()`` " "overflow error in ``test_email``: run " @@ -11090,7 +11513,7 @@ msgid "" "``test_localtime_daylight_false_dst_true()`` with a specific timezone." msgstr "" -#: ../../../build/NEWS:5672 +#: ../../../build/NEWS:5895 msgid "" "`bpo-21263 `__: After several reports " "that test_gdb does not work properly on macOS and since gdb is not shipped " @@ -11098,7 +11521,7 @@ msgid "" "been used to compile Python. Patch by Lysandros Nikolaou" msgstr "" -#: ../../../build/NEWS:5677 +#: ../../../build/NEWS:5900 msgid "" "`bpo-34279 `__: regrtest issue a warning" " when no tests have been executed in a particular test file. Also, a new " @@ -11106,26 +11529,26 @@ msgid "" "files. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:5681 +#: ../../../build/NEWS:5904 msgid "" "`bpo-34962 `__: make docstest in Doc now" " passes., and is enforced in CI" msgstr "" -#: ../../../build/NEWS:5683 +#: ../../../build/NEWS:5906 msgid "" "`bpo-23596 `__: Use argparse for the " "command line of the gzip module. Patch by Antony Lee" msgstr "" -#: ../../../build/NEWS:5686 +#: ../../../build/NEWS:5909 msgid "" "`bpo-34537 `__: Fix " "``test_gdb.test_strings()`` when ``LC_ALL=C`` and GDB was compiled with " "Python 3.6 or earlier." msgstr "" -#: ../../../build/NEWS:5689 +#: ../../../build/NEWS:5912 msgid "" "`bpo-34587 `__: test_socket: Remove " "RDSTest.testCongestion(). The test tries to fill the receiver's socket " @@ -11135,70 +11558,70 @@ msgid "" "error. The test fails on Fedora 28 by design, so just remove it." msgstr "" -#: ../../../build/NEWS:5696 +#: ../../../build/NEWS:5919 msgid "" "`bpo-34661 `__: Fix test_shutil if unzip" " doesn't support -t." msgstr "" -#: ../../../build/NEWS:5698 +#: ../../../build/NEWS:5921 msgid "" "`bpo-34200 `__: Fixed non-deterministic " "flakiness of test_pkg by not using the scary test.support.module_cleanup() " "logic to save and restore sys.modules contents between test cases." msgstr "" -#: ../../../build/NEWS:5702 +#: ../../../build/NEWS:5925 msgid "" "`bpo-34569 `__: The experimental PEP 554" " data channels now correctly pass negative PyLong objects between " "subinterpreters on 32-bit systems. Patch by Michael Felt." msgstr "" -#: ../../../build/NEWS:5706 +#: ../../../build/NEWS:5929 msgid "" "`bpo-34594 `__: Fix usage of hardcoded " "``errno`` values in the tests." msgstr "" -#: ../../../build/NEWS:5708 +#: ../../../build/NEWS:5931 msgid "" "`bpo-34579 `__: Fix test_embed for AIX " "Patch by Michael Felt" msgstr "" -#: ../../../build/NEWS:5710 +#: ../../../build/NEWS:5933 msgid "" "`bpo-34542 `__: Use 3072 RSA keys and " "SHA-256 signature for test certs and keys." msgstr "" -#: ../../../build/NEWS:5713 +#: ../../../build/NEWS:5936 msgid "" "`bpo-11193 `__: Remove special condition" " for AIX in `test_subprocess.test_undecodable_env`" msgstr "" -#: ../../../build/NEWS:5716 +#: ../../../build/NEWS:5939 msgid "" "`bpo-34347 `__: Fix " "`test_utf8_mode.test_cmd_line` for AIX" msgstr "" -#: ../../../build/NEWS:5718 +#: ../../../build/NEWS:5941 msgid "" "`bpo-34490 `__: On AIX with AF_UNIX " "family sockets getsockname() does not provide 'sockname', so skip calls to " "transport.get_extra_info('sockname')" msgstr "" -#: ../../../build/NEWS:5721 +#: ../../../build/NEWS:5944 msgid "" "`bpo-34391 `__: Fix ftplib test for TLS " "1.3 by reading from data socket." msgstr "" -#: ../../../build/NEWS:5723 +#: ../../../build/NEWS:5946 msgid "" "`bpo-11192 `__: Fix `test_socket` on AIX" " AIX 6.1 and later IPv6 zone id supports only supported by inet_pton6_zone()" @@ -11206,44 +11629,44 @@ msgid "" "rather than build-time based sys.platform()" msgstr "" -#: ../../../build/NEWS:5728 +#: ../../../build/NEWS:5951 msgid "" "`bpo-34399 `__: Update all RSA keys and " "DH params to use at least 2048 bits." msgstr "" -#: ../../../build/NEWS:5730 +#: ../../../build/NEWS:5953 msgid "" "`bpo-34373 `__: Fix ``test_mktime`` and " "``test_pthread_getcpuclickid`` tests for AIX Add range checking for " "``_PyTime_localtime`` for AIX Patch by Michael Felt" msgstr "" -#: ../../../build/NEWS:5734 +#: ../../../build/NEWS:5957 msgid "" "`bpo-11191 `__: Skip the distutils test " "'test_search_cpp' when using XLC as compiler patch by aixtools (Michael " "Felt)" msgstr "" -#: ../../../build/NEWS:5737 +#: ../../../build/NEWS:5960 msgid "Improved an error message when mock assert_has_calls fails." msgstr "" -#: ../../../build/NEWS:5739 +#: ../../../build/NEWS:5962 msgid "" "`bpo-33746 `__: Fix test_unittest when " "run in verbose mode." msgstr "" -#: ../../../build/NEWS:5741 +#: ../../../build/NEWS:5964 msgid "" "`bpo-33901 `__: Fix test_dbm_gnu on " "macOS with gdbm 1.15: add a larger value to make sure that the file size " "changes." msgstr "" -#: ../../../build/NEWS:5744 +#: ../../../build/NEWS:5967 msgid "" "`bpo-33873 `__: Fix a bug in " "``regrtest`` that caused an extra test to run if --huntrleaks/-R was used. " @@ -11251,97 +11674,97 @@ msgid "" "--huntrleaks/-R (at least one warmup run and one repetition must be used)." msgstr "" -#: ../../../build/NEWS:5749 +#: ../../../build/NEWS:5972 msgid "" "`bpo-33562 `__: Check that a global " "asyncio event loop policy is not left behind by any tests." msgstr "" -#: ../../../build/NEWS:5752 ../../../build/NEWS:6650 ../../../build/NEWS:11139 +#: ../../../build/NEWS:5975 ../../../build/NEWS:6873 ../../../build/NEWS:11362 msgid "" "`bpo-33655 `__: Ignore " "test_posix_fallocate failures on BSD platforms that might be due to running " "on ZFS." msgstr "" -#: ../../../build/NEWS:5755 +#: ../../../build/NEWS:5978 msgid "" "`bpo-32962 `__: Fixed test_gdb when " "Python is compiled with flags -mcet -fcf-protection -O0." msgstr "" -#: ../../../build/NEWS:5758 ../../../build/NEWS:6804 +#: ../../../build/NEWS:5981 ../../../build/NEWS:7027 msgid "" "`bpo-33358 `__: Fix " "``test_embed.test_pre_initialization_sys_options()`` when the interpreter is" " built with ``--enable-shared``." msgstr "" -#: ../../../build/NEWS:5761 ../../../build/NEWS:7020 ../../../build/NEWS:11252 +#: ../../../build/NEWS:5984 ../../../build/NEWS:7243 ../../../build/NEWS:11475 msgid "" "`bpo-32872 `__: Avoid regrtest " "compatibility issue with namespace packages." msgstr "" -#: ../../../build/NEWS:5763 ../../../build/NEWS:7022 ../../../build/NEWS:11477 +#: ../../../build/NEWS:5986 ../../../build/NEWS:7245 ../../../build/NEWS:11700 msgid "" "`bpo-32517 `__: Fix failing " "``test_asyncio`` on macOS 10.12.2+ due to transport of ``KqueueSelector`` " "loop was not being closed." msgstr "" -#: ../../../build/NEWS:5766 +#: ../../../build/NEWS:5989 msgid "" "`bpo-32663 `__: Making sure the " "`SMTPUTF8SimTests` class of tests gets run in test_smtplib.py." msgstr "" -#: ../../../build/NEWS:5769 +#: ../../../build/NEWS:5992 msgid "" "`bpo-27643 `__: Test_C test case needs " "\"signed short\" bitfields, but the IBM XLC compiler (on AIX) does not " "support this Skip the code and test when AIX and XLC are used" msgstr "" -#: ../../../build/NEWS:5773 +#: ../../../build/NEWS:5996 msgid "Applicable to Python2-2.7 and later" msgstr "Berlaku untuk Python2-2.7 dan yang lebih baru" -#: ../../../build/NEWS:5775 ../../../build/NEWS:7025 ../../../build/NEWS:11142 +#: ../../../build/NEWS:5998 ../../../build/NEWS:7248 ../../../build/NEWS:11365 msgid "`bpo-19417 `__: Add test_bdb.py." msgstr "" -#: ../../../build/NEWS:5777 ../../../build/NEWS:7272 +#: ../../../build/NEWS:6000 ../../../build/NEWS:7495 msgid "" "`bpo-31809 `__: Add tests to verify " "connection with secp ECDH curves." msgstr "" -#: ../../../build/NEWS:5782 +#: ../../../build/NEWS:6005 msgid "" "`bpo-34691 `__: The _contextvars module " "is now built into the core Python library on Windows." msgstr "" -#: ../../../build/NEWS:5785 +#: ../../../build/NEWS:6008 msgid "" "`bpo-35683 `__: Improved Azure Pipelines" " build steps and now verifying layouts correctly" msgstr "" -#: ../../../build/NEWS:5788 +#: ../../../build/NEWS:6011 msgid "" "`bpo-35642 `__: Remove asynciomodule.c " "from pythoncore.vcxproj" msgstr "" -#: ../../../build/NEWS:5790 +#: ../../../build/NEWS:6013 msgid "" "`bpo-35550 `__: Fix incorrect Solaris " "#ifdef checks to look for __sun && __SVR4 instead of sun when compiling." msgstr "" -#: ../../../build/NEWS:5793 +#: ../../../build/NEWS:6016 msgid "" "`bpo-35499 `__: ``make profile-opt`` no " "longer replaces ``CFLAGS_NODIST`` with ``CFLAGS``. It now adds profile-" @@ -11349,27 +11772,27 @@ msgid "" "``CFLAGS_NODIST`` flags are kept." msgstr "" -#: ../../../build/NEWS:5797 +#: ../../../build/NEWS:6020 msgid "" "`bpo-35257 `__: Avoid leaking the linker" " flags from Link Time Optimizations (LTO) into distutils when compiling C " "extensions." msgstr "" -#: ../../../build/NEWS:5800 +#: ../../../build/NEWS:6023 msgid "" "`bpo-35351 `__: When building Python " "with clang and LTO, LTO flags are no longer passed into CFLAGS to build " "third-party C extensions through distutils." msgstr "" -#: ../../../build/NEWS:5804 +#: ../../../build/NEWS:6027 msgid "" "`bpo-35139 `__: Fix a compiler error " "when statically linking `pyexpat` in `Modules/Setup`." msgstr "" -#: ../../../build/NEWS:5807 +#: ../../../build/NEWS:6030 msgid "" "`bpo-35059 `__: PCbuild: Set " "InlineFunctionExpansion to OnlyExplicitInline (\"/Ob1\" option) in " @@ -11378,7 +11801,7 @@ msgid "" "Windows." msgstr "" -#: ../../../build/NEWS:5812 +#: ../../../build/NEWS:6035 msgid "" "`bpo-35011 `__: Restores the use of " "pyexpatns.h to isolate our embedded copy of the expat C library so that its " @@ -11386,51 +11809,51 @@ msgid "" "application or other extension modules with their own version of libexpat." msgstr "" -#: ../../../build/NEWS:5817 +#: ../../../build/NEWS:6040 msgid "" "`bpo-28015 `__: Have --with-lto works " "correctly with clang." msgstr "" -#: ../../../build/NEWS:5819 +#: ../../../build/NEWS:6042 msgid "" "`bpo-34765 `__: Update the outdated " "install-sh file to the latest revision from automake v1.16.1" msgstr "" -#: ../../../build/NEWS:5822 +#: ../../../build/NEWS:6045 msgid "" "`bpo-34585 `__: Check for floating-point" " byte order in configure.ac using compilation tests instead of executing " "code, so that these checks work in cross-compiled builds." msgstr "" -#: ../../../build/NEWS:5826 +#: ../../../build/NEWS:6049 msgid "" "`bpo-34710 `__: Fixed SSL module build " "with OpenSSL & pedantic CFLAGS." msgstr "" -#: ../../../build/NEWS:5828 +#: ../../../build/NEWS:6051 msgid "" "`bpo-34582 `__: Add JUnit XML output for" " regression tests and update Azure DevOps builds." msgstr "" -#: ../../../build/NEWS:5831 +#: ../../../build/NEWS:6054 msgid "" "`bpo-34081 `__: Make Sphinx warnings as " "errors in the Docs Makefile." msgstr "" -#: ../../../build/NEWS:5833 +#: ../../../build/NEWS:6056 msgid "" "`bpo-34555 `__: Fix for case where it " "was not possible to have both ``HAVE_LINUX_VM_SOCKETS_H`` and " "``HAVE_SOCKADDR_ALG`` be undefined." msgstr "" -#: ../../../build/NEWS:5836 +#: ../../../build/NEWS:6059 msgid "" "`bpo-33015 `__: Fix an undefined " "behaviour in the pthread implementation of " @@ -11438,90 +11861,90 @@ msgid "" " ``NULL``." msgstr "" -#: ../../../build/NEWS:5840 +#: ../../../build/NEWS:6063 msgid "" "`bpo-34245 `__: The Python shared " "library is now installed with write permission (mode 0755), which is the " "standard way of installing such libraries." msgstr "" -#: ../../../build/NEWS:5844 +#: ../../../build/NEWS:6067 msgid "" "`bpo-34121 `__: Fix detection of C11 " "atomic support on clang." msgstr "" -#: ../../../build/NEWS:5846 +#: ../../../build/NEWS:6069 msgid "" "`bpo-32430 `__: Rename " "Modules/Setup.dist to Modules/Setup, and remove the necessity to copy the " "former manually to the latter when updating the local source tree." msgstr "" -#: ../../../build/NEWS:5850 +#: ../../../build/NEWS:6073 msgid "" "`bpo-30345 `__: Add -g to LDFLAGS when " "compiling with LTO to get debug symbols." msgstr "" -#: ../../../build/NEWS:5852 ../../../build/NEWS:6437 ../../../build/NEWS:11147 +#: ../../../build/NEWS:6075 ../../../build/NEWS:6660 ../../../build/NEWS:11370 msgid "" "`bpo-5755 `__: Move ``-Wstrict-" "prototypes`` option to ``CFLAGS_NODIST`` from ``OPT``. This option emitted " "annoying warnings when building extension modules written in C++." msgstr "" -#: ../../../build/NEWS:5856 ../../../build/NEWS:6659 ../../../build/NEWS:11151 +#: ../../../build/NEWS:6079 ../../../build/NEWS:6882 ../../../build/NEWS:11374 msgid "" "`bpo-33614 `__: Ensures module " "definition files for the stable ABI on Windows are correctly regenerated." msgstr "" -#: ../../../build/NEWS:5859 +#: ../../../build/NEWS:6082 msgid "" "`bpo-33648 `__: The --with-c-locale-" "warning configuration flag has been removed. It has had no effect for about " "a year." msgstr "" -#: ../../../build/NEWS:5862 ../../../build/NEWS:6662 ../../../build/NEWS:11154 +#: ../../../build/NEWS:6085 ../../../build/NEWS:6885 ../../../build/NEWS:11377 msgid "" "`bpo-33522 `__: Enable CI builds on " "Visual Studio Team Services at https://python.visualstudio.com/cpython" msgstr "" -#: ../../../build/NEWS:5865 +#: ../../../build/NEWS:6088 msgid "" "`bpo-33512 `__: configure's check for " "\"long double\" has been simplified" msgstr "" -#: ../../../build/NEWS:5867 +#: ../../../build/NEWS:6090 msgid "" "`bpo-33483 `__: C compiler is now " "correctly detected from the standard environment variables. --without-gcc " "and --with-icc options have been removed." msgstr "" -#: ../../../build/NEWS:5871 ../../../build/NEWS:6810 ../../../build/NEWS:11161 +#: ../../../build/NEWS:6094 ../../../build/NEWS:7033 ../../../build/NEWS:11384 msgid "" "`bpo-33394 `__: Enable the verbose build" " for extension modules, when GNU make is passed macros on the command line." msgstr "" -#: ../../../build/NEWS:5874 ../../../build/NEWS:6813 +#: ../../../build/NEWS:6097 ../../../build/NEWS:7036 msgid "" "`bpo-33393 `__: Update config.guess and " "config.sub files." msgstr "" -#: ../../../build/NEWS:5876 ../../../build/NEWS:6815 +#: ../../../build/NEWS:6099 ../../../build/NEWS:7038 msgid "" "`bpo-33377 `__: Add new triplets for " "mips r6 and riscv variants (used in extension suffixes)." msgstr "" -#: ../../../build/NEWS:5879 ../../../build/NEWS:6818 +#: ../../../build/NEWS:6102 ../../../build/NEWS:7041 msgid "" "`bpo-32232 `__: By default, modules " "configured in `Modules/Setup` are no longer built with `-DPy_BUILD_CORE`. " @@ -11529,19 +11952,19 @@ msgid "" " it in their individual entries." msgstr "" -#: ../../../build/NEWS:5883 ../../../build/NEWS:6822 +#: ../../../build/NEWS:6106 ../../../build/NEWS:7045 msgid "" "`bpo-33182 `__: The embedding tests can " "once again be built with clang 6.0" msgstr "" -#: ../../../build/NEWS:5885 ../../../build/NEWS:7030 ../../../build/NEWS:11257 +#: ../../../build/NEWS:6108 ../../../build/NEWS:7253 ../../../build/NEWS:11480 msgid "" "`bpo-33163 `__: Upgrade pip to 9.0.3 and" " setuptools to v39.0.1." msgstr "" -#: ../../../build/NEWS:5887 +#: ../../../build/NEWS:6110 msgid "" "`bpo-33012 `__: gcc 8 has added a new " "warning heuristic to detect invalid function casts and a stock python build " @@ -11550,146 +11973,146 @@ msgid "" "this by adding a dummy argument to all functions that implement METH_NOARGS." msgstr "" -#: ../../../build/NEWS:5893 ../../../build/NEWS:7277 +#: ../../../build/NEWS:6116 ../../../build/NEWS:7500 msgid "" "`bpo-32898 `__: Fix the python debug " "build when using COUNT_ALLOCS." msgstr "" -#: ../../../build/NEWS:5895 +#: ../../../build/NEWS:6118 msgid "" "`bpo-29442 `__: Replace optparse with " "argparse in setup.py" msgstr "" -#: ../../../build/NEWS:5900 +#: ../../../build/NEWS:6123 msgid "" "`bpo-35890 `__: Fix API calling " "consistency of GetVersionEx and wcstok." msgstr "" -#: ../../../build/NEWS:5902 +#: ../../../build/NEWS:6125 msgid "" "`bpo-32560 `__: The ``py`` launcher now " "forwards its ``STARTUPINFO`` structure to child processes." msgstr "" -#: ../../../build/NEWS:5905 +#: ../../../build/NEWS:6128 msgid "" "`bpo-35854 `__: Fix EnvBuilder and " "--symlinks in venv on Windows" msgstr "" -#: ../../../build/NEWS:5907 +#: ../../../build/NEWS:6130 msgid "" "`bpo-35811 `__: Avoid propagating venv " "settings when launching via py.exe" msgstr "" -#: ../../../build/NEWS:5909 +#: ../../../build/NEWS:6132 msgid "" "`bpo-35797 `__: Fix default executable " "used by the multiprocessing module" msgstr "" -#: ../../../build/NEWS:5911 +#: ../../../build/NEWS:6134 msgid "" "`bpo-35758 `__: Allow building on ARM " "with MSVC." msgstr "" -#: ../../../build/NEWS:5913 +#: ../../../build/NEWS:6136 msgid "" "`bpo-29734 `__: Fix handle leaks in " "os.stat on Windows." msgstr "" -#: ../../../build/NEWS:5915 +#: ../../../build/NEWS:6138 msgid "" "`bpo-35596 `__: Use unchecked PYCs for " "the embeddable distro to avoid zipimport restrictions." msgstr "" -#: ../../../build/NEWS:5918 +#: ../../../build/NEWS:6141 msgid "" "`bpo-35596 `__: Fix vcruntime140.dll " "being added to embeddable distro multiple times." msgstr "" -#: ../../../build/NEWS:5921 +#: ../../../build/NEWS:6144 msgid "" "`bpo-35402 `__: Update Windows build to " "use Tcl and Tk 8.6.9" msgstr "" -#: ../../../build/NEWS:5923 +#: ../../../build/NEWS:6146 msgid "" "`bpo-35401 `__: Updates Windows build to" " OpenSSL 1.1.0j" msgstr "" -#: ../../../build/NEWS:5925 +#: ../../../build/NEWS:6148 msgid "" "`bpo-34977 `__: venv on Windows will now" " use a python.exe redirector rather than copying the actual binaries from " "the base environment." msgstr "" -#: ../../../build/NEWS:5928 +#: ../../../build/NEWS:6151 msgid "" "`bpo-34977 `__: Adds support for " "building a Windows App Store package" msgstr "" -#: ../../../build/NEWS:5930 +#: ../../../build/NEWS:6153 msgid "" "`bpo-35067 `__: Remove _distutils_findvs" " module and use vswhere.exe instead." msgstr "" -#: ../../../build/NEWS:5932 +#: ../../../build/NEWS:6155 msgid "" "`bpo-32557 `__: Allow shutil.disk_usage " "to take a file path on Windows" msgstr "" -#: ../../../build/NEWS:5934 +#: ../../../build/NEWS:6157 msgid "" "`bpo-34770 `__: Fix a possible null " "pointer dereference in pyshellext.cpp." msgstr "" -#: ../../../build/NEWS:5936 +#: ../../../build/NEWS:6159 msgid "" "`bpo-34603 `__: Fix returning structs " "from functions produced by MSVC" msgstr "" -#: ../../../build/NEWS:5938 +#: ../../../build/NEWS:6161 msgid "" "`bpo-34581 `__: Guard MSVC-specific code" " in socketmodule.c with ``#ifdef _MSC_VER``." msgstr "" -#: ../../../build/NEWS:5941 +#: ../../../build/NEWS:6164 msgid "" "`bpo-34532 `__: Fixes exit code of list " "version arguments for py.exe." msgstr "" -#: ../../../build/NEWS:5943 +#: ../../../build/NEWS:6166 msgid "" "`bpo-34062 `__: Fixed the '--list' and " "'--list-paths' arguments for the py.exe launcher" msgstr "" -#: ../../../build/NEWS:5946 +#: ../../../build/NEWS:6169 msgid "" "`bpo-34225 `__: Ensure INCLUDE and LIB " "directories do not end with a backslash." msgstr "" -#: ../../../build/NEWS:5948 +#: ../../../build/NEWS:6171 msgid "" "`bpo-34011 `__: A suite of code has been" " changed which copied across DLLs and init.tcl from the running Python " @@ -11698,7 +12121,7 @@ msgid "" "when that is the case, rather than whenever a venv is created." msgstr "" -#: ../../../build/NEWS:5954 +#: ../../../build/NEWS:6177 msgid "" "`bpo-34006 `__: Revert line length limit" " for Windows help docs. The line-length limit is not needed because the " @@ -11706,7 +12129,7 @@ msgid "" "interact badly with the DPI setting." msgstr "" -#: ../../../build/NEWS:5958 +#: ../../../build/NEWS:6181 msgid "" "`bpo-31546 `__: Restore running " "PyOS_InputHook while waiting for user input at the prompt. The restores " @@ -11714,92 +12137,92 @@ msgid "" " prompt on Windows." msgstr "" -#: ../../../build/NEWS:5962 +#: ../../../build/NEWS:6185 msgid "" "`bpo-30237 `__: Output error when " "ReadConsole is canceled by CancelSynchronousIo instead of crashing." msgstr "" -#: ../../../build/NEWS:5965 +#: ../../../build/NEWS:6188 msgid "" "`bpo-33895 `__: GIL is released while " "calling functions that acquire Windows loader lock." msgstr "" -#: ../../../build/NEWS:5968 ../../../build/NEWS:6444 +#: ../../../build/NEWS:6191 ../../../build/NEWS:6667 msgid "" "`bpo-33720 `__: Reduces maximum marshal " "recursion depth on release builds." msgstr "" -#: ../../../build/NEWS:5970 +#: ../../../build/NEWS:6193 msgid "" "`bpo-29097 `__: Fix bug where " ":meth:`datetime.fromtimestamp` erroneously throws an :exc:`OSError` on " "Windows for values between 0 and 86400. Patch by Ammar Askar." msgstr "" -#: ../../../build/NEWS:5974 +#: ../../../build/NEWS:6197 msgid "" "`bpo-33316 `__: PyThread_release_lock " "always fails" msgstr "" -#: ../../../build/NEWS:5976 ../../../build/NEWS:6827 +#: ../../../build/NEWS:6199 ../../../build/NEWS:7050 msgid "" "`bpo-33184 `__: Update Windows installer" " to use OpenSSL 1.1.0h." msgstr "" -#: ../../../build/NEWS:5978 +#: ../../../build/NEWS:6201 msgid "" "`bpo-32890 `__: Fix usage of " "GetLastError() instead of errno in os.execve() and os.truncate()." msgstr "" -#: ../../../build/NEWS:5981 ../../../build/NEWS:7035 ../../../build/NEWS:11498 +#: ../../../build/NEWS:6204 ../../../build/NEWS:7258 ../../../build/NEWS:11721 msgid "" "`bpo-33016 `__: Fix potential use of " "uninitialized memory in nt._getfinalpathname" msgstr "" -#: ../../../build/NEWS:5984 ../../../build/NEWS:7038 ../../../build/NEWS:11501 +#: ../../../build/NEWS:6207 ../../../build/NEWS:7261 ../../../build/NEWS:11724 msgid "" "`bpo-32903 `__: Fix a memory leak in " "os.chdir() on Windows if the current directory is set to a UNC path." msgstr "" -#: ../../../build/NEWS:5987 ../../../build/NEWS:7282 +#: ../../../build/NEWS:6210 ../../../build/NEWS:7505 msgid "" "`bpo-32901 `__: Update Tcl and Tk " "versions to 8.6.8" msgstr "" -#: ../../../build/NEWS:5989 ../../../build/NEWS:7284 ../../../build/NEWS:11504 +#: ../../../build/NEWS:6212 ../../../build/NEWS:7507 ../../../build/NEWS:11727 msgid "" "`bpo-31966 `__: Fixed " "WindowsConsoleIO.write() for writing empty data." msgstr "" -#: ../../../build/NEWS:5991 ../../../build/NEWS:7286 ../../../build/NEWS:11506 +#: ../../../build/NEWS:6214 ../../../build/NEWS:7509 ../../../build/NEWS:11729 msgid "" "`bpo-32409 `__: Ensures activate.bat can" " handle Unicode contents." msgstr "" -#: ../../../build/NEWS:5993 ../../../build/NEWS:7288 ../../../build/NEWS:11508 +#: ../../../build/NEWS:6216 ../../../build/NEWS:7511 ../../../build/NEWS:11731 msgid "" "`bpo-32457 `__: Improves handling of " "denormalized executable path when launching Python." msgstr "" -#: ../../../build/NEWS:5996 ../../../build/NEWS:7291 ../../../build/NEWS:11511 +#: ../../../build/NEWS:6219 ../../../build/NEWS:7514 ../../../build/NEWS:11734 msgid "" "`bpo-32370 `__: Use the correct encoding" " for ipconfig output in the uuid module. Patch by Segev Finer." msgstr "" -#: ../../../build/NEWS:5999 ../../../build/NEWS:7294 ../../../build/NEWS:11514 +#: ../../../build/NEWS:6222 ../../../build/NEWS:7517 ../../../build/NEWS:11737 msgid "" "`bpo-29248 `__: Fix :func:`os.readlink` " "on Windows, which was mistakenly treating the ``PrintNameOffset`` field of " @@ -11807,38 +12230,38 @@ msgid "" " Craig Holmquist and SSE4." msgstr "" -#: ../../../build/NEWS:6003 +#: ../../../build/NEWS:6226 msgid "" "`bpo-1104 `__: Correctly handle string " "length in ``msilib.SummaryInfo.GetProperty()`` to prevent it from truncating" " the last character." msgstr "" -#: ../../../build/NEWS:6010 +#: ../../../build/NEWS:6233 msgid "" "`bpo-35401 `__: Update macOS installer " "to use OpenSSL 1.1.0j." msgstr "" -#: ../../../build/NEWS:6012 +#: ../../../build/NEWS:6235 msgid "" "`bpo-35025 `__: Properly guard the use " "of the ``CLOCK_GETTIME`` et al. macros in ``timemodule`` on macOS." msgstr "" -#: ../../../build/NEWS:6015 +#: ../../../build/NEWS:6238 msgid "" "`bpo-24658 `__: On macOS, fix reading " "from and writing into a file with a size larger than 2 GiB." msgstr "" -#: ../../../build/NEWS:6018 +#: ../../../build/NEWS:6241 msgid "" "`bpo-34405 `__: Update to OpenSSL 1.1.0i" " for macOS installer builds." msgstr "" -#: ../../../build/NEWS:6020 +#: ../../../build/NEWS:6243 msgid "" "`bpo-33635 `__: In macOS stat on some " "file descriptors (/dev/fd/3 f.e) will result in bad file descriptor OSError." @@ -11848,20 +12271,20 @@ msgid "" "same error ignoring pattern." msgstr "" -#: ../../../build/NEWS:6026 ../../../build/NEWS:6672 +#: ../../../build/NEWS:6249 ../../../build/NEWS:6895 msgid "" "`bpo-13631 `__: The .editrc file in " "user's home directory is now processed correctly during the readline " "initialization through editline emulation on macOS." msgstr "" -#: ../../../build/NEWS:6030 ../../../build/NEWS:6832 +#: ../../../build/NEWS:6253 ../../../build/NEWS:7055 msgid "" "`bpo-33184 `__: Update macOS installer " "build to use OpenSSL 1.1.0h." msgstr "" -#: ../../../build/NEWS:6032 ../../../build/NEWS:7044 +#: ../../../build/NEWS:6255 ../../../build/NEWS:7267 msgid "" "`bpo-32726 `__: Build and link with " "private copy of Tcl/Tk 8.6 for the macOS 10.6+ installer. The 10.9+ " @@ -11871,19 +12294,19 @@ msgid "" "as ActiveTcl." msgstr "" -#: ../../../build/NEWS:6038 ../../../build/NEWS:7301 +#: ../../../build/NEWS:6261 ../../../build/NEWS:7524 msgid "" "`bpo-32901 `__: Update macOS 10.9+ " "installer to Tcl/Tk 8.6.8." msgstr "" -#: ../../../build/NEWS:6040 +#: ../../../build/NEWS:6263 msgid "" "`bpo-31903 `__: In :mod:`_scproxy`, drop" " the GIL when calling into ``SystemConfiguration`` to avoid deadlocks." msgstr "" -#: ../../../build/NEWS:6046 +#: ../../../build/NEWS:6269 msgid "" "`bpo-35770 `__: IDLE macosx deletes " "Options => Configure IDLE. It previously deleted Window => Zoom Height by " @@ -11891,79 +12314,79 @@ msgid "" "dialog is accessed via Preferences on the IDLE menu." msgstr "" -#: ../../../build/NEWS:6051 +#: ../../../build/NEWS:6274 msgid "" "`bpo-35769 `__: Change IDLE's new file " "name from 'Untitled' to 'untitled'" msgstr "" -#: ../../../build/NEWS:6053 +#: ../../../build/NEWS:6276 msgid "" "`bpo-35660 `__: Fix imports in " "idlelib.window." msgstr "" -#: ../../../build/NEWS:6055 +#: ../../../build/NEWS:6278 msgid "" "`bpo-35641 `__: Proper format `calltip` " "when the function has no docstring." msgstr "" -#: ../../../build/NEWS:6057 +#: ../../../build/NEWS:6280 msgid "" "`bpo-33987 `__: Use ttk Frame for ttk " "widgets." msgstr "" -#: ../../../build/NEWS:6059 +#: ../../../build/NEWS:6282 msgid "" "`bpo-34055 `__: Fix erroneous 'smart' " "indents and newlines in IDLE Shell." msgstr "" -#: ../../../build/NEWS:6061 +#: ../../../build/NEWS:6284 msgid "" "`bpo-35591 `__: Find Selection now works" " when selection not found." msgstr "" -#: ../../../build/NEWS:6063 +#: ../../../build/NEWS:6286 msgid "" "`bpo-35196 `__: Speed up squeezer line " "counting." msgstr "" -#: ../../../build/NEWS:6065 +#: ../../../build/NEWS:6288 msgid "" "`bpo-35598 `__: Update config_key: use " "PEP 8 names and ttk widgets, make some objects global, and add tests." msgstr "" -#: ../../../build/NEWS:6068 +#: ../../../build/NEWS:6291 msgid "" "`bpo-28097 `__: Add Previous/Next " "History entries to Shell menu." msgstr "" -#: ../../../build/NEWS:6070 +#: ../../../build/NEWS:6293 msgid "" "`bpo-35208 `__: Squeezer now properly " "counts wrapped lines before newlines." msgstr "" -#: ../../../build/NEWS:6072 +#: ../../../build/NEWS:6295 msgid "" "`bpo-35555 `__: Gray out Code Context " "menu entry when it's not applicable." msgstr "" -#: ../../../build/NEWS:6074 +#: ../../../build/NEWS:6297 msgid "" "`bpo-35521 `__: Document the IDLE editor" " code context feature. Add some internal references within the IDLE doc." msgstr "" -#: ../../../build/NEWS:6077 +#: ../../../build/NEWS:6300 msgid "" "`bpo-22703 `__: The Code Context menu " "label now toggles between Show/Hide Code Context. The Zoom Height menu now " @@ -11971,20 +12394,20 @@ msgid "" "menu to the Options menu." msgstr "" -#: ../../../build/NEWS:6081 +#: ../../../build/NEWS:6304 msgid "" "`bpo-35213 `__: Where appropriate, use " "'macOS' in idlelib." msgstr "" -#: ../../../build/NEWS:6083 +#: ../../../build/NEWS:6306 msgid "" "`bpo-34864 `__: On macOS, warn if the " "system preference \"Prefer tabs when opening documents\" is set to " "\"Always\"." msgstr "" -#: ../../../build/NEWS:6086 +#: ../../../build/NEWS:6309 msgid "" "`bpo-34864 `__: Document two IDLE on " "MacOS issues. The System Preferences Dock \"prefer tabs always\" setting " @@ -11992,26 +12415,26 @@ msgid "" "for Windows and Linux." msgstr "" -#: ../../../build/NEWS:6090 +#: ../../../build/NEWS:6313 msgid "" "`bpo-35202 `__: Remove unused imports " "from lib/idlelib" msgstr "" -#: ../../../build/NEWS:6092 +#: ../../../build/NEWS:6315 msgid "" "`bpo-33000 `__: Document that IDLE's " "shell has no line limit. A program that runs indefinitely can overfill " "memory." msgstr "" -#: ../../../build/NEWS:6095 +#: ../../../build/NEWS:6318 msgid "" "`bpo-23220 `__: Explain how IDLE's Shell" " displays output." msgstr "" -#: ../../../build/NEWS:6097 +#: ../../../build/NEWS:6320 msgid "" "`bpo-35099 `__: Improve the doc about " "IDLE running user code. The section is renamed from \"IDLE -- console " @@ -12019,41 +12442,41 @@ msgid "" "implications of using custom sys.stdxxx objects." msgstr "" -#: ../../../build/NEWS:6101 +#: ../../../build/NEWS:6324 msgid "" "`bpo-35097 `__: Add IDLE doc subsection " "explaining editor windows. Topics include opening, title and status bar, " ".py* extension, and running." msgstr "" -#: ../../../build/NEWS:6104 +#: ../../../build/NEWS:6327 msgid "" "`bpo-35093 `__: Document the IDLE " "document viewer in the IDLE doc. Add a paragraph in \"Help and " "preferences\", \"Help sources\" subsection." msgstr "" -#: ../../../build/NEWS:6107 +#: ../../../build/NEWS:6330 msgid "" "`bpo-35088 `__: Update " "idlelib.help.copy_string docstring. We now use git and backporting instead " "of hg and forward merging." msgstr "" -#: ../../../build/NEWS:6110 +#: ../../../build/NEWS:6333 msgid "" "`bpo-35087 `__: Update idlelib help " "files for the current doc build. The main change is the elimination of " "chapter-section numbers." msgstr "" -#: ../../../build/NEWS:6113 +#: ../../../build/NEWS:6336 msgid "" "`bpo-34548 `__: Use configured color " "theme for read-only text views." msgstr "" -#: ../../../build/NEWS:6115 +#: ../../../build/NEWS:6338 msgid "" "`bpo-1529353 `__: Enable \"squeezing\"" " of long outputs in the shell, to avoid performance degradation and to clean" @@ -12061,26 +12484,26 @@ msgid "" " a separate window, and \"unsqueezed\"." msgstr "" -#: ../../../build/NEWS:6120 +#: ../../../build/NEWS:6343 msgid "" "`bpo-34047 `__: Fixed mousewheel " "scrolling direction on macOS." msgstr "" -#: ../../../build/NEWS:6122 +#: ../../../build/NEWS:6345 msgid "" "`bpo-34275 `__: Make IDLE calltips " "always visible on Mac. Some MacOS-tk combinations need .update_idletasks(). " "Patch by Kevin Walzer." msgstr "" -#: ../../../build/NEWS:6125 +#: ../../../build/NEWS:6348 msgid "" "`bpo-34120 `__: Fix unresponsiveness " "after closing certain windows and dialogs." msgstr "" -#: ../../../build/NEWS:6127 +#: ../../../build/NEWS:6350 msgid "" "`bpo-33975 `__: Avoid small type when " "running htests. Since part of the purpose of human-viewed tests is to " @@ -12088,26 +12511,26 @@ msgid "" "for testing as when running IDLE." msgstr "" -#: ../../../build/NEWS:6131 +#: ../../../build/NEWS:6354 msgid "" "`bpo-33905 `__: Add test for " "idlelib.stackview.StackBrowser." msgstr "" -#: ../../../build/NEWS:6133 +#: ../../../build/NEWS:6356 msgid "" "`bpo-33924 `__: Change mainmenu.menudefs" " key 'windows' to 'window'. Every other menudef key is lowercase version of " "main menu entry." msgstr "" -#: ../../../build/NEWS:6136 +#: ../../../build/NEWS:6359 msgid "" "`bpo-33906 `__: Rename idlelib.windows " "as window Match Window on the main menu and remove last plural module name." msgstr "" -#: ../../../build/NEWS:6139 +#: ../../../build/NEWS:6362 msgid "" "`bpo-33917 `__: Fix and document " "idlelib/idle_test/template.py. The revised file compiles, runs, and tests " @@ -12115,13 +12538,13 @@ msgid "" "files." msgstr "" -#: ../../../build/NEWS:6143 +#: ../../../build/NEWS:6366 msgid "" "`bpo-33904 `__: IDLE: In rstrip, rename " "class RstripExtension as Rstrip" msgstr "" -#: ../../../build/NEWS:6145 +#: ../../../build/NEWS:6368 msgid "" "`bpo-33907 `__: For consistency and " "clarity, rename an IDLE module and classes. Module calltips and its class " @@ -12129,26 +12552,26 @@ msgid "" "now CalltipWindow." msgstr "" -#: ../../../build/NEWS:6149 +#: ../../../build/NEWS:6372 msgid "" "`bpo-33856 `__: Add \"help\" in the " "welcome message of IDLE" msgstr "" -#: ../../../build/NEWS:6151 +#: ../../../build/NEWS:6374 msgid "" "`bpo-33839 `__: IDLE: refactor ToolTip " "and CallTip and add documentation and tests" msgstr "" -#: ../../../build/NEWS:6154 +#: ../../../build/NEWS:6377 msgid "" "`bpo-33855 `__: Minimally test all IDLE " "modules. Add missing files, import module, instantiate classes, and check " "coverage. Check existing files." msgstr "" -#: ../../../build/NEWS:6157 ../../../build/NEWS:6449 ../../../build/NEWS:11177 +#: ../../../build/NEWS:6380 ../../../build/NEWS:6672 ../../../build/NEWS:11400 msgid "" "`bpo-33656 `__: On Windows, add API call" " saying that tk scales for DPI. On Windows 8.1+ or 10, with DPI " @@ -12157,19 +12580,19 @@ msgid "" " should otherwise have no effect." msgstr "" -#: ../../../build/NEWS:6162 ../../../build/NEWS:6454 ../../../build/NEWS:11182 +#: ../../../build/NEWS:6385 ../../../build/NEWS:6677 ../../../build/NEWS:11405 msgid "" "`bpo-33768 `__: Clicking on a context " "line moves that line to the top of the editor window." msgstr "" -#: ../../../build/NEWS:6165 ../../../build/NEWS:6457 ../../../build/NEWS:11185 +#: ../../../build/NEWS:6388 ../../../build/NEWS:6680 ../../../build/NEWS:11408 msgid "" "`bpo-33763 `__: IDLE: Use read-only text" " widget for code context instead of label widget." msgstr "" -#: ../../../build/NEWS:6168 ../../../build/NEWS:6460 ../../../build/NEWS:11188 +#: ../../../build/NEWS:6391 ../../../build/NEWS:6683 ../../../build/NEWS:11411 msgid "" "`bpo-33664 `__: Scroll IDLE editor text " "by lines. Previously, the mouse wheel and scrollbar slider moved text by a " @@ -12178,33 +12601,33 @@ msgid "" "to read-only text views." msgstr "" -#: ../../../build/NEWS:6173 ../../../build/NEWS:6465 ../../../build/NEWS:11193 +#: ../../../build/NEWS:6396 ../../../build/NEWS:6688 ../../../build/NEWS:11416 msgid "" "`bpo-33679 `__: Enable theme-specific " "color configuration for Code Context. Use the Highlights tab to see the " "setting for built-in themes or add settings to custom themes." msgstr "" -#: ../../../build/NEWS:6177 ../../../build/NEWS:6469 ../../../build/NEWS:11197 +#: ../../../build/NEWS:6400 ../../../build/NEWS:6692 ../../../build/NEWS:11420 msgid "" "`bpo-33642 `__: Display up to maxlines " "non-blank lines for Code Context. If there is no current context, show a " "single blank line." msgstr "" -#: ../../../build/NEWS:6180 ../../../build/NEWS:6679 ../../../build/NEWS:11200 +#: ../../../build/NEWS:6403 ../../../build/NEWS:6902 ../../../build/NEWS:11423 msgid "" "`bpo-33628 `__: IDLE: Cleanup " "codecontext.py and its test." msgstr "" -#: ../../../build/NEWS:6182 ../../../build/NEWS:6681 ../../../build/NEWS:11202 +#: ../../../build/NEWS:6405 ../../../build/NEWS:6904 ../../../build/NEWS:11425 msgid "" "`bpo-33564 `__: IDLE's code context now " "recognizes async as a block opener." msgstr "" -#: ../../../build/NEWS:6184 ../../../build/NEWS:6837 ../../../build/NEWS:11207 +#: ../../../build/NEWS:6407 ../../../build/NEWS:7060 ../../../build/NEWS:11430 msgid "" "`bpo-21474 `__: Update word/identifier " "definition from ascii to unicode. In text and entry boxes, this affects " @@ -12212,7 +12635,7 @@ msgid "" "deletion left/right by control-BACKSPACE/DEL." msgstr "" -#: ../../../build/NEWS:6189 ../../../build/NEWS:6842 ../../../build/NEWS:11212 +#: ../../../build/NEWS:6412 ../../../build/NEWS:7065 ../../../build/NEWS:11435 msgid "" "`bpo-33204 `__: IDLE: consistently color" " invalid string prefixes. A 'u' string prefix cannot be paired with either " @@ -12220,7 +12643,7 @@ msgid "" " as is valid. Revise and extend colorizer test." msgstr "" -#: ../../../build/NEWS:6194 ../../../build/NEWS:7053 ../../../build/NEWS:11531 +#: ../../../build/NEWS:6417 ../../../build/NEWS:7276 ../../../build/NEWS:11754 msgid "" "`bpo-32984 `__: Set ``__file__`` while " "running a startup file. Like Python, IDLE optionally runs one startup file " @@ -12232,37 +12655,37 @@ msgid "" "normally, without the ``-n`` option." msgstr "" -#: ../../../build/NEWS:6203 ../../../build/NEWS:7062 ../../../build/NEWS:11540 +#: ../../../build/NEWS:6426 ../../../build/NEWS:7285 ../../../build/NEWS:11763 msgid "" "`bpo-32940 `__: Simplify and rename " "StringTranslatePseudoMapping in pyparse." msgstr "" -#: ../../../build/NEWS:6205 ../../../build/NEWS:7306 ../../../build/NEWS:11542 +#: ../../../build/NEWS:6428 ../../../build/NEWS:7529 ../../../build/NEWS:11765 msgid "" "`bpo-32916 `__: Change ``str`` to " "``code`` in pyparse." msgstr "" -#: ../../../build/NEWS:6207 ../../../build/NEWS:7308 ../../../build/NEWS:11544 +#: ../../../build/NEWS:6430 ../../../build/NEWS:7531 ../../../build/NEWS:11767 msgid "" "`bpo-32905 `__: Remove unused code in " "pyparse module." msgstr "" -#: ../../../build/NEWS:6209 ../../../build/NEWS:7310 ../../../build/NEWS:11546 +#: ../../../build/NEWS:6432 ../../../build/NEWS:7533 ../../../build/NEWS:11769 msgid "" "`bpo-32874 `__: Add tests for pyparse." msgstr "" -#: ../../../build/NEWS:6211 ../../../build/NEWS:7312 ../../../build/NEWS:11548 +#: ../../../build/NEWS:6434 ../../../build/NEWS:7535 ../../../build/NEWS:11771 msgid "" "`bpo-32837 `__: Using the system and " "place-dependent default encoding for open() is a bad idea for IDLE's system " "and location-independent files." msgstr "" -#: ../../../build/NEWS:6214 ../../../build/NEWS:7315 ../../../build/NEWS:11551 +#: ../../../build/NEWS:6437 ../../../build/NEWS:7538 ../../../build/NEWS:11774 msgid "" "`bpo-32826 `__: Add \"encoding=utf-8\" " "to open() in IDLE's test_help_about. GUI test test_file_buttons() only looks" @@ -12271,98 +12694,98 @@ msgid "" " encounter a non-ascii character in CREDITS.txt." msgstr "" -#: ../../../build/NEWS:6220 ../../../build/NEWS:6683 ../../../build/NEWS:11217 +#: ../../../build/NEWS:6443 ../../../build/NEWS:6906 ../../../build/NEWS:11440 msgid "" "`bpo-32831 `__: Add docstrings and tests" " for codecontext." msgstr "" -#: ../../../build/NEWS:6222 ../../../build/NEWS:7321 ../../../build/NEWS:11557 +#: ../../../build/NEWS:6445 ../../../build/NEWS:7544 ../../../build/NEWS:11780 msgid "" "`bpo-32765 `__: Update configdialog " "General tab docstring to add new widgets to the widget list." msgstr "" -#: ../../../build/NEWS:6228 +#: ../../../build/NEWS:6451 msgid "" "`bpo-35884 `__: Add a benchmark script " "for timing various ways to access variables: " "``Tools/scripts/var_access_benchmark.py``." msgstr "" -#: ../../../build/NEWS:6231 +#: ../../../build/NEWS:6454 msgid "" "`bpo-34989 `__: python-gdb.py now " "handles errors on computing the line number of a Python frame." msgstr "" -#: ../../../build/NEWS:6234 +#: ../../../build/NEWS:6457 msgid "" "`bpo-20260 `__: Argument Clinic now has " "non-bitwise unsigned int converters." msgstr "" -#: ../../../build/NEWS:6236 +#: ../../../build/NEWS:6459 msgid "" "`bpo-32962 `__: python-gdb now catches " "``UnicodeDecodeError`` exceptions when calling ``string()``." msgstr "" -#: ../../../build/NEWS:6239 +#: ../../../build/NEWS:6462 msgid "" "`bpo-32962 `__: python-gdb now catches " "ValueError on read_var(): when Python has no debug symbols for example." msgstr "" -#: ../../../build/NEWS:6242 ../../../build/NEWS:6850 ../../../build/NEWS:11222 +#: ../../../build/NEWS:6465 ../../../build/NEWS:7073 ../../../build/NEWS:11445 msgid "" "`bpo-33189 `__: :program:`pygettext.py` " "now recognizes only literal strings as docstrings and translatable strings, " "and rejects bytes literals and f-string expressions." msgstr "" -#: ../../../build/NEWS:6246 ../../../build/NEWS:6854 ../../../build/NEWS:11226 +#: ../../../build/NEWS:6469 ../../../build/NEWS:7077 ../../../build/NEWS:11449 msgid "" "`bpo-31920 `__: Fixed handling " "directories as arguments in the ``pygettext`` script. Based on patch by Oleg" " Krasnikov." msgstr "" -#: ../../../build/NEWS:6249 ../../../build/NEWS:6857 ../../../build/NEWS:11229 +#: ../../../build/NEWS:6472 ../../../build/NEWS:7080 ../../../build/NEWS:11452 msgid "" "`bpo-29673 `__: Fix pystackv and pystack" " gdbinit macros." msgstr "" -#: ../../../build/NEWS:6251 +#: ../../../build/NEWS:6474 msgid "" "`bpo-25427 `__: Remove the pyvenv script" " in favor of ``python3 -m venv`` in order to lower confusion as to what " "Python interpreter a virtual environment will be created for." msgstr "" -#: ../../../build/NEWS:6255 ../../../build/NEWS:7067 ../../../build/NEWS:11231 +#: ../../../build/NEWS:6478 ../../../build/NEWS:7290 ../../../build/NEWS:11454 msgid "" "`bpo-32885 `__: Add an ``-n`` flag for " "``Tools/scripts/pathfix.py`` to disable automatic backup creation (files " "with ``~`` suffix)." msgstr "" -#: ../../../build/NEWS:6258 ../../../build/NEWS:7327 ../../../build/NEWS:11567 +#: ../../../build/NEWS:6481 ../../../build/NEWS:7550 ../../../build/NEWS:11790 msgid "" "`bpo-32222 `__: Fix pygettext not " "extracting docstrings for functions with type annotated arguments. Patch by " "Toby Harradine." msgstr "" -#: ../../../build/NEWS:6261 ../../../build/NEWS:6859 ../../../build/NEWS:11234 +#: ../../../build/NEWS:6484 ../../../build/NEWS:7082 ../../../build/NEWS:11457 msgid "" "`bpo-31583 `__: Fix 2to3 for using with " "--add-suffix option but without --output-dir option for relative path to " "files in current directory." msgstr "" -#: ../../../build/NEWS:6267 +#: ../../../build/NEWS:6490 msgid "" "`bpo-35713 `__: The " ":c:func:`PyByteArray_Init` and :c:func:`PyByteArray_Fini` functions have " @@ -12370,20 +12793,20 @@ msgid "" "excluded from the limited API (stable ABI), and were not documented." msgstr "" -#: ../../../build/NEWS:6272 +#: ../../../build/NEWS:6495 msgid "" "`bpo-33817 `__: Fixed " ":c:func:`_PyBytes_Resize` for empty bytes objects." msgstr "" -#: ../../../build/NEWS:6274 +#: ../../../build/NEWS:6497 msgid "" "`bpo-35322 `__: Fix memory leak in " ":c:func:`PyUnicode_EncodeLocale` and :c:func:`PyUnicode_EncodeFSDefault` on " "error handling." msgstr "" -#: ../../../build/NEWS:6277 +#: ../../../build/NEWS:6500 msgid "" "`bpo-35059 `__: The following C macros " "have been converted to static inline functions: :c:func:`Py_INCREF`, " @@ -12391,93 +12814,93 @@ msgid "" ":c:func:`PyObject_INIT`, :c:func:`PyObject_INIT_VAR`." msgstr "" -#: ../../../build/NEWS:6282 +#: ../../../build/NEWS:6505 msgid "" "`bpo-35296 `__: ``make install`` now " "also installs the internal API: ``Include/internal/*.h`` header files." msgstr "" -#: ../../../build/NEWS:6285 +#: ../../../build/NEWS:6508 msgid "" "`bpo-35081 `__: Internal APIs surrounded" " by ``#ifdef Py_BUILD_CORE`` have been moved from ``Include/*.h`` headers to" " new header files ``Include/internal/pycore_*.h``." msgstr "" -#: ../../../build/NEWS:6289 +#: ../../../build/NEWS:6512 msgid "" "`bpo-35259 `__: Conditionally declare " ":c:func:`Py_FinalizeEx()` (new in 3.6) based on Py_LIMITED_API. Patch by " "Arthur Neufeld." msgstr "" -#: ../../../build/NEWS:6292 +#: ../../../build/NEWS:6515 msgid "" "`bpo-35081 `__: The " ":c:func:`_PyObject_GC_TRACK` and :c:func:`_PyObject_GC_UNTRACK` macros have " "been removed from the public C API." msgstr "" -#: ../../../build/NEWS:6296 +#: ../../../build/NEWS:6519 msgid "" "`bpo-35134 `__: Creation of a new " "``Include/cpython/`` subdirectory." msgstr "" -#: ../../../build/NEWS:6298 +#: ../../../build/NEWS:6521 msgid "" "`bpo-34725 `__: Adds " "_Py_SetProgramFullPath so embedders may override sys.executable" msgstr "" -#: ../../../build/NEWS:6301 +#: ../../../build/NEWS:6524 msgid "" "`bpo-34910 `__: Ensure that " ":c:func:`PyObject_Print` always returns ``-1`` on error. Patch by Zackery " "Spytz." msgstr "" -#: ../../../build/NEWS:6304 +#: ../../../build/NEWS:6527 msgid "" "`bpo-34523 `__: Py_DecodeLocale() and " "Py_EncodeLocale() now use the UTF-8 encoding on Windows if " "Py_LegacyWindowsFSEncodingFlag is zero." msgstr "" -#: ../../../build/NEWS:6307 +#: ../../../build/NEWS:6530 msgid "" "`bpo-34193 `__: Fix pluralization in " "TypeError messages in getargs.c and typeobject.c: '1 argument' instead of '1" " arguments' and '1 element' instead of '1 elements'." msgstr "" -#: ../../../build/NEWS:6311 +#: ../../../build/NEWS:6534 msgid "" "`bpo-34127 `__: Return grammatically " "correct error message based on argument count. Patch by Karthikeyan " "Singaravelan." msgstr "" -#: ../../../build/NEWS:6314 +#: ../../../build/NEWS:6537 msgid "" "`bpo-23927 `__: Fixed :exc:`SystemError`" " in :c:func:`PyArg_ParseTupleAndKeywords` when the ``w*`` format unit is " "used for optional parameter." msgstr "" -#: ../../../build/NEWS:6318 +#: ../../../build/NEWS:6541 msgid "" "`bpo-32455 `__: Added " ":c:func:`PyCompile_OpcodeStackEffectWithJump`." msgstr "" -#: ../../../build/NEWS:6320 +#: ../../../build/NEWS:6543 msgid "" "`bpo-34008 `__: Py_Main() can again be " "called after Py_Initialize(), as in Python 3.6." msgstr "" -#: ../../../build/NEWS:6323 +#: ../../../build/NEWS:6546 msgid "" "`bpo-32500 `__: Fixed error messages for" " :c:func:`PySequence_Size`, :c:func:`PySequence_GetItem`, " @@ -12485,108 +12908,108 @@ msgid "" "mapping and :c:func:`PyMapping_Size` called with a sequence." msgstr "" -#: ../../../build/NEWS:6328 +#: ../../../build/NEWS:6551 msgid "" "`bpo-33818 `__: " ":c:func:`PyExceptionClass_Name` will now return ``const char *`` instead of " "``char *``." msgstr "" -#: ../../../build/NEWS:6331 ../../../build/NEWS:7073 +#: ../../../build/NEWS:6554 ../../../build/NEWS:7296 msgid "" "`bpo-33042 `__: Embedding applications " "may once again call PySys_ResetWarnOptions, PySys_AddWarnOption, and " "PySys_AddXOption prior to calling Py_Initialize." msgstr "" -#: ../../../build/NEWS:6335 ../../../build/NEWS:7077 ../../../build/NEWS:11240 +#: ../../../build/NEWS:6558 ../../../build/NEWS:7300 ../../../build/NEWS:11463 msgid "" "`bpo-32374 `__: Document that m_traverse" " for multi-phase initialized modules can be called with m_state=NULL, and " "add a sanity check" msgstr "" -#: ../../../build/NEWS:6338 +#: ../../../build/NEWS:6561 msgid "" "`bpo-30863 `__: " ":c:func:`PyUnicode_AsWideChar` and :c:func:`PyUnicode_AsWideCharString` no " "longer cache the ``wchar_t*`` representation of string objects." msgstr "" -#: ../../../build/NEWS:6344 +#: ../../../build/NEWS:6567 msgid "Python 3.7.0 final" msgstr "Python 3.7.0 final" -#: ../../../build/NEWS:6346 ../../../build/NEWS:10927 +#: ../../../build/NEWS:6569 ../../../build/NEWS:11150 msgid "*Release date: 2018-06-27*" msgstr "*Tanggal rilis: 2018-06-27*" -#: ../../../build/NEWS:6351 +#: ../../../build/NEWS:6574 msgid "" "`bpo-33851 `__: Fix " ":func:`ast.get_docstring` for a node that lacks a docstring." msgstr "" -#: ../../../build/NEWS:6357 +#: ../../../build/NEWS:6580 msgid "" "`bpo-33932 `__: Calling Py_Initialize() " "twice does nothing, instead of failing with a fatal error: restore the " "Python 3.6 behaviour." msgstr "" -#: ../../../build/NEWS:6362 +#: ../../../build/NEWS:6585 msgid "Python 3.7.0 release candidate 1" msgstr "Python 3.7.0 kandidat rilis 1" -#: ../../../build/NEWS:6364 +#: ../../../build/NEWS:6587 msgid "*Release date: 2018-06-12*" msgstr "*Tanggal rilis: 2018-06-12*" -#: ../../../build/NEWS:6474 +#: ../../../build/NEWS:6697 msgid "Python 3.7.0 beta 5" msgstr "Python 3.7.0 beta 5" -#: ../../../build/NEWS:6476 +#: ../../../build/NEWS:6699 msgid "*Release date: 2018-05-30*" msgstr "*Tanggal rilis: 2018-05-30*" -#: ../../../build/NEWS:6489 +#: ../../../build/NEWS:6712 msgid "" "`bpo-20104 `__: The new `os.posix_spawn`" " added in 3.7.0b1 was removed as we are still working on what the API should" " look like. Expect this in 3.8 instead." msgstr "" -#: ../../../build/NEWS:6623 ../../../build/NEWS:11064 +#: ../../../build/NEWS:6846 ../../../build/NEWS:11287 msgid "" "`bpo-32861 `__: The urllib.robotparser's" " ``__str__`` representation now includes wildcard entries and the \"Crawl-" "delay\" and \"Request-rate\" fields. Patch by Michael Lazar." msgstr "" -#: ../../../build/NEWS:6653 +#: ../../../build/NEWS:6876 msgid "" "`bpo-32604 `__: Remove the " "_xxsubinterpreters module (meant for testing) and associated helpers. This " "module was originally added recently in 3.7b1." msgstr "" -#: ../../../build/NEWS:6665 ../../../build/NEWS:11157 +#: ../../../build/NEWS:6888 ../../../build/NEWS:11380 msgid "" "`bpo-33012 `__: Add ``-Wno-cast-" "function-type`` for gcc 8 for silencing warnings about function casts like " "casting to PyCFunction in method definition lists." msgstr "" -#: ../../../build/NEWS:6687 +#: ../../../build/NEWS:6910 msgid "Python 3.7.0 beta 4" msgstr "Python 3.7.0 beta 4" -#: ../../../build/NEWS:6689 +#: ../../../build/NEWS:6912 msgid "*Release date: 2018-05-02*" msgstr "*Tanggal rilis: 2018-05-02*" -#: ../../../build/NEWS:6747 +#: ../../../build/NEWS:6970 msgid "" "`bpo-33185 `__: Fixed regression when " "running pydoc with the :option:`-m` switch. (The regression was introduced " @@ -12595,50 +13018,50 @@ msgid "" "adding ``\".\"``." msgstr "" -#: ../../../build/NEWS:6755 +#: ../../../build/NEWS:6978 msgid "" "`bpo-33217 `__: Deprecate looking up " "non-Enum objects in Enum classes and Enum members (will raise " ":exc:`TypeError` in 3.8+)." msgstr "" -#: ../../../build/NEWS:6864 +#: ../../../build/NEWS:7087 msgid "Python 3.7.0 beta 3" msgstr "Python 3.7.0 beta 3" -#: ../../../build/NEWS:6866 +#: ../../../build/NEWS:7089 msgid "*Release date: 2018-03-29*" msgstr "*Tanggal rilis: 2018-03-29*" -#: ../../../build/NEWS:6894 ../../../build/NEWS:10967 +#: ../../../build/NEWS:7117 ../../../build/NEWS:11190 msgid "" "`bpo-33041 `__: Fixed jumping when the " "function contains an ``async for`` loop." msgstr "" -#: ../../../build/NEWS:6992 +#: ../../../build/NEWS:7215 msgid "" "`bpo-31639 `__: http.server now exposes " "a ThreadedHTTPServer class and uses it when the module is run with ``-m`` to" " cope with web browsers pre-opening sockets." msgstr "" -#: ../../../build/NEWS:7082 +#: ../../../build/NEWS:7305 msgid "Python 3.7.0 beta 2" msgstr "Python 3.7.0 beta 2" -#: ../../../build/NEWS:7084 +#: ../../../build/NEWS:7307 msgid "*Release date: 2018-02-27*" msgstr "*Tanggal rilis: 2018-02-27*" -#: ../../../build/NEWS:7149 +#: ../../../build/NEWS:7372 msgid "" "`bpo-25988 `__: Emit a " ":exc:`DeprecationWarning` when using or importing an ABC directly from " ":mod:`collections` rather than from :mod:`collections.abc`." msgstr "" -#: ../../../build/NEWS:7158 +#: ../../../build/NEWS:7381 msgid "" "`bpo-31333 `__: ``_abc`` module is " "added. It is a speedup module with C implementations for various functions " @@ -12652,34 +13075,34 @@ msgid "" "``_abc_caches_clear``." msgstr "" -#: ../../../build/NEWS:7332 +#: ../../../build/NEWS:7555 msgid "Python 3.7.0 beta 1" msgstr "Python 3.7.0 beta 1" -#: ../../../build/NEWS:7334 +#: ../../../build/NEWS:7557 msgid "*Release date: 2018-01-30*" msgstr "*Tanggal rilis: 2018-01-30*" -#: ../../../build/NEWS:7339 +#: ../../../build/NEWS:7562 msgid "" "`bpo-32703 `__: Fix coroutine's " "ResourceWarning when there's an active error set when it's being finalized." msgstr "" -#: ../../../build/NEWS:7342 ../../../build/NEWS:11285 +#: ../../../build/NEWS:7565 ../../../build/NEWS:11508 msgid "" "`bpo-32650 `__: Pdb and other debuggers " "dependent on bdb.py will correctly step over (next command) native " "coroutines. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:7345 +#: ../../../build/NEWS:7568 msgid "" "`bpo-28685 `__: Optimize list.sort() and" " sorted() by using type specialized comparisons when possible." msgstr "" -#: ../../../build/NEWS:7348 ../../../build/NEWS:11288 +#: ../../../build/NEWS:7571 ../../../build/NEWS:11511 msgid "" "`bpo-32685 `__: Improve suggestion when " "the Python 2 form of print statement is either present on the same line as " @@ -12687,7 +13110,7 @@ msgid "" "instead of a newline. Patch by Nitish Chandra." msgstr "" -#: ../../../build/NEWS:7353 +#: ../../../build/NEWS:7576 msgid "" "`bpo-32697 `__: Python now explicitly " "preserves the definition order of keyword-only parameters. It's always " @@ -12695,21 +13118,21 @@ msgid "" "behavior is now guaranteed and tested." msgstr "" -#: ../../../build/NEWS:7358 +#: ../../../build/NEWS:7581 msgid "" "`bpo-32690 `__: The locals() dictionary " "now displays in the lexical order that variables were defined. Previously, " "the order was reversed." msgstr "" -#: ../../../build/NEWS:7361 +#: ../../../build/NEWS:7584 msgid "" "`bpo-32677 `__: Add ``.isascii()`` " "method to ``str``, ``bytes`` and ``bytearray``. It can be used to test that " "string contains only ASCII characters." msgstr "" -#: ../../../build/NEWS:7365 +#: ../../../build/NEWS:7588 msgid "" "`bpo-32670 `__: Enforce :pep:`479` for " "all code. This means that manually raising a StopIteration exception from a " @@ -12717,7 +13140,7 @@ msgid "" " import generator_stop' was used or not." msgstr "" -#: ../../../build/NEWS:7370 +#: ../../../build/NEWS:7593 msgid "" "`bpo-32591 `__: Added built-in support " "for tracking the origin of coroutine objects; see " @@ -12726,13 +13149,13 @@ msgid "" "coroutine objects." msgstr "" -#: ../../../build/NEWS:7375 +#: ../../../build/NEWS:7598 msgid "" "`bpo-31368 `__: Expose preadv and " "pwritev system calls in the os module. Patch by Pablo Galindo" msgstr "" -#: ../../../build/NEWS:7378 +#: ../../../build/NEWS:7601 msgid "" "`bpo-32544 `__: ``hasattr(obj, name)`` " "and ``getattr(obj, name, default)`` are about 4 times faster than before " @@ -12740,38 +13163,38 @@ msgid "" "``__getattribute__``." msgstr "" -#: ../../../build/NEWS:7382 ../../../build/NEWS:11296 +#: ../../../build/NEWS:7605 ../../../build/NEWS:11519 msgid "" "`bpo-26163 `__: Improved frozenset() " "hash to create more distinct hash values when faced with datasets containing" " many similar values." msgstr "" -#: ../../../build/NEWS:7385 +#: ../../../build/NEWS:7608 msgid "" "`bpo-32550 `__: Remove the " "STORE_ANNOTATION bytecode." msgstr "" -#: ../../../build/NEWS:7387 +#: ../../../build/NEWS:7610 msgid "" "`bpo-20104 `__: Expose posix_spawn as a " "low level API in the os module. (removed before 3.7.0rc1)" msgstr "" -#: ../../../build/NEWS:7390 +#: ../../../build/NEWS:7613 msgid "" "`bpo-24340 `__: Fixed estimation of the " "code stack size." msgstr "" -#: ../../../build/NEWS:7392 +#: ../../../build/NEWS:7615 msgid "" "`bpo-32436 `__: Implement :pep:`567` " "Context Variables." msgstr "" -#: ../../../build/NEWS:7394 ../../../build/NEWS:11309 +#: ../../../build/NEWS:7617 ../../../build/NEWS:11532 msgid "" "`bpo-18533 `__: ``repr()`` on a dict " "containing its own ``values()`` or ``items()`` no longer raises " @@ -12779,39 +13202,39 @@ msgid "" "other recursive structures. Patch by Ben North." msgstr "" -#: ../../../build/NEWS:7399 +#: ../../../build/NEWS:7622 msgid "" "`bpo-20891 `__: Py_Initialize() now " "creates the GIL. The GIL is no longer created \"on demand\" to fix a race " "condition when PyGILState_Ensure() is called in a non-Python thread." msgstr "" -#: ../../../build/NEWS:7403 ../../../build/NEWS:11314 +#: ../../../build/NEWS:7626 ../../../build/NEWS:11537 msgid "" "`bpo-32028 `__: Leading whitespace is " "now correctly ignored when generating suggestions for converting Py2 print " "statements to Py3 builtin print function calls. Patch by Sanyam Khurana." msgstr "" -#: ../../../build/NEWS:7407 +#: ../../../build/NEWS:7630 msgid "" "`bpo-31179 `__: Make dict.copy() up to " "5.5 times faster." msgstr "" -#: ../../../build/NEWS:7409 +#: ../../../build/NEWS:7632 msgid "" "`bpo-31113 `__: Get rid of recursion in " "the compiler for normal control flow." msgstr "" -#: ../../../build/NEWS:7414 +#: ../../../build/NEWS:7637 msgid "" "`bpo-25988 `__: Deprecate exposing the " "contents of collections.abc in the regular collections module." msgstr "" -#: ../../../build/NEWS:7417 +#: ../../../build/NEWS:7640 msgid "" "`bpo-31429 `__: The default cipher suite" " selection of the ssl module now uses a blacklist approach rather than a " @@ -12820,7 +13243,7 @@ msgid "" "configured on compile time." msgstr "" -#: ../../../build/NEWS:7422 +#: ../../../build/NEWS:7645 msgid "" "`bpo-30306 `__: " "contextlib.contextmanager now releases the arguments passed to the " @@ -12829,45 +13252,45 @@ msgid "" "when not being used as a function decorator. Patch by Martin Teichmann." msgstr "" -#: ../../../build/NEWS:7428 +#: ../../../build/NEWS:7651 msgid "" "`bpo-21417 `__: Added support for " "setting the compression level for zipfile.ZipFile." msgstr "" -#: ../../../build/NEWS:7431 +#: ../../../build/NEWS:7654 msgid "" "`bpo-32251 `__: Implement " "asyncio.BufferedProtocol (provisional API)." msgstr "" -#: ../../../build/NEWS:7433 +#: ../../../build/NEWS:7656 msgid "" "`bpo-32513 `__: In dataclasses, allow " "easier overriding of dunder methods without specifying decorator parameters." msgstr "" -#: ../../../build/NEWS:7436 +#: ../../../build/NEWS:7659 msgid "" "`bpo-32660 `__: :mod:`termios` makes " "available ``FIONREAD``, ``FIONCLEX``, ``FIOCLEX``, ``FIOASYNC`` and " "``FIONBIO`` also under Solaris/derivatives." msgstr "" -#: ../../../build/NEWS:7439 ../../../build/NEWS:11389 +#: ../../../build/NEWS:7662 ../../../build/NEWS:11612 msgid "" "`bpo-27931 `__: Fix email address header" " parsing error when the username is an empty quoted string. Patch by Xiang " "Zhang." msgstr "" -#: ../../../build/NEWS:7442 +#: ../../../build/NEWS:7665 msgid "" "`bpo-32659 `__: Under Solaris and " "derivatives, :class:`os.stat_result` provides a st_fstype attribute." msgstr "" -#: ../../../build/NEWS:7445 +#: ../../../build/NEWS:7668 msgid "" "`bpo-32662 `__: Implement " "Server.start_serving(), Server.serve_forever(), and Server.is_serving() " @@ -12875,45 +13298,45 @@ msgid "" "loop.create_unix_server()." msgstr "" -#: ../../../build/NEWS:7449 +#: ../../../build/NEWS:7672 msgid "" "`bpo-32391 `__: Implement " ":meth:`asyncio.StreamWriter.wait_closed` and " ":meth:`asyncio.StreamWriter.is_closing` methods" msgstr "" -#: ../../../build/NEWS:7452 +#: ../../../build/NEWS:7675 msgid "" "`bpo-32643 `__: Make Task._step, " "Task._wakeup and Future._schedule_callbacks methods private." msgstr "" -#: ../../../build/NEWS:7455 +#: ../../../build/NEWS:7678 msgid "" "`bpo-32630 `__: Refactor decimal module " "to use contextvars to store decimal context." msgstr "" -#: ../../../build/NEWS:7458 +#: ../../../build/NEWS:7681 msgid "" "`bpo-32622 `__: Add " ":meth:`asyncio.AbstractEventLoop.sendfile` method." msgstr "" -#: ../../../build/NEWS:7460 ../../../build/NEWS:11392 +#: ../../../build/NEWS:7683 ../../../build/NEWS:11615 msgid "" "`bpo-32304 `__: distutils' upload " "command no longer corrupts tar files ending with a CR byte, and no longer " "tries to convert CR to CRLF in any of the upload text fields." msgstr "" -#: ../../../build/NEWS:7464 ../../../build/NEWS:11396 +#: ../../../build/NEWS:7687 ../../../build/NEWS:11619 msgid "" "`bpo-32502 `__: uuid.uuid1 no longer " "raises an exception if a 64-bit hardware address is encountered." msgstr "" -#: ../../../build/NEWS:7467 +#: ../../../build/NEWS:7690 msgid "" "`bpo-32596 `__: ``concurrent.futures`` " "imports ``ThreadPoolExecutor`` and ``ProcessPoolExecutor`` lazily (using " @@ -12921,81 +13344,81 @@ msgid "" "uses only ``ThreadPoolExecutor`` by default." msgstr "" -#: ../../../build/NEWS:7472 +#: ../../../build/NEWS:7695 msgid "" "`bpo-31801 `__: Add ``_ignore_`` to " "``Enum`` so temporary variables can be used during class construction " "without being turned into members." msgstr "" -#: ../../../build/NEWS:7475 +#: ../../../build/NEWS:7698 msgid "" "`bpo-32576 `__: Use queue.SimpleQueue() " "in places where it can be invoked from a weakref callback." msgstr "" -#: ../../../build/NEWS:7478 +#: ../../../build/NEWS:7701 msgid "" "`bpo-32574 `__: Fix memory leak in " "asyncio.Queue, when the queue has limited size and it is full, the " "cancelation of queue.put() can cause a memory leak. Patch by: José Melero." msgstr "" -#: ../../../build/NEWS:7482 ../../../build/NEWS:11406 +#: ../../../build/NEWS:7705 ../../../build/NEWS:11629 msgid "" "`bpo-32521 `__: The nis module is now " "compatible with new libnsl and headers location." msgstr "" -#: ../../../build/NEWS:7485 +#: ../../../build/NEWS:7708 msgid "" "`bpo-32467 `__: " "collections.abc.ValuesView now inherits from collections.abc.Collection." msgstr "" -#: ../../../build/NEWS:7488 ../../../build/NEWS:11409 +#: ../../../build/NEWS:7711 ../../../build/NEWS:11632 msgid "" "`bpo-32473 `__: Improve " "ABCMeta._dump_registry() output readability" msgstr "" -#: ../../../build/NEWS:7490 +#: ../../../build/NEWS:7713 msgid "" "`bpo-32102 `__: New argument " "``capture_output`` for subprocess.run" msgstr "" -#: ../../../build/NEWS:7492 ../../../build/NEWS:11411 +#: ../../../build/NEWS:7715 ../../../build/NEWS:11634 msgid "" "`bpo-32521 `__: glibc has removed Sun " "RPC. Use replacement libtirpc headers and library in nis module." msgstr "" -#: ../../../build/NEWS:7495 +#: ../../../build/NEWS:7718 msgid "" "`bpo-32493 `__: UUID module fixes build " "for FreeBSD/OpenBSD" msgstr "" -#: ../../../build/NEWS:7497 +#: ../../../build/NEWS:7720 msgid "" "`bpo-32503 `__: Pickling with protocol 4" " no longer creates too small frames." msgstr "" -#: ../../../build/NEWS:7499 +#: ../../../build/NEWS:7722 msgid "" "`bpo-29237 `__: Create enum for pstats " "sorting options" msgstr "" -#: ../../../build/NEWS:7501 +#: ../../../build/NEWS:7724 msgid "" "`bpo-32454 `__: Add close(fd) function " "to the socket module." msgstr "" -#: ../../../build/NEWS:7503 +#: ../../../build/NEWS:7726 msgid "" "`bpo-25942 `__: The subprocess module is" " now more graceful when handling a Ctrl-C KeyboardInterrupt during " @@ -13006,59 +13429,59 @@ msgid "" "the child had a chance first." msgstr "" -#: ../../../build/NEWS:7510 +#: ../../../build/NEWS:7733 msgid "" "`bpo-32433 `__: The hmac module now has " "hmac.digest(), which provides an optimized HMAC digest." msgstr "" -#: ../../../build/NEWS:7513 +#: ../../../build/NEWS:7736 msgid "" "`bpo-28134 `__: Sockets now auto-detect " "family, type and protocol from file descriptor by default." msgstr "" -#: ../../../build/NEWS:7516 +#: ../../../build/NEWS:7739 msgid "" "`bpo-32404 `__: Fix bug where " ":meth:`datetime.datetime.fromtimestamp` did not call __new__ in " ":class:`datetime.datetime` subclasses." msgstr "" -#: ../../../build/NEWS:7519 +#: ../../../build/NEWS:7742 msgid "" "`bpo-32403 `__: Improved speed of " ":class:`datetime.date` and :class:`datetime.datetime` alternate " "constructors." msgstr "" -#: ../../../build/NEWS:7522 ../../../build/NEWS:11414 +#: ../../../build/NEWS:7745 ../../../build/NEWS:11637 msgid "" "`bpo-32228 `__: Ensure that " "``truncate()`` preserves the file position (as reported by ``tell()``) after" " writes longer than the buffer size." msgstr "" -#: ../../../build/NEWS:7525 +#: ../../../build/NEWS:7748 msgid "" "`bpo-32410 `__: Implement " "``loop.sock_sendfile`` for asyncio event loop." msgstr "" -#: ../../../build/NEWS:7527 +#: ../../../build/NEWS:7750 msgid "" "`bpo-22908 `__: Added seek and tell to " "the ZipExtFile class. This only works if the file object used to open the " "zipfile is seekable." msgstr "" -#: ../../../build/NEWS:7530 +#: ../../../build/NEWS:7753 msgid "" "`bpo-32373 `__: Add socket.getblocking()" " method." msgstr "" -#: ../../../build/NEWS:7532 +#: ../../../build/NEWS:7755 msgid "" "`bpo-32248 `__: Add " ":mod:`importlib.resources` and :class:`importlib.abc.ResourceReader` as the " @@ -13069,19 +13492,19 @@ msgid "" "deprecated in favor of these new APIs." msgstr "" -#: ../../../build/NEWS:7540 +#: ../../../build/NEWS:7763 msgid "" "`bpo-32320 `__: collections.namedtuple()" " now supports default values." msgstr "" -#: ../../../build/NEWS:7542 +#: ../../../build/NEWS:7765 msgid "" "`bpo-29302 `__: Add " "contextlib.AsyncExitStack. Patch by Alexander Mohr and Ilya Kulakov." msgstr "" -#: ../../../build/NEWS:7545 +#: ../../../build/NEWS:7768 msgid "" "`bpo-31961 `__: *Removed in Python " "3.7.0b2.* The *args* argument of subprocess.Popen can now be a :term:`path-" @@ -13089,7 +13512,7 @@ msgid "" "be a :term:`path-like object` as well." msgstr "" -#: ../../../build/NEWS:7550 ../../../build/NEWS:11442 +#: ../../../build/NEWS:7773 ../../../build/NEWS:11665 msgid "" "`bpo-31900 `__: The " ":func:`locale.localeconv` function now sets temporarily the ``LC_CTYPE`` " @@ -13102,14 +13525,14 @@ msgid "" "``'{:n}'.format(1234)``)." msgstr "" -#: ../../../build/NEWS:7559 +#: ../../../build/NEWS:7782 msgid "" "`bpo-31853 `__: Use super().method " "instead of socket.method in SSLSocket. They were there most likely for " "legacy reasons." msgstr "" -#: ../../../build/NEWS:7562 +#: ../../../build/NEWS:7785 msgid "" "`bpo-31399 `__: The ssl module now uses " "OpenSSL's X509_VERIFY_PARAM_set1_host() and X509_VERIFY_PARAM_set1_ip() API " @@ -13117,26 +13540,26 @@ msgid "" "disabled with SSLContext.hostname_checks_common_name." msgstr "" -#: ../../../build/NEWS:7567 +#: ../../../build/NEWS:7790 msgid "" "`bpo-14976 `__: Add a queue.SimpleQueue " "class, an unbounded FIFO queue with a reentrant C implementation of put()." msgstr "" -#: ../../../build/NEWS:7573 +#: ../../../build/NEWS:7796 msgid "" "`bpo-32724 `__: Add references to some " "commands in the documentation of Pdb. Patch by Stéphane Wirtel" msgstr "" -#: ../../../build/NEWS:7576 +#: ../../../build/NEWS:7799 msgid "" "`bpo-32649 `__: Complete the C API " "documentation, profiling and tracing part with the newly added per-opcode " "events." msgstr "" -#: ../../../build/NEWS:7579 ../../../build/NEWS:11470 +#: ../../../build/NEWS:7802 ../../../build/NEWS:11693 msgid "" "`bpo-17799 `__: Explain real behaviour " "of sys.settrace and sys.setprofile and their C-API counterparts regarding " @@ -13144,13 +13567,13 @@ msgid "" "Salgado." msgstr "" -#: ../../../build/NEWS:7586 ../../../build/NEWS:11480 +#: ../../../build/NEWS:7809 ../../../build/NEWS:11703 msgid "" "`bpo-32721 `__: Fix test_hashlib to not " "fail if the _md5 module is not built." msgstr "" -#: ../../../build/NEWS:7588 +#: ../../../build/NEWS:7811 msgid "" "`bpo-28414 `__: Add test cases for IDNA " "2003 and 2008 host names. IDNA 2003 internationalized host names are working" @@ -13158,7 +13581,7 @@ msgid "" "2008 are still broken." msgstr "" -#: ../../../build/NEWS:7592 +#: ../../../build/NEWS:7815 msgid "" "`bpo-32604 `__: Add a new " "\"_xxsubinterpreters\" extension module that exposes the existing " @@ -13168,63 +13591,63 @@ msgid "" "removed in 3.7.0rc1." msgstr "" -#: ../../../build/NEWS:7598 +#: ../../../build/NEWS:7821 msgid "" "`bpo-32602 `__: Add test certs and test " "for ECDSA cert and EC/RSA dual mode." msgstr "" -#: ../../../build/NEWS:7600 +#: ../../../build/NEWS:7823 msgid "" "`bpo-32549 `__: On Travis CI, Python now" " Compiles and uses a local copy of OpenSSL 1.1.0g for testing." msgstr "" -#: ../../../build/NEWS:7606 ../../../build/NEWS:11492 +#: ../../../build/NEWS:7829 ../../../build/NEWS:11715 msgid "" "`bpo-32635 `__: Fix segfault of the " "crypt module when libxcrypt is provided instead of libcrypt at the system." msgstr "" -#: ../../../build/NEWS:7609 +#: ../../../build/NEWS:7832 msgid "" "`bpo-32598 `__: Use autoconf to detect " "OpenSSL libs, headers and supported features. The ax_check_openssl M4 macro " "uses pkg-config to locate OpenSSL and falls back to manual search." msgstr "" -#: ../../../build/NEWS:7613 +#: ../../../build/NEWS:7836 msgid "" "`bpo-32593 `__: Drop support of FreeBSD " "9 and older." msgstr "" -#: ../../../build/NEWS:7615 +#: ../../../build/NEWS:7838 msgid "" "`bpo-29708 `__: If the " ":envvar:`SOURCE_DATE_EPOCH` environment variable is set, :mod:`py_compile` " "will always create hash-based ``.pyc`` files." msgstr "" -#: ../../../build/NEWS:7621 +#: ../../../build/NEWS:7844 msgid "" "`bpo-32588 `__: Create standalone " "_distutils_findvs module and add missing _queue module to installer." msgstr "" -#: ../../../build/NEWS:7624 +#: ../../../build/NEWS:7847 msgid "" "`bpo-29911 `__: Ensure separate Modify " "and Uninstall buttons are displayed." msgstr "" -#: ../../../build/NEWS:7626 +#: ../../../build/NEWS:7849 msgid "" "`bpo-32507 `__: Use app-local UCRT " "install rather than the proper update for old versions of Windows." msgstr "" -#: ../../../build/NEWS:7632 +#: ../../../build/NEWS:7855 msgid "" "`bpo-32726 `__: Provide an additional, " "more modern macOS installer variant that supports macOS 10.9+ systems in " @@ -13233,34 +13656,34 @@ msgid "" "supplies its own copy of Tcl/Tk 8.6." msgstr "" -#: ../../../build/NEWS:7637 +#: ../../../build/NEWS:7860 msgid "" "`bpo-28440 `__: No longer add " "/Library/Python/3.x/site-packages to sys.path for macOS framework builds to " "avoid future conflicts." msgstr "" -#: ../../../build/NEWS:7643 +#: ../../../build/NEWS:7866 msgid "" "`bpo-32681 `__: Fix uninitialized " "variable 'res' in the C implementation of os.dup2. Patch by Stéphane Wirtel" msgstr "" -#: ../../../build/NEWS:7646 +#: ../../../build/NEWS:7869 msgid "" "`bpo-10381 `__: Add C API access to the " "``datetime.timezone`` constructor and ``datetime.timzone.UTC`` singleton." msgstr "" -#: ../../../build/NEWS:7651 +#: ../../../build/NEWS:7874 msgid "Python 3.7.0 alpha 4" msgstr "Python 3.7.0 alfa 4" -#: ../../../build/NEWS:7653 +#: ../../../build/NEWS:7876 msgid "*Release date: 2018-01-08*" msgstr "*Tanggal rilis: 2018-01-08*" -#: ../../../build/NEWS:7658 +#: ../../../build/NEWS:7881 msgid "" "`bpo-31975 `__: The default warning " "filter list now starts with a \"default::DeprecationWarning:__main__\" " @@ -13268,19 +13691,19 @@ msgid "" "file scripts and at the interactive prompt." msgstr "" -#: ../../../build/NEWS:7663 +#: ../../../build/NEWS:7886 msgid "" "`bpo-32226 `__: ``__class_getitem__`` is" " now an automatic class method." msgstr "" -#: ../../../build/NEWS:7665 +#: ../../../build/NEWS:7888 msgid "" "`bpo-32399 `__: Add AIX uuid library " "support for RFC4122 using uuid_create() in libc.a" msgstr "" -#: ../../../build/NEWS:7668 +#: ../../../build/NEWS:7891 msgid "" "`bpo-32390 `__: Fix the compilation " "failure on AIX after the f_fsid field has been added to the object returned " @@ -13288,26 +13711,26 @@ msgid "" "Original patch by Michael Felt." msgstr "" -#: ../../../build/NEWS:7672 +#: ../../../build/NEWS:7895 msgid "" "`bpo-32379 `__: Make MRO computation " "faster when a class inherits from a single base." msgstr "" -#: ../../../build/NEWS:7675 +#: ../../../build/NEWS:7898 msgid "" "`bpo-32259 `__: The error message of a " "TypeError raised when unpack non-iterable is now more specific." msgstr "" -#: ../../../build/NEWS:7678 ../../../build/NEWS:11299 +#: ../../../build/NEWS:7901 ../../../build/NEWS:11522 msgid "" "`bpo-27169 `__: The ``__debug__`` " "constant is now optimized out at compile time. This fixes also `bpo-22091 " "`__." msgstr "" -#: ../../../build/NEWS:7681 +#: ../../../build/NEWS:7904 msgid "" "`bpo-32329 `__: The :option:`-R` option " "now turns on hash randomization when the :envvar:`PYTHONHASHSEED` " @@ -13316,7 +13739,7 @@ msgid "" "hash randomization is turned off by ``PYTHONHASHSEED=0``." msgstr "" -#: ../../../build/NEWS:7687 +#: ../../../build/NEWS:7910 msgid "" "`bpo-30416 `__: The optimizer is now " "protected from spending much time doing complex calculations and consuming " @@ -13324,34 +13747,34 @@ msgid "" "limits for constants that can be produced in constant folding." msgstr "" -#: ../../../build/NEWS:7692 ../../../build/NEWS:10969 +#: ../../../build/NEWS:7915 ../../../build/NEWS:11192 msgid "" "`bpo-32282 `__: Fix an unnecessary ifdef" " in the include of VersionHelpers.h in socketmodule on Windows." msgstr "" -#: ../../../build/NEWS:7695 +#: ../../../build/NEWS:7918 msgid "" "`bpo-30579 `__: Implement " "TracebackType.__new__ to allow Python-level creation of traceback objects, " "and make TracebackType.tb_next mutable." msgstr "" -#: ../../../build/NEWS:7698 +#: ../../../build/NEWS:7921 msgid "" "`bpo-32260 `__: Don't byte swap the " "input keys to the SipHash algorithm on big-endian platforms. This should " "ensure siphash gives consistent results across platforms." msgstr "" -#: ../../../build/NEWS:7702 +#: ../../../build/NEWS:7925 msgid "" "`bpo-31506 `__: Improve the error " "message logic for object.__new__ and object.__init__. Patch by Sanyam " "Khurana." msgstr "" -#: ../../../build/NEWS:7705 +#: ../../../build/NEWS:7928 msgid "" "`bpo-20361 `__: ``-b`` and ``-bb`` now " "inject ``'default::BytesWarning'`` and ``error::BytesWarning`` entries into " @@ -13360,124 +13783,124 @@ msgid "" "environment variable." msgstr "" -#: ../../../build/NEWS:7710 +#: ../../../build/NEWS:7933 msgid "" "`bpo-32230 `__: `-X dev` now injects a " "``'default'`` entry into sys.warnoptions, ensuring that it behaves " "identically to actually passing ``-Wdefault`` at the command line." msgstr "" -#: ../../../build/NEWS:7714 +#: ../../../build/NEWS:7937 msgid "" "`bpo-29240 `__: Add a new UTF-8 mode: " "implementation of the :pep:`540`." msgstr "" -#: ../../../build/NEWS:7716 +#: ../../../build/NEWS:7939 msgid "" "`bpo-32226 `__: :pep:`560`: Add support " "for ``__mro_entries__`` and ``__class_getitem__``. Implemented by Ivan " "Levkivskyi." msgstr "" -#: ../../../build/NEWS:7719 +#: ../../../build/NEWS:7942 msgid "" "`bpo-32225 `__: :pep:`562`: Add support " "for module ``__getattr__`` and ``__dir__``. Implemented by Ivan Levkivskyi." msgstr "" -#: ../../../build/NEWS:7722 +#: ../../../build/NEWS:7945 msgid "" "`bpo-31901 `__: The `atexit` module now " "has its callback stored per interpreter." msgstr "" -#: ../../../build/NEWS:7725 +#: ../../../build/NEWS:7948 msgid "" "`bpo-31650 `__: Implement :pep:`552` " "(Deterministic pycs). Python now supports invalidating bytecode cache files " "bashed on a source content hash rather than source last-modified time." msgstr "" -#: ../../../build/NEWS:7729 +#: ../../../build/NEWS:7952 msgid "" "`bpo-29469 `__: Move constant folding " "from bytecode layer to AST layer. Original patch by Eugene Toder." msgstr "" -#: ../../../build/NEWS:7735 +#: ../../../build/NEWS:7958 msgid "" "`bpo-32506 `__: Now that dict is defined" " as keeping insertion order, drop OrderedDict and just use plain dict." msgstr "" -#: ../../../build/NEWS:7738 +#: ../../../build/NEWS:7961 msgid "" "`bpo-32279 `__: Add params to " "dataclasses.make_dataclasses(): init, repr, eq, order, hash, and frozen. " "Pass them through to dataclass()." msgstr "" -#: ../../../build/NEWS:7741 +#: ../../../build/NEWS:7964 msgid "" "`bpo-32278 `__: Make type information " "optional on dataclasses.make_dataclass(). If omitted, the string " "'typing.Any' is used." msgstr "" -#: ../../../build/NEWS:7744 +#: ../../../build/NEWS:7967 msgid "" "`bpo-32499 `__: Add " "dataclasses.is_dataclass(obj), which returns True if obj is a dataclass or " "an instance of one." msgstr "" -#: ../../../build/NEWS:7747 +#: ../../../build/NEWS:7970 msgid "" "`bpo-32468 `__: Improve frame repr() to " "mention filename, code name and current line number." msgstr "" -#: ../../../build/NEWS:7750 +#: ../../../build/NEWS:7973 msgid "" "`bpo-23749 `__: asyncio: Implement " "loop.start_tls()" msgstr "" -#: ../../../build/NEWS:7752 +#: ../../../build/NEWS:7975 msgid "" "`bpo-32441 `__: Return the new file " "descriptor (i.e., the second argument) from ``os.dup2``. Previously, " "``None`` was always returned." msgstr "" -#: ../../../build/NEWS:7755 +#: ../../../build/NEWS:7978 msgid "" "`bpo-32422 `__: ``functools.lru_cache`` " "uses less memory (3 words for each cached key) and takes about 1/3 time for " "cyclic GC." msgstr "" -#: ../../../build/NEWS:7758 +#: ../../../build/NEWS:7981 msgid "" "`bpo-31721 `__: Prevent Python crash " "from happening when Future._log_traceback is set to True manually. Now it " "can only be set to False, or a ValueError is raised." msgstr "" -#: ../../../build/NEWS:7762 +#: ../../../build/NEWS:7985 msgid "" "`bpo-32415 `__: asyncio: Add " "Task.get_loop() and Future.get_loop()" msgstr "" -#: ../../../build/NEWS:7764 ../../../build/NEWS:11417 +#: ../../../build/NEWS:7987 ../../../build/NEWS:11640 msgid "" "`bpo-26133 `__: Don't unsubscribe " "signals in asyncio UNIX event loop on interpreter shutdown." msgstr "" -#: ../../../build/NEWS:7767 +#: ../../../build/NEWS:7990 msgid "" "`bpo-32363 `__: Make " "asyncio.Task.set_exception() and set_result() raise NotImplementedError. " @@ -13485,7 +13908,7 @@ msgid "" " an invalid state, instead of raising an AssertionError." msgstr "" -#: ../../../build/NEWS:7772 +#: ../../../build/NEWS:7995 msgid "" "`bpo-32357 `__: Optimize " "asyncio.iscoroutine() and loop.create_task() for non-native coroutines (e.g." @@ -13494,33 +13917,33 @@ msgid "" "latter is as fast." msgstr "" -#: ../../../build/NEWS:7777 +#: ../../../build/NEWS:8000 msgid "" "`bpo-32356 `__: " "asyncio.transport.resume_reading() and pause_reading() are now idempotent. " "New transport.is_reading() method is added." msgstr "" -#: ../../../build/NEWS:7780 +#: ../../../build/NEWS:8003 msgid "" "`bpo-32355 `__: Optimize " "asyncio.gather(); now up to 15% faster." msgstr "" -#: ../../../build/NEWS:7782 +#: ../../../build/NEWS:8005 msgid "" "`bpo-32351 `__: Use fastpath in " "asyncio.sleep if delay<0 (2x boost)" msgstr "" -#: ../../../build/NEWS:7784 +#: ../../../build/NEWS:8007 msgid "" "`bpo-32348 `__: Optimize asyncio.Future " "schedule/add/remove callback. The optimization shows 3-6% performance " "improvements of async/await code." msgstr "" -#: ../../../build/NEWS:7787 +#: ../../../build/NEWS:8010 msgid "" "`bpo-32331 `__: Fix socket.settimeout() " "and socket.setblocking() to keep socket.type as is. Fix socket.socket() " @@ -13528,7 +13951,7 @@ msgid "" "only affects OSes that have SOCK_NONBLOCK and/or SOCK_CLOEXEC." msgstr "" -#: ../../../build/NEWS:7792 +#: ../../../build/NEWS:8015 msgid "" "`bpo-32248 `__: Add " ":class:`importlib.abc.ResourceReader` as an ABC for loaders to provide a " @@ -13536,13 +13959,13 @@ msgid "" ":mod:`importlib.resources` as the port of ``importlib_resources``." msgstr "" -#: ../../../build/NEWS:7797 +#: ../../../build/NEWS:8020 msgid "" "`bpo-32311 `__: Implement " "asyncio.create_task(coro) shortcut" msgstr "" -#: ../../../build/NEWS:7799 +#: ../../../build/NEWS:8022 msgid "" "`bpo-32327 `__: Convert asyncio " "functions that were documented as coroutines to coroutines. Affected " @@ -13550,56 +13973,56 @@ msgid "" "loop.getaddrinfo, loop.getnameinfo." msgstr "" -#: ../../../build/NEWS:7803 ../../../build/NEWS:11423 +#: ../../../build/NEWS:8026 ../../../build/NEWS:11646 msgid "" "`bpo-32323 `__: " ":func:`urllib.parse.urlsplit()` does not convert zone-id (scope) to lower " "case for scoped IPv6 addresses in hostnames now." msgstr "" -#: ../../../build/NEWS:7806 ../../../build/NEWS:11426 +#: ../../../build/NEWS:8029 ../../../build/NEWS:11649 msgid "" "`bpo-32302 `__: Fix bdist_wininst of " "distutils for CRT v142: it binary compatible with CRT v140." msgstr "" -#: ../../../build/NEWS:7809 +#: ../../../build/NEWS:8032 msgid "" "`bpo-29711 `__: Fix ``stop_serving`` in " "asyncio proactor loop kill all listening servers" msgstr "" -#: ../../../build/NEWS:7812 +#: ../../../build/NEWS:8035 msgid "" "`bpo-32308 `__: :func:`re.sub()` now " "replaces empty matches adjacent to a previous non-empty match." msgstr "" -#: ../../../build/NEWS:7815 +#: ../../../build/NEWS:8038 msgid "" "`bpo-29970 `__: Abort asyncio " "SSLProtocol connection if handshake not complete within 10s" msgstr "" -#: ../../../build/NEWS:7818 +#: ../../../build/NEWS:8041 msgid "" "`bpo-32314 `__: Implement asyncio.run()." msgstr "" -#: ../../../build/NEWS:7820 +#: ../../../build/NEWS:8043 msgid "" "`bpo-17852 `__: Revert incorrect fix " "based on misunderstanding of _Py_PyAtExit() semantics." msgstr "" -#: ../../../build/NEWS:7823 +#: ../../../build/NEWS:8046 msgid "" "`bpo-32296 `__: Implement " "asyncio._get_running_loop() and get_event_loop() in C. This makes them 4x " "faster." msgstr "" -#: ../../../build/NEWS:7826 +#: ../../../build/NEWS:8049 msgid "" "`bpo-32250 `__: Implement " "``asyncio.current_task()`` and ``asyncio.all_tasks()``. Add helpers intended" @@ -13609,7 +14032,7 @@ msgid "" "``asyncio.Task.all_tasks()``." msgstr "" -#: ../../../build/NEWS:7832 ../../../build/NEWS:11429 +#: ../../../build/NEWS:8055 ../../../build/NEWS:11652 msgid "" "`bpo-32255 `__: A single empty field is " "now always quoted when written into a CSV file. This allows to distinguish " @@ -13617,7 +14040,7 @@ msgid "" "Takeuchi." msgstr "" -#: ../../../build/NEWS:7836 ../../../build/NEWS:11433 +#: ../../../build/NEWS:8059 ../../../build/NEWS:11656 msgid "" "`bpo-32277 `__: Raise " "``NotImplementedError`` instead of ``SystemError`` on platforms where " @@ -13625,14 +14048,14 @@ msgid "" "Sottile." msgstr "" -#: ../../../build/NEWS:7840 +#: ../../../build/NEWS:8063 msgid "" "`bpo-30050 `__: New argument " "warn_on_full_buffer to signal.set_wakeup_fd lets you control whether Python " "prints a warning on stderr when the wakeup fd buffer overflows." msgstr "" -#: ../../../build/NEWS:7844 +#: ../../../build/NEWS:8067 msgid "" "`bpo-29137 `__: The ``fpectl`` library " "has been removed. It was never enabled by default, never worked correctly on" @@ -13640,25 +14063,25 @@ msgid "" "breakage of C extensions." msgstr "" -#: ../../../build/NEWS:7848 +#: ../../../build/NEWS:8071 msgid "" "`bpo-32273 `__: Move asyncio.test_utils " "to test.test_asyncio." msgstr "" -#: ../../../build/NEWS:7850 +#: ../../../build/NEWS:8073 msgid "" "`bpo-32272 `__: Remove asyncio.async() " "function." msgstr "" -#: ../../../build/NEWS:7852 +#: ../../../build/NEWS:8075 msgid "" "`bpo-32269 `__: Add " "asyncio.get_running_loop() function." msgstr "" -#: ../../../build/NEWS:7854 +#: ../../../build/NEWS:8077 msgid "" "`bpo-32265 `__: All class and static " "methods of builtin types now are correctly classified by " @@ -13666,39 +14089,39 @@ msgid "" "types.ClassMethodDescriptorType for unbound class methods of builtin types." msgstr "" -#: ../../../build/NEWS:7859 +#: ../../../build/NEWS:8082 msgid "" "`bpo-32253 `__: Deprecate ``yield from " "lock``, ``await lock``, ``with (yield from lock)`` and ``with await lock`` " "for asyncio synchronization primitives." msgstr "" -#: ../../../build/NEWS:7863 +#: ../../../build/NEWS:8086 msgid "" "`bpo-22589 `__: Changed MIME type of " ".bmp from 'image/x-ms-bmp' to 'image/bmp'" msgstr "" -#: ../../../build/NEWS:7865 +#: ../../../build/NEWS:8088 msgid "" "`bpo-32193 `__: Convert asyncio to use " "*async/await* syntax. Old styled ``yield from`` is still supported too." msgstr "" -#: ../../../build/NEWS:7868 +#: ../../../build/NEWS:8091 msgid "" "`bpo-32206 `__: Add support to run " "modules with pdb" msgstr "" -#: ../../../build/NEWS:7870 +#: ../../../build/NEWS:8093 msgid "" "`bpo-32227 `__: " "``functools.singledispatch`` now supports registering implementations using " "type annotations." msgstr "" -#: ../../../build/NEWS:7873 +#: ../../../build/NEWS:8096 msgid "" "`bpo-15873 `__: Added new alternate " "constructors :meth:`datetime.datetime.fromisoformat`, " @@ -13706,26 +14129,26 @@ msgid "" "as the inverse operation of each classes's respective ``isoformat`` methods." msgstr "" -#: ../../../build/NEWS:7879 ../../../build/NEWS:11437 +#: ../../../build/NEWS:8102 ../../../build/NEWS:11660 msgid "" "`bpo-32199 `__: The getnode() ip getter " "now uses 'ip link' instead of 'ip link list'." msgstr "" -#: ../../../build/NEWS:7882 +#: ../../../build/NEWS:8105 msgid "" "`bpo-32143 `__: os.statvfs() includes " "the f_fsid field from statvfs(2)" msgstr "" -#: ../../../build/NEWS:7884 +#: ../../../build/NEWS:8107 msgid "" "`bpo-26439 `__: Fix " "ctypes.util.find_library() for AIX by implementing " "ctypes._aix.find_library() Patch by: Michael Felt" msgstr "" -#: ../../../build/NEWS:7887 +#: ../../../build/NEWS:8110 msgid "" "`bpo-31993 `__: The pickler now uses " "less memory when serializing large bytes and str objects into a file. " @@ -13733,33 +14156,33 @@ msgid "" "large bytes and str objects." msgstr "" -#: ../../../build/NEWS:7891 ../../../build/NEWS:11440 +#: ../../../build/NEWS:8114 ../../../build/NEWS:11663 msgid "" "`bpo-27456 `__: Ensure TCP_NODELAY is " "set on Linux. Tests by Victor Stinner." msgstr "" -#: ../../../build/NEWS:7893 +#: ../../../build/NEWS:8116 msgid "" "`bpo-31778 `__: ast.literal_eval() is " "now more strict. Addition and subtraction of arbitrary numbers no longer " "allowed." msgstr "" -#: ../../../build/NEWS:7896 ../../../build/NEWS:11451 +#: ../../../build/NEWS:8119 ../../../build/NEWS:11674 msgid "" "`bpo-31802 `__: Importing native path " "module (``posixpath``, ``ntpath``) now works even if the ``os`` module still" " is not imported." msgstr "" -#: ../../../build/NEWS:7899 +#: ../../../build/NEWS:8122 msgid "" "`bpo-30241 `__: Add " "contextlib.AbstractAsyncContextManager. Patch by Jelle Zijlstra." msgstr "" -#: ../../../build/NEWS:7902 +#: ../../../build/NEWS:8125 msgid "" "`bpo-31699 `__: Fix deadlocks in " ":class:`concurrent.futures.ProcessPoolExecutor` when task arguments or " @@ -13767,82 +14190,82 @@ msgid "" "calls to the :class:`ProcessPoolExecutor` API always eventually return." msgstr "" -#: ../../../build/NEWS:7907 +#: ../../../build/NEWS:8130 msgid "" "`bpo-15216 `__: " "``TextIOWrapper.reconfigure()`` supports changing *encoding*, *errors*, and " "*newline*." msgstr "" -#: ../../../build/NEWS:7913 +#: ../../../build/NEWS:8136 msgid "" "`bpo-32418 `__: Add get_loop() method to" " Server and AbstractServer classes." msgstr "" -#: ../../../build/NEWS:7918 ../../../build/NEWS:11482 +#: ../../../build/NEWS:8141 ../../../build/NEWS:11705 msgid "" "`bpo-32252 `__: Fix " "faulthandler_suppress_crash_report() used to prevent core dump files when " "testing crashes. getrlimit() returns zero on success." msgstr "" -#: ../../../build/NEWS:7921 +#: ../../../build/NEWS:8144 msgid "" "`bpo-32002 `__: Adjust C locale coercion" " testing for the empty locale and POSIX locale cases to more readily adjust " "to platform dependent behaviour." msgstr "" -#: ../../../build/NEWS:7927 +#: ../../../build/NEWS:8150 msgid "" "`bpo-19764 `__: Implement support for " "`subprocess.Popen(close_fds=True)` on Windows. Patch by Segev Finer." msgstr "" -#: ../../../build/NEWS:7933 ../../../build/NEWS:11563 +#: ../../../build/NEWS:8156 ../../../build/NEWS:11786 msgid "" "`bpo-24960 `__: 2to3 and lib2to3 can now" " read pickled grammar files using pkgutil.get_data() rather than probing the" " filesystem. This lets 2to3 and lib2to3 work when run from a zipfile." msgstr "" -#: ../../../build/NEWS:7940 +#: ../../../build/NEWS:8163 msgid "" "`bpo-32030 `__: Py_Initialize() doesn't " "reset the memory allocators to default if the ``PYTHONMALLOC`` environment " "variable is not set." msgstr "" -#: ../../../build/NEWS:7943 ../../../build/NEWS:11573 +#: ../../../build/NEWS:8166 ../../../build/NEWS:11796 msgid "" "`bpo-29084 `__: Undocumented C API for " "OrderedDict has been excluded from the limited C API. It was added by " "mistake and actually never worked in the limited C API." msgstr "" -#: ../../../build/NEWS:7947 +#: ../../../build/NEWS:8170 msgid "" "`bpo-32264 `__: Moved the pygetopt.h " "header into internal/, since it has no public APIs." msgstr "" -#: ../../../build/NEWS:7950 +#: ../../../build/NEWS:8173 msgid "" "`bpo-32241 `__: " ":c:func:`Py_SetProgramName` and :c:func:`Py_SetPythonHome` now take the " "``const wchar *`` arguments instead of ``wchar *``." msgstr "" -#: ../../../build/NEWS:7955 +#: ../../../build/NEWS:8178 msgid "Python 3.7.0 alpha 3" msgstr "Python 3.7.0 alfa 3" -#: ../../../build/NEWS:7957 ../../../build/NEWS:11590 +#: ../../../build/NEWS:8180 ../../../build/NEWS:11813 msgid "*Release date: 2017-12-05*" msgstr "*Tanggal rilis: 2017-12-05*" -#: ../../../build/NEWS:7962 ../../../build/NEWS:11595 +#: ../../../build/NEWS:8185 ../../../build/NEWS:11818 msgid "" "`bpo-32176 `__: co_flags.CO_NOFREE is " "now always set correctly by the code object constructor based on freevars " @@ -13851,7 +14274,7 @@ msgid "" " injected into a modified code object and function." msgstr "" -#: ../../../build/NEWS:7968 +#: ../../../build/NEWS:8191 msgid "" "`bpo-10544 `__: Yield expressions are " "now deprecated in comprehensions and generator expressions. They are still " @@ -13859,14 +14282,14 @@ msgid "" "directly in the enclosing scope." msgstr "" -#: ../../../build/NEWS:7972 ../../../build/NEWS:11318 +#: ../../../build/NEWS:8195 ../../../build/NEWS:11541 msgid "" "`bpo-32137 `__: The repr of deeply " "nested dict now raises a RecursionError instead of crashing due to a stack " "overflow." msgstr "" -#: ../../../build/NEWS:7975 +#: ../../../build/NEWS:8198 msgid "" "`bpo-32096 `__: Revert memory allocator " "changes in the C API: move structures back from _PyRuntime to " @@ -13875,14 +14298,14 @@ msgid "" "before _PyRuntime_Initialize()." msgstr "" -#: ../../../build/NEWS:7980 +#: ../../../build/NEWS:8203 msgid "" "`bpo-32043 `__: Add a new \"developer " "mode\": new \"-X dev\" command line option to enable debug checks at " "runtime." msgstr "" -#: ../../../build/NEWS:7983 +#: ../../../build/NEWS:8206 msgid "" "`bpo-32023 `__: SyntaxError is now " "correctly raised when a generator expression without parenthesis is used " @@ -13890,7 +14313,7 @@ msgid "" " parentheses can be omitted only on calls." msgstr "" -#: ../../../build/NEWS:7988 +#: ../../../build/NEWS:8211 msgid "" "`bpo-32012 `__: SyntaxError is now " "correctly raised when a generator expression without parenthesis is passed " @@ -13899,7 +14322,7 @@ msgid "" "comma on either side." msgstr "" -#: ../../../build/NEWS:7993 +#: ../../../build/NEWS:8216 msgid "" "`bpo-28180 `__: A new internal " "``_Py_SetLocaleFromEnv(category)`` helper function has been added in order " @@ -13908,7 +14331,7 @@ msgid "" "environment by default)." msgstr "" -#: ../../../build/NEWS:7998 ../../../build/NEWS:11601 +#: ../../../build/NEWS:8221 ../../../build/NEWS:11824 msgid "" "`bpo-31949 `__: Fixed several issues in " "printing tracebacks (PyTraceBack_Print()). Setting sys.tracebacklimit to 0 " @@ -13919,13 +14342,13 @@ msgid "" "traceback items on Windows. Fixed output errors handling." msgstr "" -#: ../../../build/NEWS:8006 ../../../build/NEWS:11609 +#: ../../../build/NEWS:8229 ../../../build/NEWS:11832 msgid "" "`bpo-30696 `__: Fix the interactive " "interpreter looping endlessly when no memory." msgstr "" -#: ../../../build/NEWS:8009 ../../../build/NEWS:11612 +#: ../../../build/NEWS:8232 ../../../build/NEWS:11835 msgid "" "`bpo-20047 `__: Bytearray methods " "partition() and rpartition() now accept only bytes-like objects as " @@ -13933,34 +14356,34 @@ msgid "" "returning a bogus result when an integer is passed as a separator." msgstr "" -#: ../../../build/NEWS:8014 ../../../build/NEWS:11620 +#: ../../../build/NEWS:8237 ../../../build/NEWS:11843 msgid "" "`bpo-21720 `__: BytesWarning no longer " "emitted when the *fromlist* argument of ``__import__()`` or the ``__all__`` " "attribute of the module contain bytes instances." msgstr "" -#: ../../../build/NEWS:8018 +#: ../../../build/NEWS:8241 msgid "" "`bpo-31845 `__: Environment variables " "are once more read correctly at interpreter startup." msgstr "" -#: ../../../build/NEWS:8021 +#: ../../../build/NEWS:8244 msgid "" "`bpo-28936 `__: Ensure that lexically " "first syntax error involving a parameter and ``global`` or ``nonlocal`` is " "detected first at a given scope. Patch by Ivan Levkivskyi." msgstr "" -#: ../../../build/NEWS:8025 ../../../build/NEWS:11624 +#: ../../../build/NEWS:8248 ../../../build/NEWS:11847 msgid "" "`bpo-31825 `__: Fixed OverflowError in " "the 'unicode-escape' codec and in codecs.escape_decode() when decode an " "escaped non-ascii byte." msgstr "" -#: ../../../build/NEWS:8028 +#: ../../../build/NEWS:8251 msgid "" "`bpo-31618 `__: The per-frame tracing " "logic added in 3.7a1 has been altered so that ``frame->f_lineno`` is updated" @@ -13971,7 +14394,7 @@ msgid "" "``f_trace_opcodes`` are enabled, line events now occur first." msgstr "" -#: ../../../build/NEWS:8036 ../../../build/NEWS:11627 +#: ../../../build/NEWS:8259 ../../../build/NEWS:11850 msgid "" "`bpo-28603 `__: Print the full " "context/cause chain of exceptions on interpreter exit, even if an exception " @@ -13979,7 +14402,7 @@ msgid "" "Bitter." msgstr "" -#: ../../../build/NEWS:8040 ../../../build/NEWS:11631 +#: ../../../build/NEWS:8263 ../../../build/NEWS:11854 msgid "" "`bpo-31786 `__: Fix timeout rounding in " "the select module to round correctly negative timeouts between -1.0 and 0.0." @@ -13987,35 +14410,35 @@ msgid "" "call was incorrectly non-blocking. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:8045 +#: ../../../build/NEWS:8268 msgid "" "`bpo-31781 `__: Prevent crashes when " "calling methods of an uninitialized ``zipimport.zipimporter`` object. Patch " "by Oren Milman." msgstr "" -#: ../../../build/NEWS:8048 +#: ../../../build/NEWS:8271 msgid "" "`bpo-30399 `__: Standard repr() of " "BaseException with a single argument no longer contains redundant trailing " "comma." msgstr "" -#: ../../../build/NEWS:8051 ../../../build/NEWS:11639 +#: ../../../build/NEWS:8274 ../../../build/NEWS:11862 msgid "" "`bpo-31626 `__: Fixed a bug in debug " "memory allocator. There was a write to freed memory after shrinking a " "memory block." msgstr "" -#: ../../../build/NEWS:8054 ../../../build/NEWS:11684 +#: ../../../build/NEWS:8277 ../../../build/NEWS:11907 msgid "" "`bpo-30817 `__: `PyErr_PrintEx()` clears" " now the ignored exception that may be raised by `_PySys_SetObjectId()`, for" " example when no memory." msgstr "" -#: ../../../build/NEWS:8060 ../../../build/NEWS:11690 +#: ../../../build/NEWS:8283 ../../../build/NEWS:11913 msgid "" "`bpo-28556 `__: Two minor fixes for " "``typing`` module: allow shallow copying instances of generic classes, " @@ -14023,14 +14446,14 @@ msgid "" "Ivan Levkivskyi." msgstr "" -#: ../../../build/NEWS:8064 +#: ../../../build/NEWS:8287 msgid "" "`bpo-32214 `__: PEP 557, Data Classes. " "Provides a decorator which adds boilerplate methods to classes which use " "type annotations so specify fields." msgstr "" -#: ../../../build/NEWS:8068 ../../../build/NEWS:11694 +#: ../../../build/NEWS:8291 ../../../build/NEWS:11917 msgid "" "`bpo-27240 `__: The header folding " "algorithm for the new email policies has been rewritten, which also fixes " @@ -14040,20 +14463,20 @@ msgid "" "now done correctly." msgstr "" -#: ../../../build/NEWS:8072 ../../../build/NEWS:11698 +#: ../../../build/NEWS:8295 ../../../build/NEWS:11921 msgid "" "`bpo-32186 `__: io.FileIO.readall() and " "io.FileIO.read() now release the GIL when getting the file size. Fixed hang " "of all threads with inaccessible NFS server. Patch by Nir Soffer." msgstr "" -#: ../../../build/NEWS:8076 +#: ../../../build/NEWS:8299 msgid "" "`bpo-321010 `__: Add " ":attr:`sys.flags.dev_mode` flag" msgstr "" -#: ../../../build/NEWS:8078 +#: ../../../build/NEWS:8301 msgid "" "`bpo-32154 `__: The " "``asyncio.windows_utils.socketpair()`` function has been removed: use " @@ -14063,7 +14486,7 @@ msgid "" "``socket.socketpair`` on Python 3.5 and newer." msgstr "" -#: ../../../build/NEWS:8084 +#: ../../../build/NEWS:8307 msgid "" "`bpo-32089 `__: warnings: In development" " (-X dev) and debug mode (pydebug build), use the \"default\" action for " @@ -14071,7 +14494,7 @@ msgid "" "filters." msgstr "" -#: ../../../build/NEWS:8088 +#: ../../../build/NEWS:8311 msgid "" "`bpo-32107 `__: ``uuid.getnode()`` now " "preferentially returns universally administered MAC addresses if available, " @@ -14081,7 +14504,7 @@ msgid "" "returned." msgstr "" -#: ../../../build/NEWS:8094 +#: ../../../build/NEWS:8317 msgid "" "`bpo-23033 `__: Wildcard is now " "supported in hostname when it is one and only character in the left most " @@ -14089,14 +14512,14 @@ msgid "" " by Mandeep Singh." msgstr "" -#: ../../../build/NEWS:8098 ../../../build/NEWS:11702 +#: ../../../build/NEWS:8321 ../../../build/NEWS:11925 msgid "" "`bpo-12239 `__: Make " ":meth:`msilib.SummaryInformation.GetProperty` return ``None`` when the value" " of property is ``VT_EMPTY``. Initial patch by Mark Mc Mahon." msgstr "" -#: ../../../build/NEWS:8102 +#: ../../../build/NEWS:8325 msgid "" "`bpo-28334 `__: Use " ":func:`os.path.expanduser` to find the ``~/.netrc`` file in " @@ -14104,7 +14527,7 @@ msgid "" "raised. Patch by Dimitri Merejkowsky." msgstr "" -#: ../../../build/NEWS:8106 +#: ../../../build/NEWS:8329 msgid "" "`bpo-32121 `__: Made " "``tracemalloc.Traceback`` behave more like the traceback module, sorting the" @@ -14114,7 +14537,7 @@ msgid "" "to ``Traceback.format()``. (Patch by Jesse Bakker.)" msgstr "" -#: ../../../build/NEWS:8113 ../../../build/NEWS:11706 +#: ../../../build/NEWS:8336 ../../../build/NEWS:11929 msgid "" "`bpo-31325 `__: Fix wrong usage of " ":func:`collections.namedtuple` in the :meth:`RobotFileParser.parse() " @@ -14122,14 +14545,14 @@ msgid "" "Wellner." msgstr "" -#: ../../../build/NEWS:8117 ../../../build/NEWS:11710 +#: ../../../build/NEWS:8340 ../../../build/NEWS:11933 msgid "" "`bpo-12382 `__: " ":func:`msilib.OpenDatabase` now raises a better exception message when it " "couldn't open or create an MSI file. Initial patch by William Tisäter." msgstr "" -#: ../../../build/NEWS:8121 +#: ../../../build/NEWS:8344 msgid "" "`bpo-19610 `__: ``setup()`` now warns " "about invalid types for some fields. The ``distutils.dist.Distribution`` " @@ -14137,21 +14560,21 @@ msgid "" "are not specified as a list or a string." msgstr "" -#: ../../../build/NEWS:8126 +#: ../../../build/NEWS:8349 msgid "" "`bpo-32071 `__: Added the ``-k`` " "command-line option to ``python -m unittest`` to run only tests that match " "the given pattern(s)." msgstr "" -#: ../../../build/NEWS:8129 +#: ../../../build/NEWS:8352 msgid "" "`bpo-10049 `__: Added *nullcontext* no-" "op context manager to contextlib. This provides a simpler and faster " "alternative to ExitStack() when handling optional context managers." msgstr "" -#: ../../../build/NEWS:8133 +#: ../../../build/NEWS:8356 msgid "" "`bpo-28684 `__: The new " "test.support.skip_unless_bind_unix_socket() decorator is used here to skip " @@ -14160,7 +14583,7 @@ msgid "" "the recent Android versions that run now SELinux in enforcing mode)." msgstr "" -#: ../../../build/NEWS:8139 ../../../build/NEWS:11714 +#: ../../../build/NEWS:8362 ../../../build/NEWS:11937 msgid "" "`bpo-32110 `__: " "``codecs.StreamReader.read(n)`` now returns not more than *n* " @@ -14168,7 +14591,7 @@ msgid "" "``read()`` methods of other file-like objects." msgstr "" -#: ../../../build/NEWS:8143 +#: ../../../build/NEWS:8366 msgid "" "`bpo-27535 `__: The warnings module " "doesn't leak memory anymore in the hidden warnings registry for the " @@ -14176,7 +14599,7 @@ msgid "" "the warning key to the registry anymore for the \"ignore\" action." msgstr "" -#: ../../../build/NEWS:8148 +#: ../../../build/NEWS:8371 msgid "" "`bpo-32088 `__: warnings: When Python " "is build is debug mode (``Py_DEBUG``), :exc:`DeprecationWarning`, " @@ -14184,21 +14607,21 @@ msgid "" "displayed by default." msgstr "" -#: ../../../build/NEWS:8152 +#: ../../../build/NEWS:8375 msgid "" "`bpo-1647489 `__: Fixed searching " "regular expression patterns that could match an empty string. Non-empty " "string can now be correctly found after matching an empty string." msgstr "" -#: ../../../build/NEWS:8156 +#: ../../../build/NEWS:8379 msgid "" "`bpo-25054 `__: Added support of " "splitting on a pattern that could match an empty string." msgstr "" -#: ../../../build/NEWS:8159 ../../../build/NEWS:11718 -#: ../../../build/NEWS:16435 +#: ../../../build/NEWS:8382 ../../../build/NEWS:11941 +#: ../../../build/NEWS:16658 msgid "" "`bpo-32072 `__: Fixed issues with binary" " plists: Fixed saving bytearrays. Identical objects will be saved only once." @@ -14206,38 +14629,38 @@ msgid "" "saving and loading recursive data structures." msgstr "" -#: ../../../build/NEWS:8164 +#: ../../../build/NEWS:8387 msgid "" "`bpo-32069 `__: Drop legacy SSL " "transport from asyncio, ssl.MemoryBIO is always used anyway." msgstr "" -#: ../../../build/NEWS:8167 +#: ../../../build/NEWS:8390 msgid "" "`bpo-32066 `__: asyncio: Support " "pathlib.Path in create_unix_connection; sock arg should be optional" msgstr "" -#: ../../../build/NEWS:8170 +#: ../../../build/NEWS:8393 msgid "" "`bpo-32046 `__: Updates 2to3 to convert " "from operator.isCallable(obj) to callable(obj). Patch by Dong-hee Na." msgstr "" -#: ../../../build/NEWS:8173 +#: ../../../build/NEWS:8396 msgid "" "`bpo-32018 `__: inspect.signature should" " follow :pep:`8`, if the parameter has an annotation and a default value. " "Patch by Dong-hee Na." msgstr "" -#: ../../../build/NEWS:8176 +#: ../../../build/NEWS:8399 msgid "" "`bpo-32025 `__: Add time.thread_time() " "and time.thread_time_ns()" msgstr "" -#: ../../../build/NEWS:8178 +#: ../../../build/NEWS:8401 msgid "" "`bpo-32037 `__: Integers that fit in a " "signed 32-bit integer will be now pickled with protocol 0 using the INT " @@ -14246,27 +14669,27 @@ msgid "" "2." msgstr "" -#: ../../../build/NEWS:8183 ../../../build/NEWS:11723 +#: ../../../build/NEWS:8406 ../../../build/NEWS:11946 msgid "" "`bpo-32034 `__: Make " "asyncio.IncompleteReadError and LimitOverrunError pickleable." msgstr "" -#: ../../../build/NEWS:8186 ../../../build/NEWS:11726 +#: ../../../build/NEWS:8409 ../../../build/NEWS:11949 msgid "" "`bpo-32015 `__: Fixed the looping of " "asyncio in the case of reconnection the socket during waiting async " "read/write from/to the socket." msgstr "" -#: ../../../build/NEWS:8189 ../../../build/NEWS:11729 +#: ../../../build/NEWS:8412 ../../../build/NEWS:11952 msgid "" "`bpo-32011 `__: Restored support of " "loading marshal files with the TYPE_INT64 code. These files can be produced " "in Python 2.7." msgstr "" -#: ../../../build/NEWS:8192 +#: ../../../build/NEWS:8415 msgid "" "`bpo-28369 `__: Enhance " "add_reader/writer check that socket is not used by some transport. Before, " @@ -14274,14 +14697,14 @@ msgid "" " Now the check is implemented correctly for all file-like objects." msgstr "" -#: ../../../build/NEWS:8197 +#: ../../../build/NEWS:8420 msgid "" "`bpo-31976 `__: Fix race condition when " "flushing a file is slow, which can cause a segfault if closing the file from" " another thread." msgstr "" -#: ../../../build/NEWS:8200 +#: ../../../build/NEWS:8423 msgid "" "`bpo-31985 `__: Formally deprecated " "aifc.openfp, sunau.openfp, and wave.openfp. Since change " @@ -14291,40 +14714,40 @@ msgid "" "undocumented." msgstr "" -#: ../../../build/NEWS:8206 +#: ../../../build/NEWS:8429 msgid "" "`bpo-21862 `__: cProfile command line " "now accepts `-m module_name` as an alternative to script path. Patch by " "Sanyam Khurana." msgstr "" -#: ../../../build/NEWS:8209 ../../../build/NEWS:11732 +#: ../../../build/NEWS:8432 ../../../build/NEWS:11955 msgid "" "`bpo-31970 `__: Reduce performance " "overhead of asyncio debug mode." msgstr "" -#: ../../../build/NEWS:8211 +#: ../../../build/NEWS:8434 msgid "" "`bpo-31843 `__: *database* argument of " "sqlite3.connect() now accepts a :term:`path-like object`, instead of just a " "string." msgstr "" -#: ../../../build/NEWS:8214 +#: ../../../build/NEWS:8437 msgid "" "`bpo-31945 `__: Add Configurable " "*blocksize* to ``HTTPConnection`` and ``HTTPSConnection`` for improved " "upload throughput. Patch by Nir Soffer." msgstr "" -#: ../../../build/NEWS:8217 +#: ../../../build/NEWS:8440 msgid "" "`bpo-31943 `__: Add a ``cancelled()`` " "method to :class:`asyncio.Handle`. Patch by Marat Sharafutdinov." msgstr "" -#: ../../../build/NEWS:8220 ../../../build/NEWS:11734 +#: ../../../build/NEWS:8443 ../../../build/NEWS:11957 msgid "" "`bpo-9678 `__: Fixed determining the MAC " "address in the uuid module: Using ifconfig on NetBSD and OpenBSD. Using arp " @@ -14332,32 +14755,32 @@ msgid "" "Shimizukawa." msgstr "" -#: ../../../build/NEWS:8224 ../../../build/NEWS:11738 +#: ../../../build/NEWS:8447 ../../../build/NEWS:11961 msgid "" "`bpo-30057 `__: Fix potential missed " "signal in signal.signal()." msgstr "" -#: ../../../build/NEWS:8226 ../../../build/NEWS:11740 +#: ../../../build/NEWS:8449 ../../../build/NEWS:11963 msgid "" "`bpo-31933 `__: Fix Blake2 params " "leaf_size and node_offset on big endian platforms. Patch by Jack O'Connor." msgstr "" -#: ../../../build/NEWS:8229 +#: ../../../build/NEWS:8452 msgid "" "`bpo-21423 `__: Add an initializer " "argument to {Process,Thread}PoolExecutor" msgstr "" -#: ../../../build/NEWS:8231 ../../../build/NEWS:11743 +#: ../../../build/NEWS:8454 ../../../build/NEWS:11966 msgid "" "`bpo-31927 `__: Fixed compilation of the" " socket module on NetBSD 8. Fixed assertion failure or reading arbitrary " "data when parse a AF_BLUETOOTH address on NetBSD and DragonFly BSD." msgstr "" -#: ../../../build/NEWS:8235 ../../../build/NEWS:11747 +#: ../../../build/NEWS:8458 ../../../build/NEWS:11970 msgid "" "`bpo-27666 `__: Fixed stack corruption " "in curses.box() and curses.ungetmouse() when the size of types chtype or " @@ -14365,65 +14788,65 @@ msgid "" " as arguments. Based on patch by Steve Fink." msgstr "" -#: ../../../build/NEWS:8240 +#: ../../../build/NEWS:8463 msgid "" "`bpo-31917 `__: Add 3 new clock " "identifiers: :data:`time.CLOCK_BOOTTIME`, :data:`time.CLOCK_PROF` and " ":data:`time.CLOCK_UPTIME`." msgstr "" -#: ../../../build/NEWS:8243 ../../../build/NEWS:11752 +#: ../../../build/NEWS:8466 ../../../build/NEWS:11975 msgid "" "`bpo-31897 `__: plistlib now catches " "more errors when read binary plists and raises InvalidFileException instead " "of unexpected exceptions." msgstr "" -#: ../../../build/NEWS:8246 ../../../build/NEWS:11755 +#: ../../../build/NEWS:8469 ../../../build/NEWS:11978 msgid "" "`bpo-25720 `__: Fix the method for " "checking pad state of curses WINDOW. Patch by Masayuki Yamamoto." msgstr "" -#: ../../../build/NEWS:8249 ../../../build/NEWS:11758 +#: ../../../build/NEWS:8472 ../../../build/NEWS:11981 msgid "" "`bpo-31893 `__: Fixed the layout of the " "kqueue_event structure on OpenBSD and NetBSD. Fixed the comparison of the " "kqueue_event objects." msgstr "" -#: ../../../build/NEWS:8252 ../../../build/NEWS:11761 +#: ../../../build/NEWS:8475 ../../../build/NEWS:11984 msgid "" "`bpo-31891 `__: Fixed building the " "curses module on NetBSD." msgstr "" -#: ../../../build/NEWS:8254 +#: ../../../build/NEWS:8477 msgid "" "`bpo-31884 `__: added required constants" " to subprocess module for setting priority on windows" msgstr "" -#: ../../../build/NEWS:8257 +#: ../../../build/NEWS:8480 msgid "" "`bpo-28281 `__: Remove year (1-9999) " "limits on the Calendar.weekday() function. Patch by Mark Gollahon." msgstr "" -#: ../../../build/NEWS:8260 +#: ../../../build/NEWS:8483 msgid "" "`bpo-31702 `__: crypt.mksalt() now " "allows to specify the number of rounds for SHA-256 and SHA-512 hashing." msgstr "" -#: ../../../build/NEWS:8263 +#: ../../../build/NEWS:8486 msgid "" "`bpo-30639 `__: :func:`inspect.getfile` " "no longer computes the repr of unknown objects to display in an error " "message, to protect against badly behaved custom reprs." msgstr "" -#: ../../../build/NEWS:8267 +#: ../../../build/NEWS:8490 msgid "" "`bpo-30768 `__: Fix the " "pthread+semaphore implementation of PyThread_acquire_lock_timed() when " @@ -14431,20 +14854,20 @@ msgid "" "sem_timedwait() is interrupted by a signal (EINTR). See also the :pep:`475`." msgstr "" -#: ../../../build/NEWS:8272 +#: ../../../build/NEWS:8495 msgid "" "`bpo-31854 `__: Add " "``mmap.ACCESS_DEFAULT`` constant." msgstr "" -#: ../../../build/NEWS:8274 +#: ../../../build/NEWS:8497 msgid "" "`bpo-31834 `__: Use optimized code for " "BLAKE2 only with SSSE3+. The pure SSE2 implementation is slower than the " "pure C reference implementation." msgstr "" -#: ../../../build/NEWS:8277 +#: ../../../build/NEWS:8500 msgid "" "`bpo-28292 `__: " "Calendar.itermonthdates() will now consistently raise an exception when a " @@ -14454,14 +14877,14 @@ msgid "" "tuples and are not restricted by the range supported by datetime.date." msgstr "" -#: ../../../build/NEWS:8284 +#: ../../../build/NEWS:8507 msgid "" "`bpo-28564 `__: The shutil.rmtree() " "function has been sped up to 20--40%. This was done using the os.scandir() " "function." msgstr "" -#: ../../../build/NEWS:8287 ../../../build/NEWS:11763 +#: ../../../build/NEWS:8510 ../../../build/NEWS:11986 msgid "" "`bpo-28416 `__: Instances of " "pickle.Pickler subclass with the persistent_id() method and pickle.Unpickler" @@ -14469,33 +14892,33 @@ msgid "" "cycles." msgstr "" -#: ../../../build/NEWS:8291 +#: ../../../build/NEWS:8514 msgid "" "`bpo-31653 `__: Don't release the GIL if" " we can acquire a multiprocessing semaphore immediately." msgstr "" -#: ../../../build/NEWS:8294 ../../../build/NEWS:11767 +#: ../../../build/NEWS:8517 ../../../build/NEWS:11990 msgid "" "`bpo-28326 `__: Fix " "multiprocessing.Process when stdout and/or stderr is closed or None." msgstr "" -#: ../../../build/NEWS:8297 +#: ../../../build/NEWS:8520 msgid "" "`bpo-20825 `__: Add `subnet_of` and " "`superset_of` containment tests to :class:`ipaddress.IPv6Network` and " ":class:`ipaddress.IPv4Network`. Patch by Michel Albert and Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:8301 +#: ../../../build/NEWS:8524 msgid "" "`bpo-31827 `__: Remove the " "os.stat_float_times() function. It was introduced in Python 2.3 for backward" " compatibility with Python 2.2, and was deprecated since Python 3.1." msgstr "" -#: ../../../build/NEWS:8305 +#: ../../../build/NEWS:8528 msgid "" "`bpo-31756 `__: Add a " "``subprocess.Popen(text=False)`` keyword argument to `subprocess` functions " @@ -14503,26 +14926,26 @@ msgid "" "into text. Patch by Andrew Clegg." msgstr "" -#: ../../../build/NEWS:8309 +#: ../../../build/NEWS:8532 msgid "" "`bpo-31819 `__: Add " "AbstractEventLoop.sock_recv_into()." msgstr "" -#: ../../../build/NEWS:8311 ../../../build/NEWS:11089 -#: ../../../build/NEWS:11770 +#: ../../../build/NEWS:8534 ../../../build/NEWS:11312 +#: ../../../build/NEWS:11993 msgid "" "`bpo-31457 `__: If nested log adapters " "are used, the inner ``process()`` methods are no longer omitted." msgstr "" -#: ../../../build/NEWS:8314 ../../../build/NEWS:11773 +#: ../../../build/NEWS:8537 ../../../build/NEWS:11996 msgid "" "`bpo-31457 `__: The ``manager`` property" " on LoggerAdapter objects is now properly settable." msgstr "" -#: ../../../build/NEWS:8317 ../../../build/NEWS:11776 +#: ../../../build/NEWS:8540 ../../../build/NEWS:11999 msgid "" "`bpo-31806 `__: Fix timeout rounding in " "time.sleep(), threading.Lock.acquire() and socket.socket.settimeout() to " @@ -14531,20 +14954,20 @@ msgid "" "non-blocking. Patch by Pablo Galindo." msgstr "" -#: ../../../build/NEWS:8323 +#: ../../../build/NEWS:8546 msgid "" "`bpo-31803 `__: time.clock() and " "time.get_clock_info('clock') now emit a DeprecationWarning warning." msgstr "" -#: ../../../build/NEWS:8326 +#: ../../../build/NEWS:8549 msgid "" "`bpo-31800 `__: Extended support for " "parsing UTC offsets. strptime '%z' can now parse the output generated by " "datetime.isoformat, including seconds and microseconds." msgstr "" -#: ../../../build/NEWS:8330 ../../../build/NEWS:11782 +#: ../../../build/NEWS:8553 ../../../build/NEWS:12005 msgid "" "`bpo-28603 `__: traceback: Fix a " "TypeError that occurred during printing of exception tracebacks when either " @@ -14552,14 +14975,14 @@ msgid "" "unhashable. Patch by Zane Bitter." msgstr "" -#: ../../../build/NEWS:8334 +#: ../../../build/NEWS:8557 msgid "" "`bpo-30541 `__: Add new function to seal" " a mock and prevent the automatically creation of child mocks. Patch by " "Mario Corchero." msgstr "" -#: ../../../build/NEWS:8337 +#: ../../../build/NEWS:8560 msgid "" "`bpo-31784 `__: Implement the " ":pep:`564`, add new 6 new functions with nanosecond resolution to the " @@ -14569,80 +14992,80 @@ msgid "" ":func:`~time.time_ns`." msgstr "" -#: ../../../build/NEWS:8343 +#: ../../../build/NEWS:8566 msgid "" "`bpo-30143 `__: 2to3 now generates a " "code that uses abstract collection classes from collections.abc rather than " "collections." msgstr "" -#: ../../../build/NEWS:8346 ../../../build/NEWS:11788 +#: ../../../build/NEWS:8569 ../../../build/NEWS:12011 msgid "" "`bpo-31770 `__: Prevent a crash when " "calling the ``__init__()`` method of a ``sqlite3.Cursor`` object more than " "once. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8349 ../../../build/NEWS:11795 +#: ../../../build/NEWS:8572 ../../../build/NEWS:12018 msgid "" "`bpo-31764 `__: Prevent a crash in " "``sqlite3.Cursor.close()`` in case the ``Cursor`` object is uninitialized. " "Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8352 ../../../build/NEWS:11798 +#: ../../../build/NEWS:8575 ../../../build/NEWS:12021 msgid "" "`bpo-31752 `__: Fix possible crash in " "timedelta constructor called with custom integers." msgstr "" -#: ../../../build/NEWS:8355 ../../../build/NEWS:11807 +#: ../../../build/NEWS:8578 ../../../build/NEWS:12030 msgid "" "`bpo-31620 `__: an empty asyncio.Queue " "now doesn't leak memory when queue.get pollers timeout" msgstr "" -#: ../../../build/NEWS:8358 +#: ../../../build/NEWS:8581 msgid "" "`bpo-31690 `__: Allow the flags " "re.ASCII, re.LOCALE, and re.UNICODE to be used as group flags for regular " "expressions." msgstr "" -#: ../../../build/NEWS:8361 +#: ../../../build/NEWS:8584 msgid "" "`bpo-30349 `__: FutureWarning is now " "emitted if a regular expression contains character set constructs that will " "change semantically in the future (nested sets and set operations)." msgstr "" -#: ../../../build/NEWS:8365 +#: ../../../build/NEWS:8588 msgid "" "`bpo-31664 `__: Added support for the " "Blowfish hashing in the crypt module." msgstr "" -#: ../../../build/NEWS:8367 ../../../build/NEWS:11810 +#: ../../../build/NEWS:8590 ../../../build/NEWS:12033 msgid "" "`bpo-31632 `__: Fix method " "set_protocol() of class _SSLProtocolTransport in asyncio module. This method" " was previously modifying a wrong reference to the protocol." msgstr "" -#: ../../../build/NEWS:8371 ../../../build/NEWS:11821 +#: ../../../build/NEWS:8594 ../../../build/NEWS:12044 msgid "" "`bpo-15037 `__: Added a workaround for " "getkey() in curses for ncurses 5.7 and earlier." msgstr "" -#: ../../../build/NEWS:8374 +#: ../../../build/NEWS:8597 msgid "" "`bpo-31307 `__: Allow use of bytes " "objects for arguments to :meth:`configparser.ConfigParser.read`. Patch by " "Vincent Michel." msgstr "" -#: ../../../build/NEWS:8377 ../../../build/NEWS:11841 +#: ../../../build/NEWS:8600 ../../../build/NEWS:12064 msgid "" "`bpo-31334 `__: Fix " "``poll.poll([timeout])`` in the ``select`` module for arbitrary negative " @@ -14650,45 +15073,45 @@ msgid "" "Patch by Riccardo Coccioli." msgstr "" -#: ../../../build/NEWS:8381 ../../../build/NEWS:11845 +#: ../../../build/NEWS:8604 ../../../build/NEWS:12068 msgid "" "`bpo-31310 `__: multiprocessing's " "semaphore tracker should be launched again if crashed." msgstr "" -#: ../../../build/NEWS:8384 ../../../build/NEWS:11848 +#: ../../../build/NEWS:8607 ../../../build/NEWS:12071 msgid "" "`bpo-31308 `__: Make multiprocessing's " "forkserver process immune to Ctrl-C and other user interruptions. If it " "crashes, restart it when necessary." msgstr "" -#: ../../../build/NEWS:8387 +#: ../../../build/NEWS:8610 msgid "" "`bpo-31245 `__: Added support for " "AF_UNIX socket in asyncio `create_datagram_endpoint`." msgstr "" -#: ../../../build/NEWS:8390 +#: ../../../build/NEWS:8613 msgid "" "`bpo-30553 `__: Add HTTP/2 status code " "421 (Misdirected Request) to :class:`http.HTTPStatus`. Patch by Vitor " "Pereira." msgstr "" -#: ../../../build/NEWS:8396 ../../../build/NEWS:11854 +#: ../../../build/NEWS:8619 ../../../build/NEWS:12077 msgid "" "`bpo-32105 `__: Added " "asyncio.BaseEventLoop.connect_accepted_socket versionadded marker." msgstr "" -#: ../../../build/NEWS:8402 ../../../build/NEWS:11867 +#: ../../../build/NEWS:8625 ../../../build/NEWS:12090 msgid "" "`bpo-31380 `__: Skip test_httpservers " "test_undecodable_file on macOS: fails on APFS." msgstr "" -#: ../../../build/NEWS:8405 ../../../build/NEWS:11870 +#: ../../../build/NEWS:8628 ../../../build/NEWS:12093 msgid "" "`bpo-31705 `__: Skip " "test_socket.test_sha256() on Linux kernel older than 4.5. The test fails " @@ -14696,21 +15119,21 @@ msgid "" "4.5." msgstr "" -#: ../../../build/NEWS:8409 +#: ../../../build/NEWS:8632 msgid "" "`bpo-32138 `__: Skip on Android " "test_faulthandler tests that raise SIGSEGV and remove the " "test.support.requires_android_level decorator." msgstr "" -#: ../../../build/NEWS:8412 +#: ../../../build/NEWS:8635 msgid "" "`bpo-32136 `__: The runtime embedding " "tests have been split out from ``Lib/test/test_capi.py`` into a new " "``Lib/test/test_embed.py`` file." msgstr "" -#: ../../../build/NEWS:8415 +#: ../../../build/NEWS:8638 msgid "" "`bpo-28668 `__: " "test.support.requires_multiprocessing_queue is removed. Skip tests with " @@ -14718,14 +15141,14 @@ msgid "" "semaphore implementation is broken or missing." msgstr "" -#: ../../../build/NEWS:8419 +#: ../../../build/NEWS:8642 msgid "" "`bpo-32126 `__: Skip " "test_get_event_loop_new_process in test.test_asyncio.test_events when " "sem_open() is not functional." msgstr "" -#: ../../../build/NEWS:8422 ../../../build/NEWS:11874 +#: ../../../build/NEWS:8645 ../../../build/NEWS:12097 msgid "" "`bpo-31174 `__: Fix " "test_tools.test_unparse: DirectoryTestCase now stores the names sample to " @@ -14733,112 +15156,112 @@ msgid "" "leaks." msgstr "" -#: ../../../build/NEWS:8429 +#: ../../../build/NEWS:8652 msgid "" "`bpo-28538 `__: Revert the previous " "changes, the if_nameindex structure is defined by Unified Headers." msgstr "" -#: ../../../build/NEWS:8432 +#: ../../../build/NEWS:8655 msgid "" "`bpo-28762 `__: Revert the last commit, " "the F_LOCK macro is defined by Android Unified Headers." msgstr "" -#: ../../../build/NEWS:8435 +#: ../../../build/NEWS:8658 msgid "" "`bpo-29040 `__: Support building Android" " with Unified Headers. The first NDK release to support Unified Headers is " "android-ndk-r14." msgstr "" -#: ../../../build/NEWS:8438 ../../../build/NEWS:11884 +#: ../../../build/NEWS:8661 ../../../build/NEWS:12107 msgid "" "`bpo-32059 `__: ``detect_modules()`` in " "``setup.py`` now also searches the sysroot paths when cross-compiling." msgstr "" -#: ../../../build/NEWS:8441 ../../../build/NEWS:11887 +#: ../../../build/NEWS:8664 ../../../build/NEWS:12110 msgid "" "`bpo-31957 `__: Fixes Windows SDK " "version detection when building for Windows." msgstr "" -#: ../../../build/NEWS:8443 ../../../build/NEWS:11889 +#: ../../../build/NEWS:8666 ../../../build/NEWS:12112 msgid "" "`bpo-31609 `__: Fixes quotes in " "PCbuild/clean.bat" msgstr "" -#: ../../../build/NEWS:8445 ../../../build/NEWS:11891 +#: ../../../build/NEWS:8668 ../../../build/NEWS:12114 msgid "" "`bpo-31934 `__: Abort the build when " "building out of a not clean source tree." msgstr "" -#: ../../../build/NEWS:8447 ../../../build/NEWS:11893 +#: ../../../build/NEWS:8670 ../../../build/NEWS:12116 msgid "" "`bpo-31926 `__: Fixed Argument Clinic " "sometimes causing compilation errors when there was more than one function " "and/or method in a .c file with the same name." msgstr "" -#: ../../../build/NEWS:8451 ../../../build/NEWS:11897 +#: ../../../build/NEWS:8674 ../../../build/NEWS:12120 msgid "" "`bpo-28791 `__: Update Windows builds to" " use SQLite 3.21.0." msgstr "" -#: ../../../build/NEWS:8453 ../../../build/NEWS:11899 +#: ../../../build/NEWS:8676 ../../../build/NEWS:12122 msgid "" "`bpo-28791 `__: Update OS X installer to" " use SQLite 3.21.0." msgstr "" -#: ../../../build/NEWS:8455 +#: ../../../build/NEWS:8678 msgid "" "`bpo-28643 `__: Record profile-opt build" " progress with stamp files." msgstr "" -#: ../../../build/NEWS:8457 +#: ../../../build/NEWS:8680 msgid "" "`bpo-31866 `__: Finish removing support " "for AtheOS." msgstr "" -#: ../../../build/NEWS:8462 ../../../build/NEWS:11909 +#: ../../../build/NEWS:8685 ../../../build/NEWS:12132 msgid "" "`bpo-1102 `__: Return ``None`` when " "``View.Fetch()`` returns ``ERROR_NO_MORE_ITEMS`` instead of raising " "``MSIError``. Initial patch by Anthony Tuininga." msgstr "" -#: ../../../build/NEWS:8466 ../../../build/NEWS:11913 +#: ../../../build/NEWS:8689 ../../../build/NEWS:12136 msgid "" "`bpo-31944 `__: Fixes Modify button in " "Apps and Features dialog." msgstr "" -#: ../../../build/NEWS:8468 +#: ../../../build/NEWS:8691 msgid "" "`bpo-20486 `__: Implement the " "``Database.Close()`` method to help closing MSI database objects." msgstr "" -#: ../../../build/NEWS:8471 +#: ../../../build/NEWS:8694 msgid "" "`bpo-31857 `__: Make the behavior of " "USE_STACKCHECK deterministic in a multi-threaded environment." msgstr "" -#: ../../../build/NEWS:8477 ../../../build/NEWS:11918 +#: ../../../build/NEWS:8700 ../../../build/NEWS:12141 msgid "" "`bpo-31392 `__: Update macOS installer " "to use OpenSSL 1.0.2m" msgstr "" -#: ../../../build/NEWS:8482 ../../../build/NEWS:11923 +#: ../../../build/NEWS:8705 ../../../build/NEWS:12146 msgid "" "`bpo-32207 `__: Improve tk event " "exception tracebacks in IDLE. When tk event handling is driven by IDLE's run" @@ -14848,20 +15271,20 @@ msgid "" "suggestion by Serhiy Storchaka." msgstr "" -#: ../../../build/NEWS:8488 ../../../build/NEWS:11929 +#: ../../../build/NEWS:8711 ../../../build/NEWS:12152 msgid "" "`bpo-32164 `__: Delete unused file " "idlelib/tabbedpages.py. Use of TabbedPageSet in configdialog was replaced by" " ttk.Notebook." msgstr "" -#: ../../../build/NEWS:8491 ../../../build/NEWS:11932 +#: ../../../build/NEWS:8714 ../../../build/NEWS:12155 msgid "" "`bpo-32100 `__: IDLE: Fix old and new " "bugs in pathbrowser; improve tests. Patch mostly by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:8494 ../../../build/NEWS:11935 +#: ../../../build/NEWS:8717 ../../../build/NEWS:12158 msgid "" "`bpo-31858 `__: IDLE -- Restrict shell " "prompt manipulation to the shell. Editor and output windows only see an " @@ -14870,14 +15293,14 @@ msgid "" " not set or changed." msgstr "" -#: ../../../build/NEWS:8499 ../../../build/NEWS:11940 +#: ../../../build/NEWS:8722 ../../../build/NEWS:12163 msgid "" "`bpo-31860 `__: The font sample in the " "IDLE configuration dialog is now editable. Changes persist while IDLE " "remains open" msgstr "" -#: ../../../build/NEWS:8502 ../../../build/NEWS:11943 +#: ../../../build/NEWS:8725 ../../../build/NEWS:12166 msgid "" "`bpo-31836 `__: Test_code_module now " "passes if run after test_idle, which sets ps1. The code module uses sys.ps1 " @@ -14885,14 +15308,14 @@ msgid "" "both behaviors. Ditto for ps2." msgstr "" -#: ../../../build/NEWS:8506 ../../../build/NEWS:11947 +#: ../../../build/NEWS:8729 ../../../build/NEWS:12170 msgid "" "`bpo-28603 `__: Fix a TypeError that " "caused a shell restart when printing a traceback that includes an exception " "that is unhashable. Patch by Zane Bitter." msgstr "" -#: ../../../build/NEWS:8510 +#: ../../../build/NEWS:8733 msgid "" "`bpo-13802 `__: Use non-Latin characters" " in the IDLE's Font settings sample. Even if one selects a font that defines" @@ -14903,7 +15326,7 @@ msgid "" "re-arranged. The Font/Tabs help explains a bit about the additions." msgstr "" -#: ../../../build/NEWS:8521 +#: ../../../build/NEWS:8744 msgid "" "`bpo-32159 `__: Remove CVS and " "Subversion tools: remove svneol.py and treesync.py scripts. CPython migrated" @@ -14911,14 +15334,14 @@ msgid "" "are no longer used to develop CPython." msgstr "" -#: ../../../build/NEWS:8526 ../../../build/NEWS:11986 +#: ../../../build/NEWS:8749 ../../../build/NEWS:12209 msgid "" "`bpo-30722 `__: Make redemo work with " "Python 3.6 and newer versions. Also, remove the ``LOCALE`` option since it " "doesn't work with string patterns in Python 3. Patch by Christoph Sarnowski." msgstr "" -#: ../../../build/NEWS:8533 ../../../build/NEWS:11993 +#: ../../../build/NEWS:8756 ../../../build/NEWS:12216 msgid "" "`bpo-20891 `__: Fix PyGILState_Ensure()." " When PyGILState_Ensure() is called in a non-Python thread before " @@ -14926,14 +15349,14 @@ msgid "" "PyThreadState_New() to fix a crash." msgstr "" -#: ../../../build/NEWS:8537 +#: ../../../build/NEWS:8760 msgid "" "`bpo-32125 `__: The " "``Py_UseClassExceptionsFlag`` flag has been removed. It was deprecated and " "wasn't used anymore since Python 2.0." msgstr "" -#: ../../../build/NEWS:8540 +#: ../../../build/NEWS:8763 msgid "" "`bpo-25612 `__: Move the current " "exception state from the frame object to the co-routine. This simplifies the" @@ -14941,14 +15364,14 @@ msgid "" "exception state when entering or exiting a generator." msgstr "" -#: ../../../build/NEWS:8545 +#: ../../../build/NEWS:8768 msgid "" "`bpo-23699 `__: Add " "Py_RETURN_RICHCOMPARE macro to reduce boilerplate code in rich comparison " "functions." msgstr "" -#: ../../../build/NEWS:8548 ../../../build/NEWS:12000 +#: ../../../build/NEWS:8771 ../../../build/NEWS:12223 msgid "" "`bpo-30697 `__: The " "`PyExc_RecursionErrorInst` singleton is removed and " @@ -14958,15 +15381,15 @@ msgid "" "`__." msgstr "" -#: ../../../build/NEWS:8555 +#: ../../../build/NEWS:8778 msgid "Python 3.7.0 alpha 2" msgstr "Python 3.7.0 alfa 2" -#: ../../../build/NEWS:8557 +#: ../../../build/NEWS:8780 msgid "*Release date: 2017-10-16*" msgstr "*Tanggal rilis: 2017-10-16*" -#: ../../../build/NEWS:8562 +#: ../../../build/NEWS:8785 msgid "" "`bpo-31558 `__: ``gc.freeze()`` is a new" " API that allows for moving all objects currently tracked by the garbage " @@ -14976,85 +15399,85 @@ msgid "" "stability at fork()." msgstr "" -#: ../../../build/NEWS:8568 ../../../build/NEWS:11636 +#: ../../../build/NEWS:8791 ../../../build/NEWS:11859 msgid "" "`bpo-31642 `__: Restored blocking \"from" " package import module\" by setting sys.modules[\"package.module\"] to None." msgstr "" -#: ../../../build/NEWS:8571 +#: ../../../build/NEWS:8794 msgid "" "`bpo-31708 `__: Allow use of " "asynchronous generator expressions in synchronous functions." msgstr "" -#: ../../../build/NEWS:8574 +#: ../../../build/NEWS:8797 msgid "" "`bpo-31709 `__: Drop support of " "asynchronous __aiter__." msgstr "" -#: ../../../build/NEWS:8576 +#: ../../../build/NEWS:8799 msgid "" "`bpo-30404 `__: The -u option now makes " "the stdout and stderr streams unbuffered rather than line-buffered." msgstr "" -#: ../../../build/NEWS:8579 ../../../build/NEWS:11642 +#: ../../../build/NEWS:8802 ../../../build/NEWS:11865 msgid "" "`bpo-31619 `__: Fixed a ValueError when " "convert a string with large number of underscores to integer with binary " "base." msgstr "" -#: ../../../build/NEWS:8582 +#: ../../../build/NEWS:8805 msgid "" "`bpo-31602 `__: Fix an assertion failure" " in `zipimporter.get_source()` in case of a bad `zlib.decompress()`. Patch " "by Oren Milman." msgstr "" -#: ../../../build/NEWS:8585 ../../../build/NEWS:11645 +#: ../../../build/NEWS:8808 ../../../build/NEWS:11868 msgid "" "`bpo-31592 `__: Fixed an assertion " "failure in Python parser in case of a bad `unicodedata.normalize()`. Patch " "by Oren Milman." msgstr "" -#: ../../../build/NEWS:8588 ../../../build/NEWS:11648 +#: ../../../build/NEWS:8811 ../../../build/NEWS:11871 msgid "" "`bpo-31588 `__: Raise a `TypeError` with" " a helpful error message when class creation fails due to a metaclass with a" " bad ``__prepare__()`` method. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8592 +#: ../../../build/NEWS:8815 msgid "" "`bpo-31574 `__: Importlib was " "instrumented with two dtrace probes to profile import timing." msgstr "" -#: ../../../build/NEWS:8595 ../../../build/NEWS:11652 +#: ../../../build/NEWS:8818 ../../../build/NEWS:11875 msgid "" "`bpo-31566 `__: Fix an assertion failure" " in `_warnings.warn()` in case of a bad ``__name__`` global. Patch by Oren " "Milman." msgstr "" -#: ../../../build/NEWS:8598 +#: ../../../build/NEWS:8821 msgid "" "`bpo-31506 `__: Improved the error " "message logic for object.__new__ and object.__init__." msgstr "" -#: ../../../build/NEWS:8601 ../../../build/NEWS:11655 +#: ../../../build/NEWS:8824 ../../../build/NEWS:11878 msgid "" "`bpo-31505 `__: Fix an assertion failure" " in `json`, in case `_json.make_encoder()` received a bad `encoder()` " "argument. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8605 ../../../build/NEWS:11659 +#: ../../../build/NEWS:8828 ../../../build/NEWS:11882 msgid "" "`bpo-31492 `__: Fix assertion failures " "in case of failing to import from a module with a bad ``__name__`` " @@ -15062,21 +15485,21 @@ msgid "" "Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8609 ../../../build/NEWS:11667 +#: ../../../build/NEWS:8832 ../../../build/NEWS:11890 msgid "" "`bpo-31478 `__: Fix an assertion failure" " in `_random.Random.seed()` in case the argument has a bad ``__abs__()`` " "method. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8612 +#: ../../../build/NEWS:8835 msgid "" "`bpo-31336 `__: Speed up class creation " "by 10-20% by reducing the overhead in the necessary special method lookups." " Patch by Stefan Behnel." msgstr "" -#: ../../../build/NEWS:8615 +#: ../../../build/NEWS:8838 msgid "" "`bpo-31415 `__: Add ``-X importtime`` " "option to show how long each import takes. It can be used to optimize " @@ -15084,13 +15507,13 @@ msgid "" "as an equivalent way to enable this." msgstr "" -#: ../../../build/NEWS:8619 +#: ../../../build/NEWS:8842 msgid "" "`bpo-31410 `__: Optimized calling " "wrapper and classmethod descriptors." msgstr "" -#: ../../../build/NEWS:8621 +#: ../../../build/NEWS:8844 msgid "" "`bpo-31353 `__: :pep:`553` - Add a new " "built-in called ``breakpoint()`` which calls ``sys.breakpointhook()``. By " @@ -15099,101 +15522,101 @@ msgid "" "original value of the hook is saved in ``sys.__breakpointhook__``." msgstr "" -#: ../../../build/NEWS:8627 +#: ../../../build/NEWS:8850 msgid "" "`bpo-17852 `__: Maintain a list of open " "buffered files, flush them before exiting the interpreter. Based on a patch" " from Armin Rigo." msgstr "" -#: ../../../build/NEWS:8630 ../../../build/NEWS:11670 +#: ../../../build/NEWS:8853 ../../../build/NEWS:11893 msgid "" "`bpo-31315 `__: Fix an assertion failure" " in imp.create_dynamic(), when spec.name is not a string. Patch by Oren " "Milman." msgstr "" -#: ../../../build/NEWS:8633 ../../../build/NEWS:11673 +#: ../../../build/NEWS:8856 ../../../build/NEWS:11896 msgid "" "`bpo-31311 `__: Fix a crash in the " "``__setstate__()`` method of `ctypes._CData`, in case of a bad ``__dict__``." " Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8636 ../../../build/NEWS:11676 +#: ../../../build/NEWS:8859 ../../../build/NEWS:11899 msgid "" "`bpo-31293 `__: Fix crashes in true " "division and multiplication of a timedelta object by a float with a bad " "as_integer_ratio() method. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8640 ../../../build/NEWS:11680 +#: ../../../build/NEWS:8863 ../../../build/NEWS:11903 msgid "" "`bpo-31285 `__: Fix an assertion failure" " in `warnings.warn_explicit`, when the return value of the received loader's" " get_source() has a bad splitlines() method. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8644 +#: ../../../build/NEWS:8867 msgid "" "`bpo-30406 `__: Make ``async`` and " "``await`` proper keywords, as specified in :pep:`492`." msgstr "" -#: ../../../build/NEWS:8650 ../../../build/NEWS:11786 +#: ../../../build/NEWS:8873 ../../../build/NEWS:12009 msgid "" "`bpo-30058 `__: Fixed buffer overflow in" " select.kqueue.control()." msgstr "" -#: ../../../build/NEWS:8652 ../../../build/NEWS:11791 +#: ../../../build/NEWS:8875 ../../../build/NEWS:12014 msgid "" "`bpo-31672 `__: ``idpattern`` in " "``string.Template`` matched some non-ASCII characters. Now it uses ``-i`` " "regular expression local flag to avoid non-ASCII characters." msgstr "" -#: ../../../build/NEWS:8656 ../../../build/NEWS:11801 +#: ../../../build/NEWS:8879 ../../../build/NEWS:12024 msgid "" "`bpo-31701 `__: On Windows, " "faulthandler.enable() now ignores MSC and COM exceptions." msgstr "" -#: ../../../build/NEWS:8659 ../../../build/NEWS:11804 +#: ../../../build/NEWS:8882 ../../../build/NEWS:12027 msgid "" "`bpo-31728 `__: Prevent crashes in " "`_elementtree` due to unsafe cleanup of `Element.text` and `Element.tail`. " "Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8662 +#: ../../../build/NEWS:8885 msgid "" "`bpo-31671 `__: Now ``re.compile()`` " "converts passed RegexFlag to normal int object before compiling. " "bm_regex_compile benchmark shows 14% performance improvements." msgstr "" -#: ../../../build/NEWS:8666 +#: ../../../build/NEWS:8889 msgid "" "`bpo-30397 `__: The types of compiled " "regular objects and match objects are now exposed as `re.Pattern` and " "`re.Match`. This adds information in pydoc output for the re module." msgstr "" -#: ../../../build/NEWS:8670 ../../../build/NEWS:11814 +#: ../../../build/NEWS:8893 ../../../build/NEWS:12037 msgid "" "`bpo-31675 `__: Fixed memory leaks in " "Tkinter's methods splitlist() and split() when pass a string larger than 2 " "GiB." msgstr "" -#: ../../../build/NEWS:8673 ../../../build/NEWS:11817 +#: ../../../build/NEWS:8896 ../../../build/NEWS:12040 msgid "" "`bpo-31673 `__: Fixed typo in the name " "of Tkinter's method adderrorinfo()." msgstr "" -#: ../../../build/NEWS:8675 +#: ../../../build/NEWS:8898 msgid "" "`bpo-31648 `__: Improvements to path " "predicates in ElementTree: Allow whitespace around predicate parts, i.e. " @@ -15202,70 +15625,70 @@ msgid "" "by Stefan Behnel." msgstr "" -#: ../../../build/NEWS:8680 ../../../build/NEWS:11819 +#: ../../../build/NEWS:8903 ../../../build/NEWS:12042 msgid "" "`bpo-30806 `__: Fix the string " "representation of a netrc object." msgstr "" -#: ../../../build/NEWS:8682 +#: ../../../build/NEWS:8905 msgid "" "`bpo-31638 `__: Add optional argument " "``compressed`` to ``zipapp.create_archive``, and add option ``--compress`` " "to the command line interface of ``zipapp``." msgstr "" -#: ../../../build/NEWS:8686 ../../../build/NEWS:11824 +#: ../../../build/NEWS:8909 ../../../build/NEWS:12047 msgid "" "`bpo-25351 `__: Avoid venv activate " "failures with undefined variables" msgstr "" -#: ../../../build/NEWS:8688 +#: ../../../build/NEWS:8911 msgid "" "`bpo-20519 `__: Avoid ctypes use (if " "possible) and improve import time for uuid." msgstr "" -#: ../../../build/NEWS:8691 +#: ../../../build/NEWS:8914 msgid "" "`bpo-28293 `__: The regular expression " "cache is no longer completely dumped when it is full." msgstr "" -#: ../../../build/NEWS:8694 +#: ../../../build/NEWS:8917 msgid "" "`bpo-31596 `__: Added " "pthread_getcpuclockid() to the time module" msgstr "" -#: ../../../build/NEWS:8696 +#: ../../../build/NEWS:8919 msgid "" "`bpo-27494 `__: Make 2to3 accept a " "trailing comma in generator expressions. For example, ``set(x for x in " "[],)`` is now allowed." msgstr "" -#: ../../../build/NEWS:8699 ../../../build/NEWS:11830 +#: ../../../build/NEWS:8922 ../../../build/NEWS:12053 msgid "" "`bpo-30347 `__: Stop crashes when " "concurrently iterate over itertools.groupby() iterators." msgstr "" -#: ../../../build/NEWS:8702 +#: ../../../build/NEWS:8925 msgid "" "`bpo-30346 `__: An iterator produced by " "itertools.groupby() iterator now becomes exhausted after advancing the " "groupby iterator." msgstr "" -#: ../../../build/NEWS:8705 +#: ../../../build/NEWS:8928 msgid "" "`bpo-31556 `__: Cancel asyncio.wait_for " "future faster if timeout <= 0" msgstr "" -#: ../../../build/NEWS:8707 +#: ../../../build/NEWS:8930 msgid "" "`bpo-31540 `__: Allow passing a context " "object in :class:`concurrent.futures.ProcessPoolExecutor` constructor. Also," @@ -15273,20 +15696,20 @@ msgid "" "earlier to improve memory usage when a worker waits for new jobs." msgstr "" -#: ../../../build/NEWS:8712 ../../../build/NEWS:11833 +#: ../../../build/NEWS:8935 ../../../build/NEWS:12056 msgid "" "`bpo-31516 `__: " "``threading.current_thread()`` should not return a dummy thread at shutdown." msgstr "" -#: ../../../build/NEWS:8715 +#: ../../../build/NEWS:8938 msgid "" "`bpo-31525 `__: In the sqlite module, " "require the sqlite3_prepare_v2 API. Thus, the sqlite module now requires " "sqlite version at least 3.3.9." msgstr "" -#: ../../../build/NEWS:8718 +#: ../../../build/NEWS:8941 msgid "" "`bpo-26510 `__: argparse subparsers are " "now required by default. This matches behaviour in Python 2. For optional " @@ -15295,7 +15718,7 @@ msgid "" " as had been the case since Python 3.3.)" msgstr "" -#: ../../../build/NEWS:8724 +#: ../../../build/NEWS:8947 msgid "" "`bpo-27541 `__: Reprs of subclasses of " "some collection and iterator classes (`bytearray`, `array.array`, " @@ -15304,70 +15727,70 @@ msgid "" "of the base class." msgstr "" -#: ../../../build/NEWS:8729 ../../../build/NEWS:11836 +#: ../../../build/NEWS:8952 ../../../build/NEWS:12059 msgid "" "`bpo-31351 `__: python -m ensurepip now " "exits with non-zero exit code if pip bootstrapping has failed." msgstr "" -#: ../../../build/NEWS:8732 +#: ../../../build/NEWS:8955 msgid "" "`bpo-31389 `__: ``pdb.set_trace()`` now " "takes an optional keyword-only argument ``header``. If given, this is " "printed to the console just before debugging begins." msgstr "" -#: ../../../build/NEWS:8739 ../../../build/NEWS:11857 +#: ../../../build/NEWS:8962 ../../../build/NEWS:12080 msgid "" "`bpo-31537 `__: Fix incorrect usage of " "``get_history_length`` in readline documentation example code. Patch by Brad" " Smith." msgstr "" -#: ../../../build/NEWS:8742 ../../../build/NEWS:11860 +#: ../../../build/NEWS:8965 ../../../build/NEWS:12083 msgid "" "`bpo-30085 `__: The operator functions " "without double underscores are preferred for clarity. The one with " "underscores are only kept for back-compatibility." msgstr "" -#: ../../../build/NEWS:8749 +#: ../../../build/NEWS:8972 msgid "" "`bpo-31696 `__: Improve compiler version" " information in :data:`sys.version` when Python is built with Clang." msgstr "" -#: ../../../build/NEWS:8752 +#: ../../../build/NEWS:8975 msgid "" "`bpo-31625 `__: Stop using ranlib on " "static libraries. Instead, we assume ar supports the 's' flag." msgstr "" -#: ../../../build/NEWS:8755 +#: ../../../build/NEWS:8978 msgid "" "`bpo-31624 `__: Remove support for " "BSD/OS." msgstr "" -#: ../../../build/NEWS:8757 ../../../build/NEWS:11901 +#: ../../../build/NEWS:8980 ../../../build/NEWS:12124 msgid "" "`bpo-22140 `__: Prevent double " "substitution of prefix in python-config.sh." msgstr "" -#: ../../../build/NEWS:8759 +#: ../../../build/NEWS:8982 msgid "" "`bpo-31569 `__: Correct PCBuild/ case to" " PCbuild/ in build scripts and documentation." msgstr "" -#: ../../../build/NEWS:8762 ../../../build/NEWS:11903 +#: ../../../build/NEWS:8985 ../../../build/NEWS:12126 msgid "" "`bpo-31536 `__: Avoid wholesale rebuild " "after `make regen-all` if nothing changed." msgstr "" -#: ../../../build/NEWS:8768 ../../../build/NEWS:11959 +#: ../../../build/NEWS:8991 ../../../build/NEWS:12182 msgid "" "`bpo-31460 `__: Simplify the API of " "IDLE's Module Browser. Passing a widget instead of an flist with a root " @@ -15377,19 +15800,19 @@ msgid "" ".py." msgstr "" -#: ../../../build/NEWS:8774 ../../../build/NEWS:11965 +#: ../../../build/NEWS:8997 ../../../build/NEWS:12188 msgid "" "`bpo-31649 `__: IDLE - Make _htest, " "_utest parameters keyword only." msgstr "" -#: ../../../build/NEWS:8776 ../../../build/NEWS:11967 +#: ../../../build/NEWS:8999 ../../../build/NEWS:12190 msgid "" "`bpo-31559 `__: Remove test order " "dependence in idle_test.test_browser." msgstr "" -#: ../../../build/NEWS:8778 ../../../build/NEWS:11969 +#: ../../../build/NEWS:9001 ../../../build/NEWS:12192 msgid "" "`bpo-31459 `__: Rename IDLE's module " "browser from Class Browser to Module Browser. The original module-level " @@ -15400,33 +15823,33 @@ msgid "" "changed. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:8786 ../../../build/NEWS:11977 +#: ../../../build/NEWS:9009 ../../../build/NEWS:12200 msgid "" "`bpo-31500 `__: Default fonts now are " "scaled on HiDPI displays." msgstr "" -#: ../../../build/NEWS:8788 ../../../build/NEWS:11979 +#: ../../../build/NEWS:9011 ../../../build/NEWS:12202 msgid "" "`bpo-1612262 `__: IDLE module browser " "now shows nested classes and functions. Original patches for code and tests " "by Guilherme Polo and Cheryl Sabella, respectively." msgstr "" -#: ../../../build/NEWS:8795 +#: ../../../build/NEWS:9018 msgid "" "`bpo-28280 `__: Make `PyMapping_Keys()`," " `PyMapping_Values()` and `PyMapping_Items()` always return a `list` (rather" " than a `list` or a `tuple`). Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8799 ../../../build/NEWS:11997 +#: ../../../build/NEWS:9022 ../../../build/NEWS:12220 msgid "" "`bpo-31532 `__: Fix memory corruption " "due to allocator mix in getpath.c between Py_GetPath() and Py_SetPath()" msgstr "" -#: ../../../build/NEWS:8802 +#: ../../../build/NEWS:9025 msgid "" "`bpo-25658 `__: Implement :pep:`539` for" " Thread Specific Storage (TSS) API: it is a new Thread Local Storage (TLS) " @@ -15435,43 +15858,43 @@ msgid "" " M. Bray, patch by Masayuki Yamamoto." msgstr "" -#: ../../../build/NEWS:8810 +#: ../../../build/NEWS:9033 msgid "Python 3.7.0 alpha 1" msgstr "Python 3.7.0 alfa 1" -#: ../../../build/NEWS:8812 +#: ../../../build/NEWS:9035 msgid "*Release date: 2017-09-19*" msgstr "*Tanggal rilis: 2017-09-19*" -#: ../../../build/NEWS:8817 ../../../build/NEWS:12035 +#: ../../../build/NEWS:9040 ../../../build/NEWS:12258 msgid "" "`bpo-29781 `__: SSLObject.version() now " "correctly returns None when handshake over BIO has not been performed yet." msgstr "" -#: ../../../build/NEWS:8820 +#: ../../../build/NEWS:9043 msgid "" "`bpo-29505 `__: Add fuzz tests for " "float(str), int(str), unicode(str); for oss-fuzz." msgstr "" -#: ../../../build/NEWS:8823 ../../../build/NEWS:12038 -#: ../../../build/NEWS:16423 +#: ../../../build/NEWS:9046 ../../../build/NEWS:12261 +#: ../../../build/NEWS:16646 msgid "" "`bpo-30947 `__: Upgrade libexpat " "embedded copy from version 2.2.1 to 2.2.3 to get security fixes." msgstr "" -#: ../../../build/NEWS:8826 ../../../build/NEWS:12498 -#: ../../../build/NEWS:16465 +#: ../../../build/NEWS:9049 ../../../build/NEWS:12721 +#: ../../../build/NEWS:16688 msgid "" "`bpo-30730 `__: Prevent environment " "variables injection in subprocess on Windows. Prevent passing other " "environment variables and command arguments." msgstr "" -#: ../../../build/NEWS:8830 ../../../build/NEWS:12502 -#: ../../../build/NEWS:16469 +#: ../../../build/NEWS:9053 ../../../build/NEWS:12725 +#: ../../../build/NEWS:16692 msgid "" "`bpo-30694 `__: Upgrade expat copy from " "2.2.0 to 2.2.1 to get fixes of multiple security vulnerabilities including: " @@ -15483,8 +15906,8 @@ msgid "" "expat secret using ``XML_SetHashSalt()``." msgstr "" -#: ../../../build/NEWS:8839 ../../../build/NEWS:12511 -#: ../../../build/NEWS:16478 +#: ../../../build/NEWS:9062 ../../../build/NEWS:12734 +#: ../../../build/NEWS:16701 msgid "" "`bpo-30500 `__: Fix " "urllib.parse.splithost() to correctly parse fragments. For example, " @@ -15493,15 +15916,15 @@ msgid "" "authentication (``login@host``)." msgstr "" -#: ../../../build/NEWS:8844 ../../../build/NEWS:12600 -#: ../../../build/NEWS:16483 +#: ../../../build/NEWS:9067 ../../../build/NEWS:12823 +#: ../../../build/NEWS:16706 msgid "" "`bpo-29591 `__: Update expat copy from " "2.1.1 to 2.2.0 to get fixes of CVE-2016-0718 and CVE-2016-4472. See " "https://sourceforge.net/p/expat/bugs/537/ for more information." msgstr "" -#: ../../../build/NEWS:8851 ../../../build/NEWS:11663 +#: ../../../build/NEWS:9074 ../../../build/NEWS:11886 msgid "" "`bpo-31490 `__: Fix an assertion failure" " in `ctypes` class definition, in case the class has an attribute whose name" @@ -15509,28 +15932,28 @@ msgid "" "Milman." msgstr "" -#: ../../../build/NEWS:8855 ../../../build/NEWS:12044 +#: ../../../build/NEWS:9078 ../../../build/NEWS:12267 msgid "" "`bpo-31471 `__: Fix an assertion failure" " in `subprocess.Popen()` on Windows, in case the env argument has a bad " "keys() method. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8858 ../../../build/NEWS:12047 +#: ../../../build/NEWS:9081 ../../../build/NEWS:12270 msgid "" "`bpo-31418 `__: Fix an assertion failure" " in `PyErr_WriteUnraisable()` in case of an exception with a bad " "``__module__`` attribute. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8861 ../../../build/NEWS:12050 +#: ../../../build/NEWS:9084 ../../../build/NEWS:12273 msgid "" "`bpo-31416 `__: Fix assertion failures " "in case of a bad warnings.filters or warnings.defaultaction. Patch by Oren " "Milman." msgstr "" -#: ../../../build/NEWS:8864 +#: ../../../build/NEWS:9087 msgid "" "`bpo-28411 `__: Change direct usage of " "PyInterpreterState.modules to PyImport_GetModuleDict(). Also introduce more " @@ -15538,7 +15961,7 @@ msgid "" "complications when working on sys.modules." msgstr "" -#: ../../../build/NEWS:8869 +#: ../../../build/NEWS:9092 msgid "" "`bpo-28411 `__: Switch to the abstract " "API when dealing with ``PyInterpreterState.modules``. This allows later " @@ -15546,14 +15969,14 @@ msgid "" " a ``PyImport_GetModule()`` function to reduce a bunch of duplicated code." msgstr "" -#: ../../../build/NEWS:8874 ../../../build/NEWS:12053 +#: ../../../build/NEWS:9097 ../../../build/NEWS:12276 msgid "" "`bpo-31411 `__: Raise a TypeError " "instead of SystemError in case warnings.onceregistry is not a dictionary. " "Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8877 +#: ../../../build/NEWS:9100 msgid "" "`bpo-31344 `__: For finer control of " "tracing behaviour when testing the interpreter, two new frame attributes " @@ -15563,13 +15986,13 @@ msgid "" "events." msgstr "" -#: ../../../build/NEWS:8883 ../../../build/NEWS:12056 +#: ../../../build/NEWS:9106 ../../../build/NEWS:12279 msgid "" "`bpo-31373 `__: Fix several possible " "instances of undefined behavior due to floating-point demotions." msgstr "" -#: ../../../build/NEWS:8886 ../../../build/NEWS:12059 +#: ../../../build/NEWS:9109 ../../../build/NEWS:12282 msgid "" "`bpo-30465 `__: Location information " "(``lineno`` and ``col_offset``) in f-strings is now (mostly) correct. This " @@ -15577,95 +16000,95 @@ msgid "" "the first line of the file)." msgstr "" -#: ../../../build/NEWS:8890 +#: ../../../build/NEWS:9113 msgid "" "`bpo-30860 `__: Consolidate CPython's " "global runtime state under a single struct. This improves discoverability " "of the runtime state." msgstr "" -#: ../../../build/NEWS:8893 +#: ../../../build/NEWS:9116 msgid "" "`bpo-31347 `__: Fix possible undefined " "behavior in _PyObject_FastCall_Prepend." msgstr "" -#: ../../../build/NEWS:8895 ../../../build/NEWS:12063 +#: ../../../build/NEWS:9118 ../../../build/NEWS:12286 msgid "" "`bpo-31343 `__: Include sys/sysmacros.h " "for major(), minor(), and makedev(). GNU C libray plans to remove the " "functions from sys/types.h." msgstr "" -#: ../../../build/NEWS:8898 ../../../build/NEWS:12066 +#: ../../../build/NEWS:9121 ../../../build/NEWS:12289 msgid "" "`bpo-31291 `__: Fix an assertion failure" " in `zipimport.zipimporter.get_data` on Windows, when the return value of " "``pathname.replace('/','\\\\')`` isn't a string. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8902 ../../../build/NEWS:12070 +#: ../../../build/NEWS:9125 ../../../build/NEWS:12293 msgid "" "`bpo-31271 `__: Fix an assertion failure" " in the write() method of `io.TextIOWrapper`, when the encoder doesn't " "return a bytes object. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:8906 ../../../build/NEWS:12074 +#: ../../../build/NEWS:9129 ../../../build/NEWS:12297 msgid "" "`bpo-31243 `__: Fix a crash in some " "methods of `io.TextIOWrapper`, when the decoder's state is invalid. Patch by" " Oren Milman." msgstr "" -#: ../../../build/NEWS:8909 ../../../build/NEWS:12077 +#: ../../../build/NEWS:9132 ../../../build/NEWS:12300 msgid "" "`bpo-30721 `__: ``print`` now shows " "correct usage hint for using Python 2 redirection syntax. Patch by Sanyam " "Khurana." msgstr "" -#: ../../../build/NEWS:8912 ../../../build/NEWS:12080 +#: ../../../build/NEWS:9135 ../../../build/NEWS:12303 msgid "" "`bpo-31070 `__: Fix a race condition in " "importlib _get_module_lock()." msgstr "" -#: ../../../build/NEWS:8914 +#: ../../../build/NEWS:9137 msgid "" "`bpo-30747 `__: Add a non-dummy " "implementation of _Py_atomic_store and _Py_atomic_load on MSVC." msgstr "" -#: ../../../build/NEWS:8917 ../../../build/NEWS:12082 -#: ../../../build/NEWS:16429 +#: ../../../build/NEWS:9140 ../../../build/NEWS:12305 +#: ../../../build/NEWS:16652 msgid "" "`bpo-31095 `__: Fix potential crash " "during GC caused by ``tp_dealloc`` which doesn't call " "``PyObject_GC_UnTrack()``." msgstr "" -#: ../../../build/NEWS:8920 ../../../build/NEWS:12085 +#: ../../../build/NEWS:9143 ../../../build/NEWS:12308 msgid "" "`bpo-31071 `__: Avoid masking original " "TypeError in call with * unpacking when other arguments are passed." msgstr "" -#: ../../../build/NEWS:8923 ../../../build/NEWS:12088 +#: ../../../build/NEWS:9146 ../../../build/NEWS:12311 msgid "" "`bpo-30978 `__: str.format_map() now " "passes key lookup exceptions through. Previously any exception was replaced " "with a KeyError exception." msgstr "" -#: ../../../build/NEWS:8926 ../../../build/NEWS:12091 +#: ../../../build/NEWS:9149 ../../../build/NEWS:12314 msgid "" "`bpo-30808 `__: Use _Py_atomic API for " "concurrency-sensitive signal state." msgstr "" -#: ../../../build/NEWS:8928 ../../../build/NEWS:12093 -#: ../../../build/NEWS:16490 +#: ../../../build/NEWS:9151 ../../../build/NEWS:12316 +#: ../../../build/NEWS:16713 msgid "" "`bpo-30876 `__: Relative import from " "unloaded package now reimports the package instead of failing with " @@ -15673,7 +16096,7 @@ msgid "" "rather than SystemError." msgstr "" -#: ../../../build/NEWS:8932 ../../../build/NEWS:12097 +#: ../../../build/NEWS:9155 ../../../build/NEWS:12320 msgid "" "`bpo-30703 `__: Improve signal delivery." " Avoid using Py_AddPendingCall from signal handler, to avoid calling signal-" @@ -15682,53 +16105,53 @@ msgid "" "(some signals could be lost)." msgstr "" -#: ../../../build/NEWS:8937 ../../../build/NEWS:12102 -#: ../../../build/NEWS:16494 +#: ../../../build/NEWS:9160 ../../../build/NEWS:12325 +#: ../../../build/NEWS:16717 msgid "" "`bpo-30765 `__: Avoid blocking in " "pthread_mutex_lock() when PyThread_acquire_lock() is asked not to block." msgstr "" -#: ../../../build/NEWS:8940 ../../../build/NEWS:12105 +#: ../../../build/NEWS:9163 ../../../build/NEWS:12328 msgid "" "`bpo-31161 `__: Make sure the 'Missing " "parentheses' syntax error message is only applied to SyntaxError, not to " "subclasses. Patch by Martijn Pieters." msgstr "" -#: ../../../build/NEWS:8943 ../../../build/NEWS:12108 +#: ../../../build/NEWS:9166 ../../../build/NEWS:12331 msgid "" "`bpo-30814 `__: Fixed a race condition " "when import a submodule from a package." msgstr "" -#: ../../../build/NEWS:8945 +#: ../../../build/NEWS:9168 msgid "" "`bpo-30736 `__: The internal unicodedata" " database has been upgraded to Unicode 10.0." msgstr "" -#: ../../../build/NEWS:8948 +#: ../../../build/NEWS:9171 msgid "" "`bpo-30604 `__: Move co_extra_freefuncs " "from per-thread to per-interpreter to avoid crashes." msgstr "" -#: ../../../build/NEWS:8951 ../../../build/NEWS:12110 +#: ../../../build/NEWS:9174 ../../../build/NEWS:12333 msgid "" "`bpo-30597 `__: ``print`` now shows " "expected input in custom error message when used as a Python 2 statement. " "Patch by Sanyam Khurana." msgstr "" -#: ../../../build/NEWS:8954 ../../../build/NEWS:12525 +#: ../../../build/NEWS:9177 ../../../build/NEWS:12748 msgid "" "`bpo-30682 `__: Removed a too-strict " "assertion that failed for certain f-strings, such as eval(\"f'\\\\\\n'\") " "and eval(\"f'\\\\\\r'\")." msgstr "" -#: ../../../build/NEWS:8957 +#: ../../../build/NEWS:9180 msgid "" "`bpo-30501 `__: The compiler now " "produces more optimal code for complex condition expressions in the \"if\", " @@ -15736,7 +16159,7 @@ msgid "" "expressions and comprehensions." msgstr "" -#: ../../../build/NEWS:8961 +#: ../../../build/NEWS:9184 msgid "" "`bpo-28180 `__: Implement :pep:`538` " "(legacy C locale coercion). This means that when a suitable coercion target " @@ -15745,20 +16168,20 @@ msgid "" "ASCII." msgstr "" -#: ../../../build/NEWS:8966 +#: ../../../build/NEWS:9189 msgid "" "`bpo-30486 `__: Allows setting cell " "values for __closure__. Patch by Lisa Roach." msgstr "" -#: ../../../build/NEWS:8969 +#: ../../../build/NEWS:9192 msgid "" "`bpo-30537 `__: itertools.islice now " "accepts integer-like objects (having an __index__ method) as start, stop, " "and slice arguments" msgstr "" -#: ../../../build/NEWS:8972 +#: ../../../build/NEWS:9195 msgid "" "`bpo-25324 `__: Tokens needed for " "parsing in Python moved to C. ``COMMENT``, ``NL`` and ``ENCODING``. This way" @@ -15766,29 +16189,29 @@ msgid "" "import the tokenize module." msgstr "" -#: ../../../build/NEWS:8976 ../../../build/NEWS:12530 +#: ../../../build/NEWS:9199 ../../../build/NEWS:12753 msgid "" "`bpo-29104 `__: Fixed parsing " "backslashes in f-strings." msgstr "" -#: ../../../build/NEWS:8978 ../../../build/NEWS:12532 -#: ../../../build/NEWS:16497 +#: ../../../build/NEWS:9201 ../../../build/NEWS:12755 +#: ../../../build/NEWS:16720 msgid "" "`bpo-27945 `__: Fixed various segfaults " "with dict when input collections are mutated during searching, inserting or " "comparing. Based on patches by Duane Griffin and Tim Mitchell." msgstr "" -#: ../../../build/NEWS:8982 ../../../build/NEWS:12536 -#: ../../../build/NEWS:16501 +#: ../../../build/NEWS:9205 ../../../build/NEWS:12759 +#: ../../../build/NEWS:16724 msgid "" "`bpo-25794 `__: Fixed type.__setattr__()" " and type.__delattr__() for non-interned attribute names. Based on patch by" " Eryk Sun." msgstr "" -#: ../../../build/NEWS:8985 ../../../build/NEWS:12539 +#: ../../../build/NEWS:9208 ../../../build/NEWS:12762 msgid "" "`bpo-30039 `__: If a KeyboardInterrupt " "happens when the interpreter is in the middle of resuming a chain of nested " @@ -15796,61 +16219,61 @@ msgid "" " frame." msgstr "" -#: ../../../build/NEWS:8989 +#: ../../../build/NEWS:9212 msgid "" "`bpo-28974 `__: ``object.__format__(x, " "'')`` is now equivalent to ``str(x)`` rather than ``format(str(self), '')``." msgstr "" -#: ../../../build/NEWS:8992 +#: ../../../build/NEWS:9215 msgid "" "`bpo-30024 `__: Circular imports " "involving absolute imports with binding a submodule to a name are now " "supported." msgstr "" -#: ../../../build/NEWS:8995 ../../../build/NEWS:12543 +#: ../../../build/NEWS:9218 ../../../build/NEWS:12766 msgid "" "`bpo-12414 `__: sys.getsizeof() on a " "code object now returns the sizes which includes the code struct and sizes " "of objects which it references. Patch by Dong-hee Na." msgstr "" -#: ../../../build/NEWS:8999 +#: ../../../build/NEWS:9222 msgid "" "`bpo-29839 `__: len() now raises " "ValueError rather than OverflowError if __len__() returned a large negative " "integer." msgstr "" -#: ../../../build/NEWS:9002 +#: ../../../build/NEWS:9225 msgid "" "`bpo-11913 `__: README.rst is now " "included in the list of distutils standard READMEs and therefore included in" " source distributions." msgstr "" -#: ../../../build/NEWS:9005 +#: ../../../build/NEWS:9228 msgid "" "`bpo-29914 `__: Fixed default " "implementations of __reduce__ and __reduce_ex__(). object.__reduce__() no " "longer takes arguments, object.__reduce_ex__() now requires one argument." msgstr "" -#: ../../../build/NEWS:9009 ../../../build/NEWS:12547 +#: ../../../build/NEWS:9232 ../../../build/NEWS:12770 msgid "" "`bpo-29949 `__: Fix memory usage " "regression of set and frozenset object." msgstr "" -#: ../../../build/NEWS:9011 ../../../build/NEWS:12549 -#: ../../../build/NEWS:16504 +#: ../../../build/NEWS:9234 ../../../build/NEWS:12772 +#: ../../../build/NEWS:16727 msgid "" "`bpo-29935 `__: Fixed error messages in " "the index() method of tuple, list and deque when pass indices of wrong type." msgstr "" -#: ../../../build/NEWS:9014 +#: ../../../build/NEWS:9237 msgid "" "`bpo-29816 `__: Shift operation now has " "less opportunity to raise OverflowError. ValueError always is raised rather " @@ -15858,44 +16281,44 @@ msgid "" "count always returns zero." msgstr "" -#: ../../../build/NEWS:9019 +#: ../../../build/NEWS:9242 msgid "" "`bpo-24821 `__: Fixed the slowing down " "to 25 times in the searching of some unlucky Unicode characters." msgstr "" -#: ../../../build/NEWS:9022 +#: ../../../build/NEWS:9245 msgid "" "`bpo-29102 `__: Add a unique ID to " "PyInterpreterState. This makes it easier to identify each subinterpreter." msgstr "" -#: ../../../build/NEWS:9025 +#: ../../../build/NEWS:9248 msgid "" "`bpo-29894 `__: The deprecation warning " "is emitted if __complex__ returns an instance of a strict subclass of " "complex. In a future versions of Python this can be an error." msgstr "" -#: ../../../build/NEWS:9029 ../../../build/NEWS:12552 +#: ../../../build/NEWS:9252 ../../../build/NEWS:12775 msgid "" "`bpo-29859 `__: Show correct error " "messages when any of the pthread_* calls in thread_pthread.h fails." msgstr "" -#: ../../../build/NEWS:9032 +#: ../../../build/NEWS:9255 msgid "" "`bpo-29849 `__: Fix a memory leak when " "an ImportError is raised during from import." msgstr "" -#: ../../../build/NEWS:9035 ../../../build/NEWS:12560 +#: ../../../build/NEWS:9258 ../../../build/NEWS:12783 msgid "" "`bpo-28856 `__: Fix an oversight that %b" " format for bytes should support objects follow the buffer protocol." msgstr "" -#: ../../../build/NEWS:9038 ../../../build/NEWS:12877 +#: ../../../build/NEWS:9261 ../../../build/NEWS:13100 msgid "" "`bpo-29723 `__: The ``sys.path[0]`` " "initialization change for `bpo-29139 `__" @@ -15907,81 +16330,81 @@ msgid "" "location named on the command line." msgstr "" -#: ../../../build/NEWS:9046 +#: ../../../build/NEWS:9269 msgid "" "`bpo-29568 `__: Escaped percent \"%%\" " "in the format string for classic string formatting no longer allows any " "characters between two percents." msgstr "" -#: ../../../build/NEWS:9049 ../../../build/NEWS:12563 +#: ../../../build/NEWS:9272 ../../../build/NEWS:12786 msgid "" "`bpo-29714 `__: Fix a regression that " "bytes format may fail when containing zero bytes inside." msgstr "" -#: ../../../build/NEWS:9052 +#: ../../../build/NEWS:9275 msgid "" "`bpo-29695 `__: bool(), float(), list() " "and tuple() no longer take keyword arguments. The first argument of int() " "can now be passes only as positional argument." msgstr "" -#: ../../../build/NEWS:9056 ../../../build/NEWS:12901 +#: ../../../build/NEWS:9279 ../../../build/NEWS:13124 msgid "" "`bpo-28893 `__: Set correct __cause__ " "for errors about invalid awaitables returned from __aiter__ and __anext__." msgstr "" -#: ../../../build/NEWS:9059 ../../../build/NEWS:12555 -#: ../../../build/NEWS:16507 +#: ../../../build/NEWS:9282 ../../../build/NEWS:12778 +#: ../../../build/NEWS:16730 msgid "" "`bpo-28876 `__: ``bool(range)`` works " "even if ``len(range)`` raises :exc:`OverflowError`." msgstr "" -#: ../../../build/NEWS:9062 ../../../build/NEWS:12904 +#: ../../../build/NEWS:9285 ../../../build/NEWS:13127 msgid "" "`bpo-29683 `__: Fixes to memory " "allocation in _PyCode_SetExtra. Patch by Brian Coleman." msgstr "" -#: ../../../build/NEWS:9065 ../../../build/NEWS:12907 +#: ../../../build/NEWS:9288 ../../../build/NEWS:13130 msgid "" "`bpo-29684 `__: Fix minor regression of " "PyEval_CallObjectWithKeywords. It should raise TypeError when kwargs is not " "a dict. But it might cause segv when args=NULL and kwargs is not a dict." msgstr "" -#: ../../../build/NEWS:9069 ../../../build/NEWS:12911 -#: ../../../build/NEWS:16518 +#: ../../../build/NEWS:9292 ../../../build/NEWS:13134 +#: ../../../build/NEWS:16741 msgid "" "`bpo-28598 `__: Support __rmod__ for " "subclasses of str being called before str.__mod__. Patch by Martijn Pieters." msgstr "" -#: ../../../build/NEWS:9072 ../../../build/NEWS:12914 +#: ../../../build/NEWS:9295 ../../../build/NEWS:13137 msgid "" "`bpo-29607 `__: Fix stack_effect " "computation for CALL_FUNCTION_EX. Patch by Matthieu Dartiailh." msgstr "" -#: ../../../build/NEWS:9075 ../../../build/NEWS:12917 -#: ../../../build/NEWS:16521 +#: ../../../build/NEWS:9298 ../../../build/NEWS:13140 +#: ../../../build/NEWS:16744 msgid "" "`bpo-29602 `__: Fix incorrect handling " "of signed zeros in complex constructor for complex subclasses and for inputs" " having a __complex__ method. Patch by Serhiy Storchaka." msgstr "" -#: ../../../build/NEWS:9079 ../../../build/NEWS:12921 -#: ../../../build/NEWS:16525 +#: ../../../build/NEWS:9302 ../../../build/NEWS:13144 +#: ../../../build/NEWS:16748 msgid "" "`bpo-29347 `__: Fixed possibly " "dereferencing undefined pointers when creating weakref objects." msgstr "" -#: ../../../build/NEWS:9082 +#: ../../../build/NEWS:9305 msgid "" "`bpo-29463 `__: Add ``docstring`` field " "to Module, ClassDef, FunctionDef, and AsyncFunctionDef ast nodes. docstring" @@ -15990,122 +16413,122 @@ msgid "" ":issue:`32911`.)" msgstr "" -#: ../../../build/NEWS:9087 ../../../build/NEWS:12924 -#: ../../../build/NEWS:16528 +#: ../../../build/NEWS:9310 ../../../build/NEWS:13147 +#: ../../../build/NEWS:16751 msgid "" "`bpo-29438 `__: Fixed use-after-free " "problem in key sharing dict." msgstr "" -#: ../../../build/NEWS:9089 +#: ../../../build/NEWS:9312 msgid "" "`bpo-29546 `__: Set the 'path' and " "'name' attribute on ImportError for ``from ... import ...``." msgstr "" -#: ../../../build/NEWS:9092 +#: ../../../build/NEWS:9315 msgid "" "`bpo-29546 `__: Improve from-import " "error message with location" msgstr "" -#: ../../../build/NEWS:9094 ../../../build/NEWS:12566 -#: ../../../build/NEWS:16535 +#: ../../../build/NEWS:9317 ../../../build/NEWS:12789 +#: ../../../build/NEWS:16758 msgid "" "`bpo-29478 `__: If max_line_length=None " "is specified while using the Compat32 policy, it is no longer ignored. " "Patch by Mircea Cosbuc." msgstr "" -#: ../../../build/NEWS:9097 ../../../build/NEWS:12926 -#: ../../../build/NEWS:16530 +#: ../../../build/NEWS:9320 ../../../build/NEWS:13149 +#: ../../../build/NEWS:16753 msgid "" "`bpo-29319 `__: Prevent " "RunMainFromImporter overwriting sys.path[0]." msgstr "" -#: ../../../build/NEWS:9099 ../../../build/NEWS:12928 -#: ../../../build/NEWS:16532 +#: ../../../build/NEWS:9322 ../../../build/NEWS:13151 +#: ../../../build/NEWS:16755 msgid "" "`bpo-29337 `__: Fixed possible " "BytesWarning when compare the code objects. Warnings could be emitted at " "compile time." msgstr "" -#: ../../../build/NEWS:9102 ../../../build/NEWS:12931 +#: ../../../build/NEWS:9325 ../../../build/NEWS:13154 msgid "" "`bpo-29327 `__: Fixed a crash when pass " "the iterable keyword argument to sorted()." msgstr "" -#: ../../../build/NEWS:9105 ../../../build/NEWS:12934 +#: ../../../build/NEWS:9328 ../../../build/NEWS:13157 msgid "" "`bpo-29034 `__: Fix memory leak and use-" "after-free in os module (path_converter)." msgstr "" -#: ../../../build/NEWS:9108 ../../../build/NEWS:12937 +#: ../../../build/NEWS:9331 ../../../build/NEWS:13160 msgid "" "`bpo-29159 `__: Fix regression in " "bytes(x) when x.__index__() raises Exception." msgstr "" -#: ../../../build/NEWS:9110 +#: ../../../build/NEWS:9333 msgid "" "`bpo-29049 `__: Call " "_PyObject_GC_TRACK() lazily when calling Python function. Calling function " "is up to 5% faster." msgstr "" -#: ../../../build/NEWS:9113 +#: ../../../build/NEWS:9336 msgid "" "`bpo-28927 `__: bytes.fromhex() and " "bytearray.fromhex() now ignore all ASCII whitespace, not only spaces. Patch" " by Robert Xiao." msgstr "" -#: ../../../build/NEWS:9116 ../../../build/NEWS:12939 -#: ../../../build/NEWS:16884 +#: ../../../build/NEWS:9339 ../../../build/NEWS:13162 +#: ../../../build/NEWS:17107 msgid "" "`bpo-28932 `__: Do not include " " if it does not exist." msgstr "" -#: ../../../build/NEWS:9118 ../../../build/NEWS:12941 -#: ../../../build/NEWS:16889 +#: ../../../build/NEWS:9341 ../../../build/NEWS:13164 +#: ../../../build/NEWS:17112 msgid "" "`bpo-25677 `__: Correct the positioning " "of the syntax error caret for indented blocks. Based on patch by Michael " "Layzell." msgstr "" -#: ../../../build/NEWS:9121 ../../../build/NEWS:12944 -#: ../../../build/NEWS:16892 +#: ../../../build/NEWS:9344 ../../../build/NEWS:13167 +#: ../../../build/NEWS:17115 msgid "" "`bpo-29000 `__: Fixed bytes formatting " "of octals with zero padding in alternate form." msgstr "" -#: ../../../build/NEWS:9124 +#: ../../../build/NEWS:9347 msgid "" "`bpo-18896 `__: Python function can now " "have more than 255 parameters. collections.namedtuple() now supports tuples " "with more than 255 elements." msgstr "" -#: ../../../build/NEWS:9127 +#: ../../../build/NEWS:9350 msgid "" "`bpo-28596 `__: The preferred encoding " "is UTF-8 on Android. Patch written by Chi Hsuan Yen." msgstr "" -#: ../../../build/NEWS:9130 +#: ../../../build/NEWS:9353 msgid "" "`bpo-22257 `__: Clean up interpreter " "startup (see :pep:`432`)." msgstr "" -#: ../../../build/NEWS:9132 ../../../build/NEWS:12947 +#: ../../../build/NEWS:9355 ../../../build/NEWS:13170 msgid "" "`bpo-26919 `__: On Android, operating " "system data is now always encoded/decoded to/from UTF-8, instead of the " @@ -16113,42 +16536,42 @@ msgid "" "os.fsdecode() which are already using UTF-8." msgstr "" -#: ../../../build/NEWS:9136 ../../../build/NEWS:12951 +#: ../../../build/NEWS:9359 ../../../build/NEWS:13174 msgid "" "`bpo-28991 `__: functools.lru_cache() " "was susceptible to an obscure reentrancy bug triggerable by a monkey-patched" " len() function." msgstr "" -#: ../../../build/NEWS:9139 ../../../build/NEWS:13225 +#: ../../../build/NEWS:9362 ../../../build/NEWS:13448 msgid "" "`bpo-28147 `__: Fix a memory leak in " "split-table dictionaries: setattr() must not convert combined table into " "split table. Patch written by INADA Naoki." msgstr "" -#: ../../../build/NEWS:9142 ../../../build/NEWS:12954 +#: ../../../build/NEWS:9365 ../../../build/NEWS:13177 msgid "" "`bpo-28739 `__: f-string expressions are" " no longer accepted as docstrings and by ast.literal_eval() even if they do " "not include expressions." msgstr "" -#: ../../../build/NEWS:9145 ../../../build/NEWS:12957 -#: ../../../build/NEWS:16895 +#: ../../../build/NEWS:9368 ../../../build/NEWS:13180 +#: ../../../build/NEWS:17118 msgid "" "`bpo-28512 `__: Fixed setting the offset" " attribute of SyntaxError by PyErr_SyntaxLocationEx() and " "PyErr_SyntaxLocationObject()." msgstr "" -#: ../../../build/NEWS:9148 ../../../build/NEWS:12960 +#: ../../../build/NEWS:9371 ../../../build/NEWS:13183 msgid "" "`bpo-28918 `__: Fix the cross " "compilation of xxlimited when Python has been built with Py_DEBUG defined." msgstr "" -#: ../../../build/NEWS:9151 ../../../build/NEWS:13255 +#: ../../../build/NEWS:9374 ../../../build/NEWS:13478 msgid "" "`bpo-23722 `__: Rather than silently " "producing a class that doesn't support zero-argument ``super()`` in methods," @@ -16157,7 +16580,7 @@ msgid "" "supports zero-argument ``super()``." msgstr "" -#: ../../../build/NEWS:9157 ../../../build/NEWS:13261 +#: ../../../build/NEWS:9380 ../../../build/NEWS:13484 msgid "" "`bpo-28797 `__: Modifying the class " "__dict__ inside the __set_name__ method of a descriptor that is used inside " @@ -16165,7 +16588,7 @@ msgid "" "descriptors." msgstr "" -#: ../../../build/NEWS:9161 +#: ../../../build/NEWS:9384 msgid "" "`bpo-28799 `__: Remove the " "``PyEval_GetCallStats()`` function and deprecate the untested and " @@ -16174,13 +16597,13 @@ msgid "" ":mod:`profile` to profile function calls." msgstr "" -#: ../../../build/NEWS:9166 +#: ../../../build/NEWS:9389 msgid "" "`bpo-12844 `__: More than 255 arguments " "can now be passed to a function." msgstr "" -#: ../../../build/NEWS:9168 ../../../build/NEWS:13265 +#: ../../../build/NEWS:9391 ../../../build/NEWS:13488 msgid "" "`bpo-28782 `__: Fix a bug in the " "implementation ``yield from`` when checking if the next instruction is " @@ -16188,7 +16611,7 @@ msgid "" "`__)." msgstr "" -#: ../../../build/NEWS:9172 +#: ../../../build/NEWS:9395 msgid "" "`bpo-28774 `__: Fix error position of " "the unicode error in ASCII and Latin1 encoders when a string returned by the" @@ -16196,20 +16619,20 @@ msgid "" " ASCII codec, characters out of the U+0000-U+00FF range for Latin1)." msgstr "" -#: ../../../build/NEWS:9177 ../../../build/NEWS:12963 +#: ../../../build/NEWS:9400 ../../../build/NEWS:13186 msgid "" "`bpo-28731 `__: Optimize " "_PyDict_NewPresized() to create correct size dict. Improve speed of dict " "literal with constant keys up to 30%." msgstr "" -#: ../../../build/NEWS:9180 ../../../build/NEWS:13319 +#: ../../../build/NEWS:9403 ../../../build/NEWS:13542 msgid "" "`bpo-28532 `__: Show sys.version when -V" " option is supplied twice." msgstr "" -#: ../../../build/NEWS:9182 ../../../build/NEWS:13321 +#: ../../../build/NEWS:9405 ../../../build/NEWS:13544 msgid "" "`bpo-27100 `__: The with-statement now " "checks for __enter__ before it checks for __exit__. This gives less " @@ -16217,351 +16640,351 @@ msgid "" "Ellington." msgstr "" -#: ../../../build/NEWS:9186 ../../../build/NEWS:13325 +#: ../../../build/NEWS:9409 ../../../build/NEWS:13548 msgid "" "`bpo-28746 `__: Fix the " "set_inheritable() file descriptor method on platforms that do not have the " "ioctl FIOCLEX and FIONCLEX commands." msgstr "" -#: ../../../build/NEWS:9189 ../../../build/NEWS:13328 +#: ../../../build/NEWS:9412 ../../../build/NEWS:13551 msgid "" "`bpo-26920 `__: Fix not getting the " "locale's charset upon initializing the interpreter, on platforms that do not" " have langinfo." msgstr "" -#: ../../../build/NEWS:9192 ../../../build/NEWS:13331 -#: ../../../build/NEWS:16901 +#: ../../../build/NEWS:9415 ../../../build/NEWS:13554 +#: ../../../build/NEWS:17124 msgid "" "`bpo-28648 `__: Fixed crash in " "Py_DecodeLocale() in debug build on Mac OS X when decode astral characters." " Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:9195 ../../../build/NEWS:13337 +#: ../../../build/NEWS:9418 ../../../build/NEWS:13560 msgid "" "`bpo-28665 `__: Improve speed of the " "STORE_DEREF opcode by 40%." msgstr "" -#: ../../../build/NEWS:9197 ../../../build/NEWS:13334 -#: ../../../build/NEWS:16904 +#: ../../../build/NEWS:9420 ../../../build/NEWS:13557 +#: ../../../build/NEWS:17127 msgid "" "`bpo-19398 `__: Extra slash no longer " "added to sys.path components in case of empty compile-time PYTHONPATH " "components." msgstr "" -#: ../../../build/NEWS:9200 +#: ../../../build/NEWS:9423 msgid "" "`bpo-28621 `__: Sped up converting int " "to float by reusing faster bits counting implementation. Patch by Adrian " "Wielgosik." msgstr "" -#: ../../../build/NEWS:9203 +#: ../../../build/NEWS:9426 msgid "" "`bpo-28580 `__: Optimize iterating split" " table values. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:9205 ../../../build/NEWS:13339 +#: ../../../build/NEWS:9428 ../../../build/NEWS:13562 msgid "" "`bpo-28583 `__: PyDict_SetDefault didn't" " combine split table when needed. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:9208 ../../../build/NEWS:13433 +#: ../../../build/NEWS:9431 ../../../build/NEWS:13656 msgid "" "`bpo-28128 `__: Deprecation warning for " "invalid str and byte escape sequences now prints better information about " "where the error occurs. Patch by Serhiy Storchaka and Eric Smith." msgstr "" -#: ../../../build/NEWS:9212 ../../../build/NEWS:13437 +#: ../../../build/NEWS:9435 ../../../build/NEWS:13660 msgid "" "`bpo-28509 `__: dict.update() no longer " "allocate unnecessary large memory." msgstr "" -#: ../../../build/NEWS:9214 ../../../build/NEWS:13439 -#: ../../../build/NEWS:16907 +#: ../../../build/NEWS:9437 ../../../build/NEWS:13662 +#: ../../../build/NEWS:17130 msgid "" "`bpo-28426 `__: Fixed potential crash in" " PyUnicode_AsDecodedObject() in debug build." msgstr "" -#: ../../../build/NEWS:9217 ../../../build/NEWS:13442 +#: ../../../build/NEWS:9440 ../../../build/NEWS:13665 msgid "" "`bpo-28517 `__: Fixed of-by-one error in" " the peephole optimizer that caused keeping unreachable code." msgstr "" -#: ../../../build/NEWS:9220 ../../../build/NEWS:13445 +#: ../../../build/NEWS:9443 ../../../build/NEWS:13668 msgid "" "`bpo-28214 `__: Improved exception " "reporting for problematic __set_name__ attributes." msgstr "" -#: ../../../build/NEWS:9223 ../../../build/NEWS:13448 -#: ../../../build/NEWS:16910 +#: ../../../build/NEWS:9446 ../../../build/NEWS:13671 +#: ../../../build/NEWS:17133 msgid "" "`bpo-23782 `__: Fixed possible memory " "leak in _PyTraceback_Add() and exception loss in PyTraceBack_Here()." msgstr "" -#: ../../../build/NEWS:9226 ../../../build/NEWS:13557 +#: ../../../build/NEWS:9449 ../../../build/NEWS:13780 msgid "" "`bpo-28183 `__: Optimize and cleanup " "dict iteration." msgstr "" -#: ../../../build/NEWS:9228 ../../../build/NEWS:13559 +#: ../../../build/NEWS:9451 ../../../build/NEWS:13782 msgid "" "`bpo-26081 `__: Added C implementation " "of asyncio.Future. Original patch by Yury Selivanov." msgstr "" -#: ../../../build/NEWS:9231 ../../../build/NEWS:13562 -#: ../../../build/NEWS:16913 +#: ../../../build/NEWS:9454 ../../../build/NEWS:13785 +#: ../../../build/NEWS:17136 msgid "" "`bpo-28379 `__: Added sanity checks and " "tests for PyUnicode_CopyCharacters(). Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:9234 ../../../build/NEWS:13565 -#: ../../../build/NEWS:16916 +#: ../../../build/NEWS:9457 ../../../build/NEWS:13788 +#: ../../../build/NEWS:17139 msgid "" "`bpo-28376 `__: The type of long range " "iterator is now registered as Iterator. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:9237 +#: ../../../build/NEWS:9460 msgid "" "`bpo-28376 `__: Creating instances of " "range_iterator by calling range_iterator type now is disallowed. Calling " "iter() on range instance is the only way. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:9241 ../../../build/NEWS:13574 -#: ../../../build/NEWS:16922 +#: ../../../build/NEWS:9464 ../../../build/NEWS:13797 +#: ../../../build/NEWS:17145 msgid "" "`bpo-26906 `__: Resolving special " "methods of uninitialized type now causes implicit initialization of the type" " instead of a fail." msgstr "" -#: ../../../build/NEWS:9244 ../../../build/NEWS:13577 -#: ../../../build/NEWS:16925 +#: ../../../build/NEWS:9467 ../../../build/NEWS:13800 +#: ../../../build/NEWS:17148 msgid "" "`bpo-18287 `__: PyType_Ready() now " "checks that tp_name is not NULL. Original patch by Niklas Koep." msgstr "" -#: ../../../build/NEWS:9247 ../../../build/NEWS:13580 -#: ../../../build/NEWS:16928 +#: ../../../build/NEWS:9470 ../../../build/NEWS:13803 +#: ../../../build/NEWS:17151 msgid "" "`bpo-24098 `__: Fixed possible crash " "when AST is changed in process of compiling it." msgstr "" -#: ../../../build/NEWS:9250 ../../../build/NEWS:13583 +#: ../../../build/NEWS:9473 ../../../build/NEWS:13806 msgid "" "`bpo-28201 `__: Dict reduces possibility" " of 2nd conflict in hash table when hashes have same lower bits." msgstr "" -#: ../../../build/NEWS:9253 ../../../build/NEWS:13586 -#: ../../../build/NEWS:16931 +#: ../../../build/NEWS:9476 ../../../build/NEWS:13809 +#: ../../../build/NEWS:17154 msgid "" "`bpo-28350 `__: String constants with " "null character no longer interned." msgstr "" -#: ../../../build/NEWS:9255 ../../../build/NEWS:13588 -#: ../../../build/NEWS:16933 +#: ../../../build/NEWS:9478 ../../../build/NEWS:13811 +#: ../../../build/NEWS:17156 msgid "" "`bpo-26617 `__: Fix crash when GC runs " "during weakref callbacks." msgstr "" -#: ../../../build/NEWS:9257 ../../../build/NEWS:13590 -#: ../../../build/NEWS:16935 +#: ../../../build/NEWS:9480 ../../../build/NEWS:13813 +#: ../../../build/NEWS:17158 msgid "" "`bpo-27942 `__: String constants now " "interned recursively in tuples and frozensets." msgstr "" -#: ../../../build/NEWS:9260 +#: ../../../build/NEWS:9483 msgid "" "`bpo-28289 `__: ImportError.__init__ now" " resets not specified attributes." msgstr "" -#: ../../../build/NEWS:9262 ../../../build/NEWS:13593 -#: ../../../build/NEWS:16938 +#: ../../../build/NEWS:9485 ../../../build/NEWS:13816 +#: ../../../build/NEWS:17161 msgid "" "`bpo-21578 `__: Fixed misleading error " "message when ImportError called with invalid keyword args." msgstr "" -#: ../../../build/NEWS:9265 ../../../build/NEWS:13596 +#: ../../../build/NEWS:9488 ../../../build/NEWS:13819 msgid "" "`bpo-28203 `__: Fix incorrect type in " "complex(1.0, {2:3}) error message. Patch by Soumya Sharma." msgstr "" -#: ../../../build/NEWS:9268 ../../../build/NEWS:13599 +#: ../../../build/NEWS:9491 ../../../build/NEWS:13822 msgid "" "`bpo-28086 `__: Single var-positional " "argument of tuple subtype was passed unscathed to the C-defined function. " "Now it is converted to exact tuple." msgstr "" -#: ../../../build/NEWS:9271 ../../../build/NEWS:13602 +#: ../../../build/NEWS:9494 ../../../build/NEWS:13825 msgid "" "`bpo-28214 `__: Now __set_name__ is " "looked up on the class instead of the instance." msgstr "" -#: ../../../build/NEWS:9274 ../../../build/NEWS:13605 -#: ../../../build/NEWS:16944 +#: ../../../build/NEWS:9497 ../../../build/NEWS:13828 +#: ../../../build/NEWS:17167 msgid "" "`bpo-27955 `__: Fallback on reading " "/dev/urandom device when the getrandom() syscall fails with EPERM, for " "example when blocked by SECCOMP." msgstr "" -#: ../../../build/NEWS:9277 ../../../build/NEWS:13608 +#: ../../../build/NEWS:9500 ../../../build/NEWS:13831 msgid "" "`bpo-28192 `__: Don't import readline in" " isolated mode." msgstr "" -#: ../../../build/NEWS:9279 +#: ../../../build/NEWS:9502 msgid "" "`bpo-27441 `__: Remove some redundant " "assignments to ob_size in longobject.c. Thanks Oren Milman." msgstr "" -#: ../../../build/NEWS:9282 +#: ../../../build/NEWS:9505 msgid "" "`bpo-27222 `__: Clean up redundant code " "in long_rshift function. Thanks Oren Milman." msgstr "" -#: ../../../build/NEWS:9285 ../../../build/NEWS:13610 +#: ../../../build/NEWS:9508 ../../../build/NEWS:13833 msgid "Upgrade internal unicode databases to Unicode version 9.0.0." msgstr "Perbarui database unicode internal ke Unicode versi 9.0.0." -#: ../../../build/NEWS:9287 ../../../build/NEWS:13612 -#: ../../../build/NEWS:16947 +#: ../../../build/NEWS:9510 ../../../build/NEWS:13835 +#: ../../../build/NEWS:17170 msgid "" "`bpo-28131 `__: Fix a regression in " "zipimport's compile_source(). zipimport should use the same optimization " "level as the interpreter." msgstr "" -#: ../../../build/NEWS:9290 ../../../build/NEWS:13615 +#: ../../../build/NEWS:9513 ../../../build/NEWS:13838 msgid "" "`bpo-28126 `__: Replace Py_MEMCPY with " "memcpy(). Visual Studio can properly optimize memcpy()." msgstr "" -#: ../../../build/NEWS:9293 ../../../build/NEWS:13618 +#: ../../../build/NEWS:9516 ../../../build/NEWS:13841 msgid "" "`bpo-28120 `__: Fix dict.pop() for " "splitted dictionary when trying to remove a \"pending key\" (Not yet " "inserted in split-table). Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:9296 ../../../build/NEWS:13621 +#: ../../../build/NEWS:9519 ../../../build/NEWS:13844 msgid "" "`bpo-26182 `__: Raise DeprecationWarning" " when async and await keywords are used as variable/attribute/class/function" " name." msgstr "" -#: ../../../build/NEWS:9299 ../../../build/NEWS:13346 +#: ../../../build/NEWS:9522 ../../../build/NEWS:13569 msgid "" "`bpo-26182 `__: Fix a refleak in code " "that raises DeprecationWarning." msgstr "" -#: ../../../build/NEWS:9301 ../../../build/NEWS:13348 +#: ../../../build/NEWS:9524 ../../../build/NEWS:13571 msgid "" "`bpo-28721 `__: Fix asynchronous " "generators aclose() and athrow() to handle StopAsyncIteration propagation " "properly." msgstr "" -#: ../../../build/NEWS:9304 +#: ../../../build/NEWS:9527 msgid "" "`bpo-26110 `__: Speed-up method calls: " "add LOAD_METHOD and CALL_METHOD opcodes." msgstr "" -#: ../../../build/NEWS:9309 ../../../build/NEWS:12116 +#: ../../../build/NEWS:9532 ../../../build/NEWS:12339 msgid "" "`bpo-31499 `__: xml.etree: Fix a crash " "when a parser is part of a reference cycle." msgstr "" -#: ../../../build/NEWS:9312 ../../../build/NEWS:11839 +#: ../../../build/NEWS:9535 ../../../build/NEWS:12062 msgid "" "`bpo-31482 `__: ``random.seed()`` now " "works with bytes in version=1" msgstr "" -#: ../../../build/NEWS:9314 ../../../build/NEWS:12119 +#: ../../../build/NEWS:9537 ../../../build/NEWS:12342 msgid "" "`bpo-28556 `__: typing.get_type_hints " "now finds the right globalns for classes and modules by default (when no " "``globalns`` was specified by the caller)." msgstr "" -#: ../../../build/NEWS:9317 ../../../build/NEWS:12122 +#: ../../../build/NEWS:9540 ../../../build/NEWS:12345 msgid "" "`bpo-28556 `__: Speed improvements to " "the ``typing`` module. Original PRs by Ivan Levkivskyi and Mitar." msgstr "" -#: ../../../build/NEWS:9320 ../../../build/NEWS:12125 +#: ../../../build/NEWS:9543 ../../../build/NEWS:12348 msgid "" "`bpo-31544 `__: The C accelerator module" " of ElementTree ignored exceptions raised when looking up TreeBuilder target" " methods in XMLParser()." msgstr "" -#: ../../../build/NEWS:9323 ../../../build/NEWS:12128 +#: ../../../build/NEWS:9546 ../../../build/NEWS:12351 msgid "" "`bpo-31234 `__: " "socket.create_connection() now fixes manually a reference cycle: clear the " "variable storing the last exception on success." msgstr "" -#: ../../../build/NEWS:9326 ../../../build/NEWS:12131 +#: ../../../build/NEWS:9549 ../../../build/NEWS:12354 msgid "" "`bpo-31457 `__: LoggerAdapter objects " "can now be nested." msgstr "" -#: ../../../build/NEWS:9328 +#: ../../../build/NEWS:9551 msgid "" "`bpo-31431 `__: " "SSLContext.check_hostname now automatically sets SSLContext.verify_mode to " "ssl.CERT_REQUIRED instead of failing with a ValueError." msgstr "" -#: ../../../build/NEWS:9332 +#: ../../../build/NEWS:9555 msgid "" "`bpo-31233 `__: " "socketserver.ThreadingMixIn now keeps a list of non-daemonic threads to wait" " until all these threads complete in server_close()." msgstr "" -#: ../../../build/NEWS:9335 +#: ../../../build/NEWS:9558 msgid "" "`bpo-28638 `__: Changed the " "implementation strategy for collections.namedtuple() to substantially reduce" @@ -16575,39 +16998,39 @@ msgid "" "Serhiy Storchaka, and Raymond Hettinger.)" msgstr "" -#: ../../../build/NEWS:9346 ../../../build/NEWS:12133 +#: ../../../build/NEWS:9569 ../../../build/NEWS:12356 msgid "" "`bpo-31400 `__: Improves SSL error " "handling to avoid losing error numbers." msgstr "" -#: ../../../build/NEWS:9348 +#: ../../../build/NEWS:9571 msgid "" "`bpo-27629 `__: Make return types of " "SSLContext.wrap_bio() and SSLContext.wrap_socket() customizable." msgstr "" -#: ../../../build/NEWS:9351 ../../../build/NEWS:12135 +#: ../../../build/NEWS:9574 ../../../build/NEWS:12358 msgid "" "`bpo-28958 `__: ssl.SSLContext() now " "uses OpenSSL error information when a context cannot be instantiated." msgstr "" -#: ../../../build/NEWS:9354 +#: ../../../build/NEWS:9577 msgid "" "`bpo-28182 `__: The SSL module now " "raises SSLCertVerificationError when OpenSSL fails to verify the peer's " "certificate. The exception contains more information about the error." msgstr "" -#: ../../../build/NEWS:9358 ../../../build/NEWS:12138 +#: ../../../build/NEWS:9581 ../../../build/NEWS:12361 msgid "" "`bpo-27340 `__: SSLSocket.sendall() now " "uses memoryview to create slices of data. This fixes support for all bytes-" "like object. It is also more efficient and avoids costly copies." msgstr "" -#: ../../../build/NEWS:9362 +#: ../../../build/NEWS:9585 msgid "" "`bpo-14191 `__: A new function " "``argparse.ArgumentParser.parse_intermixed_args`` provides the ability to " @@ -16615,33 +17038,33 @@ msgid "" "arguments." msgstr "" -#: ../../../build/NEWS:9367 ../../../build/NEWS:12142 +#: ../../../build/NEWS:9590 ../../../build/NEWS:12365 msgid "" "`bpo-31178 `__: Fix string concatenation" " bug in rare error path in the subprocess module" msgstr "" -#: ../../../build/NEWS:9370 ../../../build/NEWS:12145 +#: ../../../build/NEWS:9593 ../../../build/NEWS:12368 msgid "" "`bpo-31350 `__: Micro-optimize " ":func:`asyncio._get_running_loop` to become up to 10% faster." msgstr "" -#: ../../../build/NEWS:9373 ../../../build/NEWS:12148 -#: ../../../build/NEWS:16440 +#: ../../../build/NEWS:9596 ../../../build/NEWS:12371 +#: ../../../build/NEWS:16663 msgid "" "`bpo-31170 `__: expat: Update libexpat " "from 2.2.3 to 2.2.4. Fix copying of partial characters for UTF-8 input " "(libexpat bug 115): https://github.com/libexpat/libexpat/issues/115" msgstr "" -#: ../../../build/NEWS:9377 ../../../build/NEWS:12152 +#: ../../../build/NEWS:9600 ../../../build/NEWS:12375 msgid "" "`bpo-29136 `__: Add TLS 1.3 cipher " "suites and OP_NO_TLSv1_3." msgstr "" -#: ../../../build/NEWS:9379 +#: ../../../build/NEWS:9602 msgid "" "`bpo-1198569 `__: ``string.Template`` " "subclasses can optionally define ``braceidpattern`` if they want to specify " @@ -16649,7 +17072,7 @@ msgid "" "default) it falls back to ``idpattern``." msgstr "" -#: ../../../build/NEWS:9384 +#: ../../../build/NEWS:9607 msgid "" "`bpo-31326 `__: " "concurrent.futures.ProcessPoolExecutor.shutdown() now explicitly closes the " @@ -16657,61 +17080,61 @@ msgid "" "thread, to prevent leaking a dangling thread." msgstr "" -#: ../../../build/NEWS:9388 ../../../build/NEWS:12163 +#: ../../../build/NEWS:9611 ../../../build/NEWS:12386 msgid "" "`bpo-27144 `__: The ``map()`` and " "``as_completed()`` iterators in ``concurrent.futures`` now avoid keeping a " "reference to yielded objects." msgstr "" -#: ../../../build/NEWS:9391 +#: ../../../build/NEWS:9614 msgid "" "`bpo-31281 `__: Fix " "``fileinput.FileInput(files, inplace=True)`` when ``files`` contain " "``pathlib.Path`` objects." msgstr "" -#: ../../../build/NEWS:9394 ../../../build/NEWS:12166 +#: ../../../build/NEWS:9617 ../../../build/NEWS:12389 msgid "" "`bpo-10746 `__: Fix ctypes producing " "wrong :pep:`3118` type codes for integer types." msgstr "" -#: ../../../build/NEWS:9397 +#: ../../../build/NEWS:9620 msgid "" "`bpo-27584 `__: ``AF_VSOCK`` has been " "added to the socket interface which allows communication between virtual " "machines and their host." msgstr "" -#: ../../../build/NEWS:9400 ../../../build/NEWS:12169 +#: ../../../build/NEWS:9623 ../../../build/NEWS:12392 msgid "" "`bpo-22536 `__: The subprocess module " "now sets the filename when FileNotFoundError is raised on POSIX systems due " "to the executable or cwd not being found." msgstr "" -#: ../../../build/NEWS:9404 +#: ../../../build/NEWS:9627 msgid "" "`bpo-29741 `__: Update some methods in " "the _pyio module to also accept integer types. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:9407 ../../../build/NEWS:12173 +#: ../../../build/NEWS:9630 ../../../build/NEWS:12396 msgid "" "`bpo-31249 `__: concurrent.futures: " "WorkItem.run() used by ThreadPoolExecutor now breaks a reference cycle " "between an exception object and the WorkItem object." msgstr "" -#: ../../../build/NEWS:9411 ../../../build/NEWS:12177 +#: ../../../build/NEWS:9634 ../../../build/NEWS:12400 msgid "" "`bpo-31247 `__: xmlrpc.server now " "explicitly breaks reference cycles when using sys.exc_info() in code " "handling exceptions." msgstr "" -#: ../../../build/NEWS:9414 +#: ../../../build/NEWS:9637 msgid "" "`bpo-23835 `__: configparser: reading " "defaults in the ``ConfigParser()`` constructor is now using ``read_dict()``," @@ -16720,7 +17143,7 @@ msgid "" "converted to strings. Patch by James Tocknell." msgstr "" -#: ../../../build/NEWS:9420 ../../../build/NEWS:11094 +#: ../../../build/NEWS:9643 ../../../build/NEWS:11317 msgid "" "`bpo-31238 `__: pydoc: the stop() method" " of the private ServerThread class now waits until " @@ -16728,20 +17151,20 @@ msgid "" "docserver attribute to None to break a reference cycle." msgstr "" -#: ../../../build/NEWS:9424 +#: ../../../build/NEWS:9647 msgid "" "`bpo-5001 `__: Many asserts in " "`multiprocessing` are now more informative, and some error types have been " "changed to more specific ones." msgstr "" -#: ../../../build/NEWS:9427 +#: ../../../build/NEWS:9650 msgid "" "`bpo-31109 `__: Convert zipimport to use" " Argument Clinic." msgstr "" -#: ../../../build/NEWS:9429 ../../../build/NEWS:12180 +#: ../../../build/NEWS:9652 ../../../build/NEWS:12403 msgid "" "`bpo-30102 `__: The ssl and hashlib " "modules now call OPENSSL_add_all_algorithms_noconf() on OpenSSL < 1.1.0. The" @@ -16750,20 +17173,20 @@ msgid "" "Scalet." msgstr "" -#: ../../../build/NEWS:9434 +#: ../../../build/NEWS:9657 msgid "" "`bpo-18966 `__: Non-daemonic threads " "created by a multiprocessing.Process are now joined on child exit." msgstr "" -#: ../../../build/NEWS:9437 +#: ../../../build/NEWS:9660 msgid "" "`bpo-31183 `__: `dis` now works with " "asynchronous generator and coroutine objects. Patch by George Collins based " "on diagnosis by Luciano Ramalho." msgstr "" -#: ../../../build/NEWS:9440 +#: ../../../build/NEWS:9663 msgid "" "`bpo-5001 `__: There are a number of " "uninformative asserts in the `multiprocessing` module, as noted in issue " @@ -16777,33 +17200,33 @@ msgid "" "(drallensmith on github)." msgstr "" -#: ../../../build/NEWS:9450 ../../../build/NEWS:12185 +#: ../../../build/NEWS:9673 ../../../build/NEWS:12408 msgid "" "`bpo-31185 `__: Fixed miscellaneous " "errors in asyncio speedup module." msgstr "" -#: ../../../build/NEWS:9452 +#: ../../../build/NEWS:9675 msgid "" "`bpo-31151 `__: " "socketserver.ForkingMixIn.server_close() now waits until all child processes" " completed to prevent leaking zombie processes." msgstr "" -#: ../../../build/NEWS:9455 +#: ../../../build/NEWS:9678 msgid "" "`bpo-31072 `__: Add an ``include_file`` " "parameter to ``zipapp.create_archive()``" msgstr "" -#: ../../../build/NEWS:9458 +#: ../../../build/NEWS:9681 msgid "" "`bpo-24700 `__: Optimize array.array " "comparison. It is now from 10x up to 70x faster when comparing arrays " "holding values of the same integer type." msgstr "" -#: ../../../build/NEWS:9461 ../../../build/NEWS:12187 +#: ../../../build/NEWS:9684 ../../../build/NEWS:12410 msgid "" "`bpo-31135 `__: ttk: fix the destroy() " "method of LabeledScale and OptionMenu classes. Call the parent destroy() " @@ -16812,58 +17235,58 @@ msgid "" "garbage collector to destroy all widgets." msgstr "" -#: ../../../build/NEWS:9467 ../../../build/NEWS:12193 +#: ../../../build/NEWS:9690 ../../../build/NEWS:12416 msgid "" "`bpo-31107 `__: Fix " "`copyreg._slotnames()` mangled attribute calculation for classes whose name " "begins with an underscore. Patch by Shane Harvey." msgstr "" -#: ../../../build/NEWS:9470 +#: ../../../build/NEWS:9693 msgid "" "`bpo-31080 `__: Allow " "`logging.config.fileConfig` to accept kwargs and/or args." msgstr "" -#: ../../../build/NEWS:9472 +#: ../../../build/NEWS:9695 msgid "" "`bpo-30897 `__: ``pathlib.Path`` objects" " now include an ``is_mount()`` method (only implemented on POSIX). This is " "similar to ``os.path.ismount(p)``. Patch by Cooper Ry Lees." msgstr "" -#: ../../../build/NEWS:9476 ../../../build/NEWS:12196 +#: ../../../build/NEWS:9699 ../../../build/NEWS:12419 msgid "" "`bpo-31061 `__: Fixed a crash when using" " asyncio and threads." msgstr "" -#: ../../../build/NEWS:9478 +#: ../../../build/NEWS:9701 msgid "" "`bpo-30987 `__: Added support for CAN " "ISO-TP protocol in the socket module." msgstr "" -#: ../../../build/NEWS:9480 +#: ../../../build/NEWS:9703 msgid "" "`bpo-30522 `__: Added a ``setStream`` " "method to ``logging.StreamHandler`` to allow the stream to be set after " "creation." msgstr "" -#: ../../../build/NEWS:9483 ../../../build/NEWS:12198 +#: ../../../build/NEWS:9706 ../../../build/NEWS:12421 msgid "" "`bpo-30502 `__: Fix handling of long " "oids in ssl. Based on patch by Christian Heimes." msgstr "" -#: ../../../build/NEWS:9486 +#: ../../../build/NEWS:9709 msgid "" "`bpo-5288 `__: Support tzinfo objects " "with sub-minute offsets." msgstr "" -#: ../../../build/NEWS:9488 +#: ../../../build/NEWS:9711 msgid "" "`bpo-30919 `__: Fix shared memory " "performance regression in multiprocessing in 3.x. Shared memory used " @@ -16871,50 +17294,50 @@ msgid "" "careful to do as little disk I/O as possible." msgstr "" -#: ../../../build/NEWS:9492 +#: ../../../build/NEWS:9715 msgid "" "`bpo-26732 `__: Fix too many fds in " "processes started with the \"forkserver\" method. A child process would " "inherit as many fds as the number of still-running children." msgstr "" -#: ../../../build/NEWS:9496 ../../../build/NEWS:12208 -#: ../../../build/NEWS:16541 +#: ../../../build/NEWS:9719 ../../../build/NEWS:12431 +#: ../../../build/NEWS:16764 msgid "" "`bpo-29403 `__: Fix ``unittest.mock``'s " "autospec to not fail on method-bound builtin functions. Patch by Aaron " "Gallagher." msgstr "" -#: ../../../build/NEWS:9499 ../../../build/NEWS:12211 -#: ../../../build/NEWS:16544 +#: ../../../build/NEWS:9722 ../../../build/NEWS:12434 +#: ../../../build/NEWS:16767 msgid "" "`bpo-30961 `__: Fix decrementing a " "borrowed reference in tracemalloc." msgstr "" -#: ../../../build/NEWS:9501 +#: ../../../build/NEWS:9724 msgid "" "`bpo-19896 `__: Fix " "multiprocessing.sharedctypes to recognize typecodes ``'q'`` and ``'Q'``." msgstr "" -#: ../../../build/NEWS:9504 +#: ../../../build/NEWS:9727 msgid "" "`bpo-30946 `__: Remove obsolete code in " "readline module for platforms where GNU readline is older than 2.1 or where " "select() is not available." msgstr "" -#: ../../../build/NEWS:9507 ../../../build/NEWS:12213 +#: ../../../build/NEWS:9730 ../../../build/NEWS:12436 msgid "" "`bpo-25684 `__: Change " "``ttk.OptionMenu`` radiobuttons to be unique across instances of " "``OptionMenu``." msgstr "" -#: ../../../build/NEWS:9510 ../../../build/NEWS:12216 -#: ../../../build/NEWS:16546 +#: ../../../build/NEWS:9733 ../../../build/NEWS:12439 +#: ../../../build/NEWS:16769 msgid "" "`bpo-30886 `__: Fix " "multiprocessing.Queue.join_thread(): it now waits until the thread " @@ -16922,40 +17345,40 @@ msgid "" "the queue." msgstr "" -#: ../../../build/NEWS:9514 ../../../build/NEWS:12220 -#: ../../../build/NEWS:16550 +#: ../../../build/NEWS:9737 ../../../build/NEWS:12443 +#: ../../../build/NEWS:16773 msgid "" "`bpo-29854 `__: Fix segfault in readline" " when using readline's history-size option. Patch by Nir Soffer." msgstr "" -#: ../../../build/NEWS:9517 +#: ../../../build/NEWS:9740 msgid "" "`bpo-30794 `__: Added " "multiprocessing.Process.kill method to terminate using the SIGKILL signal on" " Unix." msgstr "" -#: ../../../build/NEWS:9520 ../../../build/NEWS:12223 +#: ../../../build/NEWS:9743 ../../../build/NEWS:12446 msgid "" "`bpo-30319 `__: socket.close() now " "ignores ECONNRESET error." msgstr "" -#: ../../../build/NEWS:9522 ../../../build/NEWS:12225 +#: ../../../build/NEWS:9745 ../../../build/NEWS:12448 msgid "" "`bpo-30828 `__: Fix out of bounds write " "in `asyncio.CFuture.remove_done_callback()`." msgstr "" -#: ../../../build/NEWS:9525 +#: ../../../build/NEWS:9748 msgid "" "`bpo-30302 `__: Use keywords in the " "``repr`` of ``datetime.timedelta``." msgstr "" -#: ../../../build/NEWS:9527 ../../../build/NEWS:12228 -#: ../../../build/NEWS:16553 +#: ../../../build/NEWS:9750 ../../../build/NEWS:12451 +#: ../../../build/NEWS:16776 msgid "" "`bpo-30807 `__: signal.setitimer() may " "disable the timer when passed a tiny value. Tiny values (such as 1e-6) are " @@ -16965,21 +17388,21 @@ msgid "" "timer instead of (re-)scheduling it." msgstr "" -#: ../../../build/NEWS:9534 ../../../build/NEWS:12235 -#: ../../../build/NEWS:16560 +#: ../../../build/NEWS:9757 ../../../build/NEWS:12458 +#: ../../../build/NEWS:16783 msgid "" "`bpo-30441 `__: Fix bug when modifying " "os.environ while iterating over it" msgstr "" -#: ../../../build/NEWS:9536 +#: ../../../build/NEWS:9759 msgid "" "`bpo-29585 `__: Avoid importing " "``sysconfig`` from ``site`` to improve startup speed. Python startup is " "about 5% faster on Linux and 30% faster on macOS." msgstr "" -#: ../../../build/NEWS:9539 +#: ../../../build/NEWS:9762 msgid "" "`bpo-29293 `__: Add missing parameter " "\"n\" on multiprocessing.Condition.notify(). The doc claims " @@ -16988,20 +17411,20 @@ msgid "" "sleepers to wake up) that threading.Condition.notify() accepts." msgstr "" -#: ../../../build/NEWS:9545 ../../../build/NEWS:12237 -#: ../../../build/NEWS:16562 +#: ../../../build/NEWS:9768 ../../../build/NEWS:12460 +#: ../../../build/NEWS:16785 msgid "" "`bpo-30532 `__: Fix email header value " "parser dropping folding white space in certain cases." msgstr "" -#: ../../../build/NEWS:9548 +#: ../../../build/NEWS:9771 msgid "" "`bpo-30596 `__: Add a ``close()`` method" " to ``multiprocessing.Process``." msgstr "" -#: ../../../build/NEWS:9550 ../../../build/NEWS:12159 +#: ../../../build/NEWS:9773 ../../../build/NEWS:12382 msgid "" "`bpo-9146 `__: Fix a segmentation fault " "in _hashopenssl when standard hash functions such as md5 are not available " @@ -17009,48 +17432,48 @@ msgid "" "environments." msgstr "" -#: ../../../build/NEWS:9554 ../../../build/NEWS:12969 -#: ../../../build/NEWS:16565 +#: ../../../build/NEWS:9777 ../../../build/NEWS:13192 +#: ../../../build/NEWS:16788 msgid "" "`bpo-29169 `__: Update zlib to 1.2.11." msgstr "" -#: ../../../build/NEWS:9556 ../../../build/NEWS:12201 -#: ../../../build/NEWS:16453 +#: ../../../build/NEWS:9779 ../../../build/NEWS:12424 +#: ../../../build/NEWS:16676 msgid "" "`bpo-30119 `__: ftplib.FTP.putline() now" " throws ValueError on commands that contains CR or LF. Patch by Dong-hee Na." msgstr "" -#: ../../../build/NEWS:9559 ../../../build/NEWS:12240 -#: ../../../build/NEWS:16567 +#: ../../../build/NEWS:9782 ../../../build/NEWS:12463 +#: ../../../build/NEWS:16790 msgid "" "`bpo-30879 `__: os.listdir() and " "os.scandir() now emit bytes names when called with bytes-like argument." msgstr "" -#: ../../../build/NEWS:9562 ../../../build/NEWS:12243 -#: ../../../build/NEWS:16570 +#: ../../../build/NEWS:9785 ../../../build/NEWS:12466 +#: ../../../build/NEWS:16793 msgid "" "`bpo-30746 `__: Prohibited the '=' " "character in environment variable names in ``os.putenv()`` and " "``os.spawn*()``." msgstr "" -#: ../../../build/NEWS:9565 +#: ../../../build/NEWS:9788 msgid "" "`bpo-30664 `__: The description of a " "unittest subtest now preserves the order of keyword arguments of " "TestCase.subTest()." msgstr "" -#: ../../../build/NEWS:9568 +#: ../../../build/NEWS:9791 msgid "" "`bpo-21071 `__: struct.Struct.format " "type is now :class:`str` instead of :class:`bytes`." msgstr "" -#: ../../../build/NEWS:9571 ../../../build/NEWS:12154 +#: ../../../build/NEWS:9794 ../../../build/NEWS:12377 msgid "" "`bpo-29212 `__: Fix " "concurrent.futures.thread.ThreadPoolExecutor threads to have a non repr() " @@ -17058,46 +17481,46 @@ msgid "" "will now identify themselves as \"ThreadPoolExecutor-y_n\"." msgstr "" -#: ../../../build/NEWS:9576 ../../../build/NEWS:12246 -#: ../../../build/NEWS:16573 +#: ../../../build/NEWS:9799 ../../../build/NEWS:12469 +#: ../../../build/NEWS:16796 msgid "" "`bpo-29755 `__: Fixed the lgettext() " "family of functions in the gettext module. They now always return bytes." msgstr "" -#: ../../../build/NEWS:9579 ../../../build/NEWS:12572 +#: ../../../build/NEWS:9802 ../../../build/NEWS:12795 msgid "" "`bpo-30616 `__: Functional API of enum " "allows to create empty enums. Patched by Dong-hee Na" msgstr "" -#: ../../../build/NEWS:9582 ../../../build/NEWS:12575 +#: ../../../build/NEWS:9805 ../../../build/NEWS:12798 msgid "" "`bpo-30038 `__: Fix race condition " "between signal delivery and wakeup file descriptor. Patch by Nathaniel " "Smith." msgstr "" -#: ../../../build/NEWS:9585 ../../../build/NEWS:12578 +#: ../../../build/NEWS:9808 ../../../build/NEWS:12801 msgid "" "`bpo-23894 `__: lib2to3 now recognizes " "``rb'...'`` and ``f'...'`` strings." msgstr "" -#: ../../../build/NEWS:9587 +#: ../../../build/NEWS:9810 msgid "" "`bpo-24744 `__: pkgutil.walk_packages " "function now raises ValueError if *path* is a string. Patch by Sanyam " "Khurana." msgstr "" -#: ../../../build/NEWS:9590 ../../../build/NEWS:16590 +#: ../../../build/NEWS:9813 ../../../build/NEWS:16813 msgid "" "`bpo-24484 `__: Avoid race condition in " "multiprocessing cleanup." msgstr "" -#: ../../../build/NEWS:9592 +#: ../../../build/NEWS:9815 msgid "" "`bpo-30589 `__: Fix " "multiprocessing.Process.exitcode to return the opposite of the signal number" @@ -17105,41 +17528,41 @@ msgid "" "\"forkserver\" method." msgstr "" -#: ../../../build/NEWS:9596 ../../../build/NEWS:12609 -#: ../../../build/NEWS:16592 +#: ../../../build/NEWS:9819 ../../../build/NEWS:12832 +#: ../../../build/NEWS:16815 msgid "" "`bpo-28994 `__: The traceback no longer " "displayed for SystemExit raised in a callback registered by atexit." msgstr "" -#: ../../../build/NEWS:9599 ../../../build/NEWS:12612 -#: ../../../build/NEWS:16595 +#: ../../../build/NEWS:9822 ../../../build/NEWS:12835 +#: ../../../build/NEWS:16818 msgid "" "`bpo-30508 `__: Don't log exceptions if " "Task/Future \"cancel()\" method was called." msgstr "" -#: ../../../build/NEWS:9602 +#: ../../../build/NEWS:9825 msgid "" "`bpo-30645 `__: Fix path calculation in " "`imp.load_package()`, fixing it for cases when a package is only shipped " "with bytecodes. Patch by Alexandru Ardelean." msgstr "" -#: ../../../build/NEWS:9606 +#: ../../../build/NEWS:9829 msgid "" "`bpo-11822 `__: The dis.dis() function " "now is able to disassemble nested code objects." msgstr "" -#: ../../../build/NEWS:9609 +#: ../../../build/NEWS:9832 msgid "" "`bpo-30624 `__: selectors does not take " "KeyboardInterrupt and SystemExit into account, leaving a fd in a bad state " "in case of error. Patch by Giampaolo Rodola'." msgstr "" -#: ../../../build/NEWS:9613 ../../../build/NEWS:12204 +#: ../../../build/NEWS:9836 ../../../build/NEWS:12427 msgid "" "`bpo-30595 `__: " "multiprocessing.Queue.get() with a timeout now polls its reader in non-" @@ -17147,147 +17570,147 @@ msgid "" "longer than the timeout." msgstr "" -#: ../../../build/NEWS:9617 ../../../build/NEWS:12615 -#: ../../../build/NEWS:16598 +#: ../../../build/NEWS:9840 ../../../build/NEWS:12838 +#: ../../../build/NEWS:16821 msgid "" "`bpo-28556 `__: Updates to typing " "module: Add generic AsyncContextManager, add support for ContextManager on " "all versions. Original PRs by Jelle Zijlstra and Ivan Levkivskyi" msgstr "" -#: ../../../build/NEWS:9621 ../../../build/NEWS:12594 +#: ../../../build/NEWS:9844 ../../../build/NEWS:12817 msgid "" "`bpo-30605 `__: re.compile() no longer " "raises a BytesWarning when compiling a bytes instance with misplaced inline " "modifier. Patch by Roy Williams." msgstr "" -#: ../../../build/NEWS:9624 ../../../build/NEWS:12619 -#: ../../../build/NEWS:16602 +#: ../../../build/NEWS:9847 ../../../build/NEWS:12842 +#: ../../../build/NEWS:16825 msgid "" "`bpo-29870 `__: Fix ssl sockets leaks " "when connection is aborted in asyncio/ssl implementation. Patch by Michaël " "Sghaïer." msgstr "" -#: ../../../build/NEWS:9627 ../../../build/NEWS:12622 -#: ../../../build/NEWS:16605 +#: ../../../build/NEWS:9850 ../../../build/NEWS:12845 +#: ../../../build/NEWS:16828 msgid "" "`bpo-29743 `__: Closing transport during" " handshake process leaks open socket. Patch by Nikolay Kim" msgstr "" -#: ../../../build/NEWS:9630 ../../../build/NEWS:12625 -#: ../../../build/NEWS:16608 +#: ../../../build/NEWS:9853 ../../../build/NEWS:12848 +#: ../../../build/NEWS:16831 msgid "" "`bpo-27585 `__: Fix waiter cancellation " "in asyncio.Lock. Patch by Mathieu Sornay." msgstr "" -#: ../../../build/NEWS:9633 +#: ../../../build/NEWS:9856 msgid "" "`bpo-30014 `__: modify() method of " "poll(), epoll() and devpoll() based classes of selectors module is around " "10% faster. Patch by Giampaolo Rodola'." msgstr "" -#: ../../../build/NEWS:9636 ../../../build/NEWS:12628 -#: ../../../build/NEWS:16611 +#: ../../../build/NEWS:9859 ../../../build/NEWS:12851 +#: ../../../build/NEWS:16834 msgid "" "`bpo-30418 `__: On Windows, " "subprocess.Popen.communicate() now also ignore EINVAL on stdin.write() if " "the child process is still running but closed the pipe." msgstr "" -#: ../../../build/NEWS:9640 +#: ../../../build/NEWS:9863 msgid "" "`bpo-30463 `__: Addded empty __slots__ " "to abc.ABC. This allows subclassers to deny __dict__ and __weakref__ " "creation. Patch by Aaron Hall." msgstr "" -#: ../../../build/NEWS:9643 +#: ../../../build/NEWS:9866 msgid "" "`bpo-30520 `__: Loggers are now " "pickleable." msgstr "" -#: ../../../build/NEWS:9645 ../../../build/NEWS:12639 +#: ../../../build/NEWS:9868 ../../../build/NEWS:12862 msgid "" "`bpo-30557 `__: faulthandler now " "correctly filters and displays exception codes on Windows" msgstr "" -#: ../../../build/NEWS:9648 +#: ../../../build/NEWS:9871 msgid "" "`bpo-30526 `__: Add " "TextIOWrapper.reconfigure() and a TextIOWrapper.write_through attribute." msgstr "" -#: ../../../build/NEWS:9651 +#: ../../../build/NEWS:9874 msgid "" "`bpo-30245 `__: Fix possible overflow " "when organize struct.pack_into error message. Patch by Yuan Liu." msgstr "" -#: ../../../build/NEWS:9654 ../../../build/NEWS:12642 -#: ../../../build/NEWS:16615 +#: ../../../build/NEWS:9877 ../../../build/NEWS:12865 +#: ../../../build/NEWS:16838 msgid "" "`bpo-30378 `__: Fix the problem that " "logging.handlers.SysLogHandler cannot handle IPv6 addresses." msgstr "" -#: ../../../build/NEWS:9657 +#: ../../../build/NEWS:9880 msgid "" "`bpo-16500 `__: Allow registering at-" "fork handlers." msgstr "" -#: ../../../build/NEWS:9659 +#: ../../../build/NEWS:9882 msgid "" "`bpo-30470 `__: Deprecate invalid ctypes" " call protection on Windows. Patch by Mariatta Wijaya." msgstr "" -#: ../../../build/NEWS:9662 ../../../build/NEWS:12648 -#: ../../../build/NEWS:16621 +#: ../../../build/NEWS:9885 ../../../build/NEWS:12871 +#: ../../../build/NEWS:16844 msgid "" "`bpo-30414 `__: " "multiprocessing.Queue._feed background running thread do not break from main" " loop on exception." msgstr "" -#: ../../../build/NEWS:9665 ../../../build/NEWS:12651 -#: ../../../build/NEWS:16624 +#: ../../../build/NEWS:9888 ../../../build/NEWS:12874 +#: ../../../build/NEWS:16847 msgid "" "`bpo-30003 `__: Fix handling escape " "characters in HZ codec. Based on patch by Ma Lin." msgstr "" -#: ../../../build/NEWS:9668 ../../../build/NEWS:12583 -#: ../../../build/NEWS:16583 +#: ../../../build/NEWS:9891 ../../../build/NEWS:12806 +#: ../../../build/NEWS:16806 msgid "" "`bpo-30149 `__: inspect.signature() now " "supports callables with variable-argument parameters wrapped with " "partialmethod. Patch by Dong-hee Na." msgstr "" -#: ../../../build/NEWS:9672 +#: ../../../build/NEWS:9895 msgid "" "`bpo-30436 `__: importlib.find_spec() " "raises ModuleNotFoundError instead of AttributeError if the specified parent" " module is not a package (i.e. lacks a __path__ attribute)." msgstr "" -#: ../../../build/NEWS:9676 ../../../build/NEWS:12654 -#: ../../../build/NEWS:16627 +#: ../../../build/NEWS:9899 ../../../build/NEWS:12877 +#: ../../../build/NEWS:16850 msgid "" "`bpo-30301 `__: Fix AttributeError when " "using SimpleQueue.empty() under *spawn* and *forkserver* start methods." msgstr "" -#: ../../../build/NEWS:9679 ../../../build/NEWS:12661 -#: ../../../build/NEWS:16634 +#: ../../../build/NEWS:9902 ../../../build/NEWS:12884 +#: ../../../build/NEWS:16857 msgid "" "`bpo-30375 `__: Warnings emitted when " "compile a regular expression now always point to the line in the user code." @@ -17295,8 +17718,8 @@ msgid "" "inside of groups or conditionals." msgstr "" -#: ../../../build/NEWS:9683 ../../../build/NEWS:12657 -#: ../../../build/NEWS:16630 +#: ../../../build/NEWS:9906 ../../../build/NEWS:12880 +#: ../../../build/NEWS:16853 msgid "" "`bpo-30329 `__: imaplib and poplib now " "catch the Windows socket WSAEINVAL error (code 10022) on " @@ -17304,7 +17727,7 @@ msgid "" "sometimes on SSL connections." msgstr "" -#: ../../../build/NEWS:9687 +#: ../../../build/NEWS:9910 msgid "" "`bpo-29196 `__: Removed previously " "deprecated in Python 2.4 classes Plist, Dict and _InternalDict in the " @@ -17313,28 +17736,28 @@ msgid "" "access to access items of these dictionaries." msgstr "" -#: ../../../build/NEWS:9692 +#: ../../../build/NEWS:9915 msgid "" "`bpo-9850 `__: The :mod:`macpath` is now " "deprecated and will be removed in Python 3.8." msgstr "" -#: ../../../build/NEWS:9695 +#: ../../../build/NEWS:9918 msgid "" "`bpo-30299 `__: Compiling regular " "expression in debug mode on CPython now displays the compiled bytecode in " "human readable form." msgstr "" -#: ../../../build/NEWS:9698 ../../../build/NEWS:12665 -#: ../../../build/NEWS:16638 +#: ../../../build/NEWS:9921 ../../../build/NEWS:12888 +#: ../../../build/NEWS:16861 msgid "" "`bpo-30048 `__: Fixed ``Task.cancel()`` " "can be ignored when the task is running coroutine and the coroutine returned" " without any more ``await``." msgstr "" -#: ../../../build/NEWS:9701 ../../../build/NEWS:12668 +#: ../../../build/NEWS:9924 ../../../build/NEWS:12891 msgid "" "`bpo-30266 `__: " "contextlib.AbstractContextManager now supports anti-registration by setting " @@ -17342,14 +17765,14 @@ msgid "" "`bpo-25958 `__. Patch by Jelle Zijlstra." msgstr "" -#: ../../../build/NEWS:9705 +#: ../../../build/NEWS:9928 msgid "" "`bpo-30340 `__: Enhanced regular " "expressions optimization. This increased the performance of matching some " "patterns up to 25 times." msgstr "" -#: ../../../build/NEWS:9708 ../../../build/NEWS:12672 +#: ../../../build/NEWS:9931 ../../../build/NEWS:12895 msgid "" "`bpo-30298 `__: Weaken the condition of " "deprecation warnings for inline modifiers. Now allowed several subsequential" @@ -17358,20 +17781,20 @@ msgid "" "inline modifiers (e.g. ``'(?x) (?i) (?s)...'``)." msgstr "" -#: ../../../build/NEWS:9714 +#: ../../../build/NEWS:9937 msgid "" "`bpo-30285 `__: Optimized case-" "insensitive matching and searching of regular expressions." msgstr "" -#: ../../../build/NEWS:9717 ../../../build/NEWS:12678 -#: ../../../build/NEWS:16641 +#: ../../../build/NEWS:9940 ../../../build/NEWS:12901 +#: ../../../build/NEWS:16864 msgid "" "`bpo-29990 `__: Fix range checking in " "GB18030 decoder. Original patch by Ma Lin." msgstr "" -#: ../../../build/NEWS:9720 +#: ../../../build/NEWS:9943 msgid "" "`bpo-29979 `__: rewrite " "cgi.parse_multipart, reusing the FieldStorage class and making its results " @@ -17379,8 +17802,8 @@ msgid "" "Patch by Pierre Quentel." msgstr "" -#: ../../../build/NEWS:9724 ../../../build/NEWS:12684 -#: ../../../build/NEWS:16647 +#: ../../../build/NEWS:9947 ../../../build/NEWS:12907 +#: ../../../build/NEWS:16870 msgid "" "`bpo-30243 `__: Removed the __init__ " "methods of _json's scanner and encoder. Misusing them could cause memory " @@ -17388,7 +17811,7 @@ msgid "" "initialized in the __new__ methods." msgstr "" -#: ../../../build/NEWS:9728 +#: ../../../build/NEWS:9951 msgid "" "`bpo-30215 `__: Compiled regular " "expression objects with the re.LOCALE flag no longer depend on the locale at" @@ -17396,42 +17819,42 @@ msgid "" "matching." msgstr "" -#: ../../../build/NEWS:9732 ../../../build/NEWS:12688 -#: ../../../build/NEWS:16651 +#: ../../../build/NEWS:9955 ../../../build/NEWS:12911 +#: ../../../build/NEWS:16874 msgid "" "`bpo-30185 `__: Avoid KeyboardInterrupt " "tracebacks in forkserver helper process when Ctrl-C is received." msgstr "" -#: ../../../build/NEWS:9735 +#: ../../../build/NEWS:9958 msgid "" "`bpo-30103 `__: binascii.b2a_uu() and " "uu.encode() now support using ``'`'`` as zero instead of space." msgstr "" -#: ../../../build/NEWS:9738 ../../../build/NEWS:12691 -#: ../../../build/NEWS:16654 +#: ../../../build/NEWS:9961 ../../../build/NEWS:12914 +#: ../../../build/NEWS:16877 msgid "" "`bpo-28556 `__: Various updates to " "typing module: add typing.NoReturn type, use WrapperDescriptorType, minor " "bug-fixes. Original PRs by Jim Fasarakis-Hilliard and Ivan Levkivskyi." msgstr "" -#: ../../../build/NEWS:9742 ../../../build/NEWS:12695 -#: ../../../build/NEWS:16658 +#: ../../../build/NEWS:9965 ../../../build/NEWS:12918 +#: ../../../build/NEWS:16881 msgid "" "`bpo-30205 `__: Fix getsockname() for " "unbound AF_UNIX sockets on Linux." msgstr "" -#: ../../../build/NEWS:9744 +#: ../../../build/NEWS:9967 msgid "" "`bpo-30228 `__: The seek() and tell() " "methods of io.FileIO now set the internal seekable attribute to avoid one " "syscall on open() (in buffered or text mode)." msgstr "" -#: ../../../build/NEWS:9748 +#: ../../../build/NEWS:9971 msgid "" "`bpo-30190 `__: unittest's " "assertAlmostEqual and assertNotAlmostEqual provide a better message in case " @@ -17439,41 +17862,41 @@ msgid "" "(patch by Giampaolo Rodola')" msgstr "" -#: ../../../build/NEWS:9752 +#: ../../../build/NEWS:9975 msgid "" "`bpo-30101 `__: Add support for " "curses.A_ITALIC." msgstr "" -#: ../../../build/NEWS:9754 ../../../build/NEWS:12632 +#: ../../../build/NEWS:9977 ../../../build/NEWS:12855 msgid "" "`bpo-29822 `__: inspect.isabstract() now" " works during __init_subclass__. Patch by Nate Soares." msgstr "" -#: ../../../build/NEWS:9757 ../../../build/NEWS:12645 -#: ../../../build/NEWS:16618 +#: ../../../build/NEWS:9980 ../../../build/NEWS:12868 +#: ../../../build/NEWS:16841 msgid "" "`bpo-29960 `__: Preserve generator state" " when _random.Random.setstate() raises an exception. Patch by Bryan Olson." msgstr "" -#: ../../../build/NEWS:9760 ../../../build/NEWS:12697 -#: ../../../build/NEWS:16660 +#: ../../../build/NEWS:9983 ../../../build/NEWS:12920 +#: ../../../build/NEWS:16883 msgid "" "`bpo-30070 `__: Fixed leaks and crashes " "in errors handling in the parser module." msgstr "" -#: ../../../build/NEWS:9763 +#: ../../../build/NEWS:9986 msgid "" "`bpo-22352 `__: Column widths in the " "output of dis.dis() are now adjusted for large line numbers and instruction " "offsets." msgstr "" -#: ../../../build/NEWS:9766 ../../../build/NEWS:12700 -#: ../../../build/NEWS:16663 +#: ../../../build/NEWS:9989 ../../../build/NEWS:12923 +#: ../../../build/NEWS:16886 msgid "" "`bpo-30061 `__: Fixed crashes in IOBase " "methods __next__() and readlines() when readline() or __next__() " @@ -17482,42 +17905,42 @@ msgid "" "PyMapping_Size()." msgstr "" -#: ../../../build/NEWS:9771 +#: ../../../build/NEWS:9994 msgid "" "`bpo-30218 `__: Fix PathLike support for" " shutil.unpack_archive. Patch by Jelle Zijlstra." msgstr "" -#: ../../../build/NEWS:9774 +#: ../../../build/NEWS:9997 msgid "" "`bpo-10076 `__: Compiled regular " "expression and match objects in the re module now support copy.copy() and " "copy.deepcopy() (they are considered atomic)." msgstr "" -#: ../../../build/NEWS:9777 ../../../build/NEWS:12709 -#: ../../../build/NEWS:16668 +#: ../../../build/NEWS:10000 ../../../build/NEWS:12932 +#: ../../../build/NEWS:16891 msgid "" "`bpo-30068 `__: _io._IOBase.readlines " "will check if it's closed first when hint is present." msgstr "" -#: ../../../build/NEWS:9780 ../../../build/NEWS:12712 -#: ../../../build/NEWS:16671 +#: ../../../build/NEWS:10003 ../../../build/NEWS:12935 +#: ../../../build/NEWS:16894 msgid "" "`bpo-29694 `__: Fixed race condition in " "pathlib mkdir with flags parents=True. Patch by Armin Rigo." msgstr "" -#: ../../../build/NEWS:9783 ../../../build/NEWS:12715 -#: ../../../build/NEWS:16674 +#: ../../../build/NEWS:10006 ../../../build/NEWS:12938 +#: ../../../build/NEWS:16897 msgid "" "`bpo-29692 `__: Fixed arbitrary " "unchaining of RuntimeError exceptions in contextlib.contextmanager. Patch " "by Siddharth Velankar." msgstr "" -#: ../../../build/NEWS:9786 +#: ../../../build/NEWS:10009 msgid "" "`bpo-26187 `__: Test that sqlite3 trace " "callback is not called multiple times when schema is changing. Indirectly " @@ -17525,74 +17948,74 @@ msgid "" "`__. Patch by Aviv Palivoda." msgstr "" -#: ../../../build/NEWS:9790 ../../../build/NEWS:12705 +#: ../../../build/NEWS:10013 ../../../build/NEWS:12928 msgid "" "`bpo-30017 `__: Allowed calling the " "close() method of the zip entry writer object multiple times. Writing to a " "closed writer now always produces a ValueError." msgstr "" -#: ../../../build/NEWS:9794 ../../../build/NEWS:12718 -#: ../../../build/NEWS:16677 +#: ../../../build/NEWS:10017 ../../../build/NEWS:12941 +#: ../../../build/NEWS:16900 msgid "" "`bpo-29998 `__: Pickling and copying " "ImportError now preserves name and path attributes." msgstr "" -#: ../../../build/NEWS:9797 +#: ../../../build/NEWS:10020 msgid "" "`bpo-29995 `__: re.escape() now escapes " "only regex special characters." msgstr "" -#: ../../../build/NEWS:9799 +#: ../../../build/NEWS:10022 msgid "" "`bpo-29962 `__: Add math.remainder " "operation, implementing remainder as specified in IEEE 754." msgstr "" -#: ../../../build/NEWS:9802 +#: ../../../build/NEWS:10025 msgid "" "`bpo-29649 `__: Improve " "struct.pack_into() exception messages for problems with the buffer size and " "offset. Patch by Andrew Nester." msgstr "" -#: ../../../build/NEWS:9805 +#: ../../../build/NEWS:10028 msgid "" "`bpo-29654 `__: Support If-Modified-" "Since HTTP header (browser cache). Patch by Pierre Quentel." msgstr "" -#: ../../../build/NEWS:9808 ../../../build/NEWS:12591 -#: ../../../build/NEWS:16587 +#: ../../../build/NEWS:10031 ../../../build/NEWS:12814 +#: ../../../build/NEWS:16810 msgid "" "`bpo-29931 `__: Fixed comparison check " "for ipaddress.ip_interface objects. Patch by Sanjay Sundaresan." msgstr "" -#: ../../../build/NEWS:9811 ../../../build/NEWS:12721 +#: ../../../build/NEWS:10034 ../../../build/NEWS:12944 msgid "" "`bpo-29953 `__: Fixed memory leaks in " "the replace() method of datetime and time objects when pass out of bound " "fold argument." msgstr "" -#: ../../../build/NEWS:9814 ../../../build/NEWS:12724 -#: ../../../build/NEWS:16680 +#: ../../../build/NEWS:10037 ../../../build/NEWS:12947 +#: ../../../build/NEWS:16903 msgid "" "`bpo-29942 `__: Fix a crash in " "itertools.chain.from_iterable when encountering long runs of empty " "iterables." msgstr "" -#: ../../../build/NEWS:9817 +#: ../../../build/NEWS:10040 msgid "" "`bpo-10030 `__: Sped up reading " "encrypted ZIP files by 2 times." msgstr "" -#: ../../../build/NEWS:9819 +#: ../../../build/NEWS:10042 msgid "" "`bpo-29204 `__: Element.getiterator() " "and the html parameter of XMLParser() were deprecated only in the " @@ -17600,22 +18023,22 @@ msgid "" "emits a deprecation warning." msgstr "" -#: ../../../build/NEWS:9823 ../../../build/NEWS:12727 -#: ../../../build/NEWS:16683 +#: ../../../build/NEWS:10046 ../../../build/NEWS:12950 +#: ../../../build/NEWS:16906 msgid "" "`bpo-27863 `__: Fixed multiple crashes " "in ElementTree caused by race conditions and wrong types." msgstr "" -#: ../../../build/NEWS:9826 +#: ../../../build/NEWS:10049 msgid "" "`bpo-25996 `__: Added support of file " "descriptors in os.scandir() on Unix. os.fwalk() is sped up by 2 times by " "using os.scandir()." msgstr "" -#: ../../../build/NEWS:9829 ../../../build/NEWS:12730 -#: ../../../build/NEWS:16686 +#: ../../../build/NEWS:10052 ../../../build/NEWS:12953 +#: ../../../build/NEWS:16909 msgid "" "`bpo-28699 `__: Fixed a bug in pools in " "multiprocessing.pool that raising an exception at the very first of an " @@ -17623,270 +18046,270 @@ msgid "" "Potts and Xiang Zhang." msgstr "" -#: ../../../build/NEWS:9833 ../../../build/NEWS:12580 -#: ../../../build/NEWS:16580 +#: ../../../build/NEWS:10056 ../../../build/NEWS:12803 +#: ../../../build/NEWS:16803 msgid "" "`bpo-23890 `__: " "unittest.TestCase.assertRaises() now manually breaks a reference cycle to " "not keep objects alive longer than expected." msgstr "" -#: ../../../build/NEWS:9836 +#: ../../../build/NEWS:10059 msgid "" "`bpo-29901 `__: The zipapp module now " "supports general path-like objects, not just pathlib.Path." msgstr "" -#: ../../../build/NEWS:9839 ../../../build/NEWS:12734 -#: ../../../build/NEWS:16690 +#: ../../../build/NEWS:10062 ../../../build/NEWS:12957 +#: ../../../build/NEWS:16913 msgid "" "`bpo-25803 `__: Avoid incorrect errors " "raised by Path.mkdir(exist_ok=True) when the OS gives priority to errors " "such as EACCES over EEXIST." msgstr "" -#: ../../../build/NEWS:9842 ../../../build/NEWS:12737 -#: ../../../build/NEWS:16693 +#: ../../../build/NEWS:10065 ../../../build/NEWS:12960 +#: ../../../build/NEWS:16916 msgid "" "`bpo-29861 `__: Release references to " "tasks, their arguments and their results as soon as they are finished in " "multiprocessing.Pool." msgstr "" -#: ../../../build/NEWS:9845 +#: ../../../build/NEWS:10068 msgid "" "`bpo-19930 `__: The mode argument of " "os.makedirs() no longer affects the file permission bits of newly-created " "intermediate-level directories." msgstr "" -#: ../../../build/NEWS:9848 ../../../build/NEWS:12740 -#: ../../../build/NEWS:16696 +#: ../../../build/NEWS:10071 ../../../build/NEWS:12963 +#: ../../../build/NEWS:16919 msgid "" "`bpo-29884 `__: faulthandler: Restore " "the old sigaltstack during teardown. Patch by Christophe Zeitouny." msgstr "" -#: ../../../build/NEWS:9851 ../../../build/NEWS:12743 -#: ../../../build/NEWS:16699 +#: ../../../build/NEWS:10074 ../../../build/NEWS:12966 +#: ../../../build/NEWS:16922 msgid "" "`bpo-25455 `__: Fixed crashes in repr of" " recursive buffered file-like objects." msgstr "" -#: ../../../build/NEWS:9853 ../../../build/NEWS:12745 -#: ../../../build/NEWS:16701 +#: ../../../build/NEWS:10076 ../../../build/NEWS:12968 +#: ../../../build/NEWS:16924 msgid "" "`bpo-29800 `__: Fix crashes in " "partial.__repr__ if the keys of partial.keywords are not strings. Patch by " "Michael Seifert." msgstr "" -#: ../../../build/NEWS:9856 ../../../build/NEWS:12751 -#: ../../../build/NEWS:16707 +#: ../../../build/NEWS:10079 ../../../build/NEWS:12974 +#: ../../../build/NEWS:16930 msgid "" "`bpo-8256 `__: Fixed possible failing or " "crashing input() if attributes \"encoding\" or \"errors\" of sys.stdin or " "sys.stdout are not set or are not strings." msgstr "" -#: ../../../build/NEWS:9860 +#: ../../../build/NEWS:10083 msgid "" "`bpo-28692 `__: Using non-integer value " "for selecting a plural form in gettext is now deprecated." msgstr "" -#: ../../../build/NEWS:9863 +#: ../../../build/NEWS:10086 msgid "" "`bpo-26121 `__: Use C library " "implementation for math functions erf() and erfc()." msgstr "" -#: ../../../build/NEWS:9866 +#: ../../../build/NEWS:10089 msgid "" "`bpo-29619 `__: os.stat() and " "os.DirEntry.inode() now convert inode (st_ino) using unsigned integers." msgstr "" -#: ../../../build/NEWS:9869 +#: ../../../build/NEWS:10092 msgid "" "`bpo-28298 `__: Fix a bug that prevented" " array 'Q', 'L' and 'I' from accepting big intables (objects that have " "__int__) as elements." msgstr "" -#: ../../../build/NEWS:9872 +#: ../../../build/NEWS:10095 msgid "" "`bpo-29645 `__: Speed up importing the " "webbrowser module. webbrowser.register() is now thread-safe." msgstr "" -#: ../../../build/NEWS:9875 ../../../build/NEWS:12759 +#: ../../../build/NEWS:10098 ../../../build/NEWS:12982 msgid "" "`bpo-28231 `__: The zipfile module now " "accepts path-like objects for external paths." msgstr "" -#: ../../../build/NEWS:9878 ../../../build/NEWS:12762 +#: ../../../build/NEWS:10101 ../../../build/NEWS:12985 msgid "" "`bpo-26915 `__: index() and count() " "methods of collections.abc.Sequence now check identity before checking " "equality when do comparisons." msgstr "" -#: ../../../build/NEWS:9881 +#: ../../../build/NEWS:10104 msgid "" "`bpo-28682 `__: Added support for bytes " "paths in os.fwalk()." msgstr "" -#: ../../../build/NEWS:9883 +#: ../../../build/NEWS:10106 msgid "" "`bpo-29728 `__: Add new " ":data:`socket.TCP_NOTSENT_LOWAT` (Linux 3.12) constant. Patch by Nathaniel " "J. Smith." msgstr "" -#: ../../../build/NEWS:9886 ../../../build/NEWS:12971 +#: ../../../build/NEWS:10109 ../../../build/NEWS:13194 msgid "" "`bpo-29623 `__: Allow use of path-like " "object as a single argument in ConfigParser.read(). Patch by David Ellis." msgstr "" -#: ../../../build/NEWS:9889 +#: ../../../build/NEWS:10112 msgid "" "`bpo-9303 `__: Migrate sqlite3 module to " "_v2 API. Patch by Aviv Palivoda." msgstr "" -#: ../../../build/NEWS:9891 ../../../build/NEWS:12974 +#: ../../../build/NEWS:10114 ../../../build/NEWS:13197 msgid "" "`bpo-28963 `__: Fix out of bound " "iteration in asyncio.Future.remove_done_callback implemented in C." msgstr "" -#: ../../../build/NEWS:9894 ../../../build/NEWS:12977 -#: ../../../build/NEWS:16719 +#: ../../../build/NEWS:10117 ../../../build/NEWS:13200 +#: ../../../build/NEWS:16942 msgid "" "`bpo-29704 `__: " "asyncio.subprocess.SubprocessStreamProtocol no longer closes before all " "pipes are closed." msgstr "" -#: ../../../build/NEWS:9897 ../../../build/NEWS:12980 +#: ../../../build/NEWS:10120 ../../../build/NEWS:13203 msgid "" "`bpo-29271 `__: Fix Task.current_task " "and Task.all_tasks implemented in C to accept None argument as their pure " "Python implementation." msgstr "" -#: ../../../build/NEWS:9900 ../../../build/NEWS:12983 -#: ../../../build/NEWS:16722 +#: ../../../build/NEWS:10123 ../../../build/NEWS:13206 +#: ../../../build/NEWS:16945 msgid "" "`bpo-29703 `__: Fix asyncio to support " "instantiation of new event loops in child processes." msgstr "" -#: ../../../build/NEWS:9903 ../../../build/NEWS:12765 -#: ../../../build/NEWS:16715 +#: ../../../build/NEWS:10126 ../../../build/NEWS:12988 +#: ../../../build/NEWS:16938 msgid "" "`bpo-29615 `__: SimpleXMLRPCDispatcher " "no longer chains KeyError (or any other exception) to exception(s) raised in" " the dispatched methods. Patch by Petr Motejlek." msgstr "" -#: ../../../build/NEWS:9907 +#: ../../../build/NEWS:10130 msgid "" "`bpo-7769 `__: Method register_function()" " of xmlrpc.server.SimpleXMLRPCDispatcher and its subclasses can now be used " "as a decorator." msgstr "" -#: ../../../build/NEWS:9911 ../../../build/NEWS:12986 -#: ../../../build/NEWS:16725 +#: ../../../build/NEWS:10134 ../../../build/NEWS:13209 +#: ../../../build/NEWS:16948 msgid "" "`bpo-29376 `__: Fix assertion error in " "threading._DummyThread.is_alive()." msgstr "" -#: ../../../build/NEWS:9913 ../../../build/NEWS:12988 +#: ../../../build/NEWS:10136 ../../../build/NEWS:13211 msgid "" "`bpo-28624 `__: Add a test that checks " "that cwd parameter of Popen() accepts PathLike objects. Patch by Sayan " "Chowdhury." msgstr "" -#: ../../../build/NEWS:9916 ../../../build/NEWS:12991 +#: ../../../build/NEWS:10139 ../../../build/NEWS:13214 msgid "" "`bpo-28518 `__: Start a transaction " "implicitly before a DML statement. Patch by Aviv Palivoda." msgstr "" -#: ../../../build/NEWS:9919 ../../../build/NEWS:12748 -#: ../../../build/NEWS:16704 +#: ../../../build/NEWS:10142 ../../../build/NEWS:12971 +#: ../../../build/NEWS:16927 msgid "" "`bpo-29742 `__: get_extra_info() raises " "exception if get called on closed ssl transport. Patch by Nikolay Kim." msgstr "" -#: ../../../build/NEWS:9922 +#: ../../../build/NEWS:10145 msgid "" "`bpo-16285 `__: urllib.parse.quote is " "now based on RFC 3986 and hence includes '~' in the set of characters that " "is not quoted by default. Patch by Christian Theune and Ratnadeep Debnath." msgstr "" -#: ../../../build/NEWS:9926 ../../../build/NEWS:12994 -#: ../../../build/NEWS:16733 +#: ../../../build/NEWS:10149 ../../../build/NEWS:13217 +#: ../../../build/NEWS:16956 msgid "" "`bpo-29532 `__: Altering a kwarg " "dictionary passed to functools.partial() no longer affects a partial object " "after creation." msgstr "" -#: ../../../build/NEWS:9929 ../../../build/NEWS:12997 -#: ../../../build/NEWS:16727 +#: ../../../build/NEWS:10152 ../../../build/NEWS:13220 +#: ../../../build/NEWS:16950 msgid "" "`bpo-29110 `__: Fix file object leak in " "aifc.open() when file is given as a filesystem path and is not in valid AIFF" " format. Patch by Anthony Zhang." msgstr "" -#: ../../../build/NEWS:9932 +#: ../../../build/NEWS:10155 msgid "" "`bpo-22807 `__: Add uuid.SafeUUID and " "uuid.UUID.is_safe to relay information from the platform about whether " "generated UUIDs are generated with a multiprocessing safe method." msgstr "" -#: ../../../build/NEWS:9936 +#: ../../../build/NEWS:10159 msgid "" "`bpo-29576 `__: Improve some " "deprecations in importlib. Some deprecated methods now emit " "DeprecationWarnings and have better descriptive messages." msgstr "" -#: ../../../build/NEWS:9939 +#: ../../../build/NEWS:10162 msgid "" "`bpo-29534 `__: Fixed different " "behaviour of Decimal.from_float() for _decimal and _pydecimal. Thanks Andrew" " Nester." msgstr "" -#: ../../../build/NEWS:9942 +#: ../../../build/NEWS:10165 msgid "" "`bpo-10379 `__: locale.format_string now" " supports the 'monetary' keyword argument, and locale.format is deprecated." msgstr "" -#: ../../../build/NEWS:9945 +#: ../../../build/NEWS:10168 msgid "" "`bpo-29851 `__: importlib.reload() now " "raises ModuleNotFoundError if the module lacks a spec." msgstr "" -#: ../../../build/NEWS:9948 ../../../build/NEWS:13000 -#: ../../../build/NEWS:16736 +#: ../../../build/NEWS:10171 ../../../build/NEWS:13223 +#: ../../../build/NEWS:16959 msgid "" "`bpo-28556 `__: Various updates to " "typing module: typing.Counter, typing.ChainMap, improved ABC caching, etc. " @@ -17894,119 +18317,119 @@ msgid "" "Langa." msgstr "" -#: ../../../build/NEWS:9952 ../../../build/NEWS:13004 -#: ../../../build/NEWS:16740 +#: ../../../build/NEWS:10175 ../../../build/NEWS:13227 +#: ../../../build/NEWS:16963 msgid "" "`bpo-29100 `__: Fix " "datetime.fromtimestamp() regression introduced in Python 3.6.0: check " "minimum and maximum years." msgstr "" -#: ../../../build/NEWS:9955 ../../../build/NEWS:13010 -#: ../../../build/NEWS:16746 +#: ../../../build/NEWS:10178 ../../../build/NEWS:13233 +#: ../../../build/NEWS:16969 msgid "" "`bpo-29416 `__: Prevent infinite loop in" " pathlib.Path.mkdir" msgstr "" -#: ../../../build/NEWS:9957 ../../../build/NEWS:13012 -#: ../../../build/NEWS:16748 +#: ../../../build/NEWS:10180 ../../../build/NEWS:13235 +#: ../../../build/NEWS:16971 msgid "" "`bpo-29444 `__: Fixed out-of-bounds " "buffer access in the group() method of the match object. Based on patch by " "WGH." msgstr "" -#: ../../../build/NEWS:9960 +#: ../../../build/NEWS:10183 msgid "" "`bpo-29377 `__: Add " "WrapperDescriptorType, MethodWrapperType, and MethodDescriptorType built-in " "types to types module. Original patch by Manuel Krebber." msgstr "" -#: ../../../build/NEWS:9964 +#: ../../../build/NEWS:10187 msgid "" "`bpo-29218 `__: Unused install_misc " "command is now removed. It has been documented as unused since 2000. Patch" " by Eric N. Vander Weele." msgstr "" -#: ../../../build/NEWS:9967 +#: ../../../build/NEWS:10190 msgid "" "`bpo-29368 `__: The extend() method is " "now called instead of the append() method when unpickle collections.deque " "and other list-like objects. This can speed up unpickling to 2 times." msgstr "" -#: ../../../build/NEWS:9971 +#: ../../../build/NEWS:10194 msgid "" "`bpo-29338 `__: The help of a builtin or" " extension class now includes the constructor signature if " "__text_signature__ is provided for the class." msgstr "" -#: ../../../build/NEWS:9974 ../../../build/NEWS:13015 -#: ../../../build/NEWS:16751 +#: ../../../build/NEWS:10197 ../../../build/NEWS:13238 +#: ../../../build/NEWS:16974 msgid "" "`bpo-29335 `__: Fix " "subprocess.Popen.wait() when the child process has exited to a stopped " "instead of terminated state (ex: when under ptrace)." msgstr "" -#: ../../../build/NEWS:9977 ../../../build/NEWS:13018 -#: ../../../build/NEWS:16754 +#: ../../../build/NEWS:10200 ../../../build/NEWS:13241 +#: ../../../build/NEWS:16977 msgid "" "`bpo-29290 `__: Fix a regression in " "argparse that help messages would wrap at non-breaking spaces." msgstr "" -#: ../../../build/NEWS:9980 ../../../build/NEWS:13021 -#: ../../../build/NEWS:16757 +#: ../../../build/NEWS:10203 ../../../build/NEWS:13244 +#: ../../../build/NEWS:16980 msgid "" "`bpo-28735 `__: Fixed the comparison of " "mock.MagickMock with mock.ANY." msgstr "" -#: ../../../build/NEWS:9982 +#: ../../../build/NEWS:10205 msgid "" "`bpo-29197 `__: Removed deprecated " "function ntpath.splitunc()." msgstr "" -#: ../../../build/NEWS:9984 +#: ../../../build/NEWS:10207 msgid "" "`bpo-29210 `__: Removed support of " "deprecated argument \"exclude\" in tarfile.TarFile.add()." msgstr "" -#: ../../../build/NEWS:9987 ../../../build/NEWS:13026 -#: ../../../build/NEWS:16761 +#: ../../../build/NEWS:10210 ../../../build/NEWS:13249 +#: ../../../build/NEWS:16984 msgid "" "`bpo-29219 `__: Fixed infinite recursion" " in the repr of uninitialized ctypes.CDLL instances." msgstr "" -#: ../../../build/NEWS:9990 +#: ../../../build/NEWS:10213 msgid "" "`bpo-29192 `__: Removed deprecated " "features in the http.cookies module." msgstr "" -#: ../../../build/NEWS:9992 +#: ../../../build/NEWS:10215 msgid "" "`bpo-29193 `__: A format string argument" " for string.Formatter.format() is now positional-only." msgstr "" -#: ../../../build/NEWS:9995 +#: ../../../build/NEWS:10218 msgid "" "`bpo-29195 `__: Removed support of " "deprecated undocumented keyword arguments in methods of regular expression " "objects." msgstr "" -#: ../../../build/NEWS:9998 ../../../build/NEWS:13031 -#: ../../../build/NEWS:16764 +#: ../../../build/NEWS:10221 ../../../build/NEWS:13254 +#: ../../../build/NEWS:16987 msgid "" "`bpo-28969 `__: Fixed race condition in " "C implementation of functools.lru_cache. KeyError could be raised when " @@ -18014,108 +18437,108 @@ msgid "" "threads with the same uncached arguments." msgstr "" -#: ../../../build/NEWS:10003 +#: ../../../build/NEWS:10226 msgid "" "`bpo-20804 `__: The " "unittest.mock.sentinel attributes now preserve their identity when they are " "copied or pickled." msgstr "" -#: ../../../build/NEWS:10006 ../../../build/NEWS:13036 -#: ../../../build/NEWS:16769 +#: ../../../build/NEWS:10229 ../../../build/NEWS:13259 +#: ../../../build/NEWS:16992 msgid "" "`bpo-29142 `__: In urllib.request, " "suffixes in no_proxy environment variable with leading dots could match " "related hostnames again (e.g. .b.c matches a.b.c). Patch by Milan Oberkirch." msgstr "" -#: ../../../build/NEWS:10010 ../../../build/NEWS:13040 -#: ../../../build/NEWS:16730 +#: ../../../build/NEWS:10233 ../../../build/NEWS:13263 +#: ../../../build/NEWS:16953 msgid "" "`bpo-28961 `__: Fix unittest.mock._Call " "helper: don't ignore the name parameter anymore. Patch written by Jiajun " "Huang." msgstr "" -#: ../../../build/NEWS:10013 ../../../build/NEWS:13047 -#: ../../../build/NEWS:17013 +#: ../../../build/NEWS:10236 ../../../build/NEWS:13270 +#: ../../../build/NEWS:17236 msgid "" "`bpo-15812 `__: inspect.getframeinfo() " "now correctly shows the first line of a context. Patch by Sam Breese." msgstr "" -#: ../../../build/NEWS:10016 +#: ../../../build/NEWS:10239 msgid "" "`bpo-28985 `__: Update authorizer " "constants in sqlite3 module. Patch by Dingyuan Wang." msgstr "" -#: ../../../build/NEWS:10019 ../../../build/NEWS:13059 +#: ../../../build/NEWS:10242 ../../../build/NEWS:13282 msgid "" "`bpo-29079 `__: Prevent infinite loop in" " pathlib.resolve() on Windows" msgstr "" -#: ../../../build/NEWS:10021 ../../../build/NEWS:13061 -#: ../../../build/NEWS:17019 +#: ../../../build/NEWS:10244 ../../../build/NEWS:13284 +#: ../../../build/NEWS:17242 msgid "" "`bpo-13051 `__: Fixed recursion errors " "in large or resized curses.textpad.Textbox. Based on patch by Tycho " "Andersen." msgstr "" -#: ../../../build/NEWS:10024 ../../../build/NEWS:13068 -#: ../../../build/NEWS:17026 +#: ../../../build/NEWS:10247 ../../../build/NEWS:13291 +#: ../../../build/NEWS:17249 msgid "" "`bpo-9770 `__: curses.ascii predicates " "now work correctly with negative integers." msgstr "" -#: ../../../build/NEWS:10027 ../../../build/NEWS:13071 -#: ../../../build/NEWS:17029 +#: ../../../build/NEWS:10250 ../../../build/NEWS:13294 +#: ../../../build/NEWS:17252 msgid "" "`bpo-28427 `__: old keys should not " "remove new values from WeakValueDictionary when collecting from another " "thread." msgstr "" -#: ../../../build/NEWS:10030 ../../../build/NEWS:13074 -#: ../../../build/NEWS:17032 +#: ../../../build/NEWS:10253 ../../../build/NEWS:13297 +#: ../../../build/NEWS:17255 msgid "" "`bpo-28923 `__: Remove editor artifacts " "from Tix.py." msgstr "" -#: ../../../build/NEWS:10032 ../../../build/NEWS:13079 -#: ../../../build/NEWS:17034 +#: ../../../build/NEWS:10255 ../../../build/NEWS:13302 +#: ../../../build/NEWS:17257 msgid "" "`bpo-28871 `__: Fixed a crash when " "deallocate deep ElementTree." msgstr "" -#: ../../../build/NEWS:10034 ../../../build/NEWS:13081 -#: ../../../build/NEWS:17036 +#: ../../../build/NEWS:10257 ../../../build/NEWS:13304 +#: ../../../build/NEWS:17259 msgid "" "`bpo-19542 `__: Fix bugs in " "WeakValueDictionary.setdefault() and WeakValueDictionary.pop() when a GC " "collection happens in another thread." msgstr "" -#: ../../../build/NEWS:10037 ../../../build/NEWS:13084 +#: ../../../build/NEWS:10260 ../../../build/NEWS:13307 msgid "" "`bpo-20191 `__: Fixed a crash in " "resource.prlimit() when passing a sequence that doesn't own its elements as " "limits." msgstr "" -#: ../../../build/NEWS:10040 +#: ../../../build/NEWS:10263 msgid "" "`bpo-16255 `__: subprocess.Popen uses " "/system/bin/sh on Android as the shell, instead of /bin/sh." msgstr "" -#: ../../../build/NEWS:10043 ../../../build/NEWS:13087 -#: ../../../build/NEWS:17042 +#: ../../../build/NEWS:10266 ../../../build/NEWS:13310 +#: ../../../build/NEWS:17265 msgid "" "`bpo-28779 `__: " "multiprocessing.set_forkserver_preload() would crash the forkserver process " @@ -18123,14 +18546,14 @@ msgid "" "locks." msgstr "" -#: ../../../build/NEWS:10047 ../../../build/NEWS:13094 +#: ../../../build/NEWS:10270 ../../../build/NEWS:13317 msgid "" "`bpo-26937 `__: The chown() method of " "the tarfile.TarFile class does not fail now when the grp module cannot be " "imported, as for example on Android platforms." msgstr "" -#: ../../../build/NEWS:10051 +#: ../../../build/NEWS:10274 msgid "" "`bpo-28847 `__: dbm.dumb now supports " "reading read-only files and no longer writes the index file when it is not " @@ -18139,21 +18562,21 @@ msgid "" "releases)." msgstr "" -#: ../../../build/NEWS:10056 +#: ../../../build/NEWS:10279 msgid "" "`bpo-27030 `__: Unknown escapes " "consisting of ``'\\'`` and an ASCII letter in re.sub() replacement templates" " regular expressions now are errors." msgstr "" -#: ../../../build/NEWS:10059 ../../../build/NEWS:13275 +#: ../../../build/NEWS:10282 ../../../build/NEWS:13498 msgid "" "`bpo-28835 `__: Fix a regression " "introduced in warnings.catch_warnings(): call warnings.showwarning() if it " "was overridden inside the context manager." msgstr "" -#: ../../../build/NEWS:10062 ../../../build/NEWS:13278 +#: ../../../build/NEWS:10285 ../../../build/NEWS:13501 msgid "" "`bpo-27172 `__: To assist with upgrades " "from 2.7, the previously documented deprecation of " @@ -18162,14 +18585,14 @@ msgid "" "supported." msgstr "" -#: ../../../build/NEWS:10067 +#: ../../../build/NEWS:10290 msgid "" "`bpo-28740 `__: Add " "sys.getandroidapilevel(): return the build time API version of Android as an" " integer. Function only available on Android." msgstr "" -#: ../../../build/NEWS:10070 ../../../build/NEWS:13283 +#: ../../../build/NEWS:10293 ../../../build/NEWS:13506 msgid "" "`bpo-26273 `__: Add new " ":data:`socket.TCP_CONGESTION` (Linux 2.6.13) and " @@ -18177,13 +18600,13 @@ msgid "" "Omar Sandoval." msgstr "" -#: ../../../build/NEWS:10074 ../../../build/NEWS:13354 +#: ../../../build/NEWS:10297 ../../../build/NEWS:13577 msgid "" "`bpo-28752 `__: Restored the " "__reduce__() methods of datetime objects." msgstr "" -#: ../../../build/NEWS:10076 ../../../build/NEWS:13356 +#: ../../../build/NEWS:10299 ../../../build/NEWS:13579 msgid "" "`bpo-28727 `__: Regular expression " "patterns, _sre.SRE_Pattern objects created by re.compile(), become " @@ -18193,35 +18616,35 @@ msgid "" "unit tests)." msgstr "" -#: ../../../build/NEWS:10081 +#: ../../../build/NEWS:10304 msgid "" "`bpo-20572 `__: Remove the " "subprocess.Popen.wait endtime parameter. It was deprecated in 3.4 and " "undocumented prior to that." msgstr "" -#: ../../../build/NEWS:10084 ../../../build/NEWS:13364 -#: ../../../build/NEWS:17049 +#: ../../../build/NEWS:10307 ../../../build/NEWS:13587 +#: ../../../build/NEWS:17272 msgid "" "`bpo-25659 `__: In ctypes, prevent a " "crash calling the from_buffer() and from_buffer_copy() methods on abstract " "classes like Array." msgstr "" -#: ../../../build/NEWS:10087 +#: ../../../build/NEWS:10310 msgid "" "`bpo-28548 `__: In the \"http.server\" " "module, parse the protocol version if possible, to avoid using HTTP 0.9 in " "some error responses." msgstr "" -#: ../../../build/NEWS:10090 ../../../build/NEWS:13367 +#: ../../../build/NEWS:10313 ../../../build/NEWS:13590 msgid "" "`bpo-19717 `__: Makes Path.resolve() " "succeed on paths that do not exist. Patch by Vajrasky Kok" msgstr "" -#: ../../../build/NEWS:10093 ../../../build/NEWS:13370 +#: ../../../build/NEWS:10316 ../../../build/NEWS:13593 msgid "" "`bpo-28563 `__: Fixed possible DoS and " "arbitrary code execution when handle plural form selections in the gettext " @@ -18229,31 +18652,31 @@ msgid "" "gettext." msgstr "" -#: ../../../build/NEWS:10097 ../../../build/NEWS:13374 -#: ../../../build/NEWS:17058 +#: ../../../build/NEWS:10320 ../../../build/NEWS:13597 +#: ../../../build/NEWS:17281 msgid "" "`bpo-28387 `__: Fixed possible crash in " "_io.TextIOWrapper deallocator when the garbage collector is invoked in other" " thread. Based on patch by Sebastian Cufre." msgstr "" -#: ../../../build/NEWS:10101 ../../../build/NEWS:13457 -#: ../../../build/NEWS:17062 +#: ../../../build/NEWS:10324 ../../../build/NEWS:13680 +#: ../../../build/NEWS:17285 msgid "" "`bpo-27517 `__: LZMA compressor and " "decompressor no longer raise exceptions if given empty data twice. Patch by" " Benjamin Fogle." msgstr "" -#: ../../../build/NEWS:10104 ../../../build/NEWS:13460 -#: ../../../build/NEWS:17065 +#: ../../../build/NEWS:10327 ../../../build/NEWS:13683 +#: ../../../build/NEWS:17288 msgid "" "`bpo-28549 `__: Fixed segfault in " "curses's addch() with ncurses6." msgstr "" -#: ../../../build/NEWS:10106 ../../../build/NEWS:13462 -#: ../../../build/NEWS:17067 +#: ../../../build/NEWS:10329 ../../../build/NEWS:13685 +#: ../../../build/NEWS:17290 msgid "" "`bpo-28449 `__: tarfile.open() with mode" " \"r\" or \"r:\" now tries to open a tar file with compression before trying" @@ -18261,15 +18684,15 @@ msgid "" "ignore_zeros=True." msgstr "" -#: ../../../build/NEWS:10110 ../../../build/NEWS:13466 -#: ../../../build/NEWS:17071 +#: ../../../build/NEWS:10333 ../../../build/NEWS:13689 +#: ../../../build/NEWS:17294 msgid "" "`bpo-23262 `__: The webbrowser module " "now supports Firefox 36+ and derived browsers. Based on patch by Oleg " "Broytman." msgstr "" -#: ../../../build/NEWS:10113 +#: ../../../build/NEWS:10336 msgid "" "`bpo-24241 `__: The webbrowser in an X " "environment now prefers using the default browser directly. Also, the " @@ -18278,8 +18701,8 @@ msgid "" "Steele" msgstr "" -#: ../../../build/NEWS:10118 ../../../build/NEWS:13469 -#: ../../../build/NEWS:17074 +#: ../../../build/NEWS:10341 ../../../build/NEWS:13692 +#: ../../../build/NEWS:17297 msgid "" "`bpo-27939 `__: Fixed bugs in " "tkinter.ttk.LabeledScale and tkinter.Scale caused by representing the scale " @@ -18287,7 +18710,7 @@ msgid "" " set to underlying Tk variable." msgstr "" -#: ../../../build/NEWS:10122 +#: ../../../build/NEWS:10345 msgid "" "`bpo-28255 `__: " "calendar.TextCalendar.prweek() no longer prints a space after a weeks's " @@ -18295,55 +18718,55 @@ msgid "" " after a year's calendar. Based on patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:10126 +#: ../../../build/NEWS:10349 msgid "" "`bpo-28255 `__: " "calendar.TextCalendar.prmonth() no longer prints a space at the start of new" " line after printing a month's calendar. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:10130 ../../../build/NEWS:13480 -#: ../../../build/NEWS:17082 +#: ../../../build/NEWS:10353 ../../../build/NEWS:13703 +#: ../../../build/NEWS:17305 msgid "" "`bpo-20491 `__: The textwrap.TextWrapper" " class now honors non-breaking spaces. Based on patch by Kaarle Ritvanen." msgstr "" -#: ../../../build/NEWS:10133 ../../../build/NEWS:13483 -#: ../../../build/NEWS:17085 +#: ../../../build/NEWS:10356 ../../../build/NEWS:13706 +#: ../../../build/NEWS:17308 msgid "" "`bpo-28353 `__: os.fwalk() no longer " "fails on broken links." msgstr "" -#: ../../../build/NEWS:10135 ../../../build/NEWS:13485 +#: ../../../build/NEWS:10358 ../../../build/NEWS:13708 msgid "" "`bpo-28430 `__: Fix iterator of C " "implemented asyncio.Future doesn't accept non-None value is passed to " "it.send(val)." msgstr "" -#: ../../../build/NEWS:10138 ../../../build/NEWS:13488 +#: ../../../build/NEWS:10361 ../../../build/NEWS:13711 msgid "" "`bpo-27025 `__: Generated names for " "Tkinter widgets now start by the \"!\" prefix for readability." msgstr "" -#: ../../../build/NEWS:10141 ../../../build/NEWS:13491 -#: ../../../build/NEWS:17087 +#: ../../../build/NEWS:10364 ../../../build/NEWS:13714 +#: ../../../build/NEWS:17310 msgid "" "`bpo-25464 `__: Fixed " "HList.header_exists() in tkinter.tix module by addin a workaround to Tix " "library bug." msgstr "" -#: ../../../build/NEWS:10144 ../../../build/NEWS:13494 +#: ../../../build/NEWS:10367 ../../../build/NEWS:13717 msgid "" "`bpo-28488 `__: shutil.make_archive() no" " longer adds entry \"./\" to ZIP archive." msgstr "" -#: ../../../build/NEWS:10146 ../../../build/NEWS:13496 +#: ../../../build/NEWS:10369 ../../../build/NEWS:13719 msgid "" "`bpo-25953 `__: re.sub() now raises an " "error for invalid numerical group reference in replacement template even if " @@ -18352,57 +18775,57 @@ msgid "" "Based on patch by SilentGhost." msgstr "" -#: ../../../build/NEWS:10151 +#: ../../../build/NEWS:10374 msgid "" "`bpo-28469 `__: timeit now uses the " "sequence 1, 2, 5, 10, 20, 50,... instead of 1, 10, 100,... for autoranging." msgstr "" -#: ../../../build/NEWS:10154 +#: ../../../build/NEWS:10377 msgid "" "`bpo-28115 `__: Command-line interface " "of the zipfile module now uses argparse. Added support of long options." msgstr "" -#: ../../../build/NEWS:10157 ../../../build/NEWS:13501 +#: ../../../build/NEWS:10380 ../../../build/NEWS:13724 msgid "" "`bpo-18219 `__: Optimize csv.DictWriter " "for large number of columns. Patch by Mariatta Wijaya." msgstr "" -#: ../../../build/NEWS:10160 ../../../build/NEWS:13504 +#: ../../../build/NEWS:10383 ../../../build/NEWS:13727 msgid "" "`bpo-28448 `__: Fix C implemented " "asyncio.Future didn't work on Windows." msgstr "" -#: ../../../build/NEWS:10162 +#: ../../../build/NEWS:10385 msgid "" "`bpo-23214 `__: In the \"io\" module, " "the argument to BufferedReader and BytesIO's read1() methods is now optional" " and can be -1, matching the BufferedIOBase specification." msgstr "" -#: ../../../build/NEWS:10166 ../../../build/NEWS:13506 +#: ../../../build/NEWS:10389 ../../../build/NEWS:13729 msgid "" "`bpo-28480 `__: Fix error building " "socket module when multithreading is disabled." msgstr "" -#: ../../../build/NEWS:10169 +#: ../../../build/NEWS:10392 msgid "" "`bpo-28240 `__: timeit: remove " "``-c/--clock`` and ``-t/--time`` command line options which were deprecated " "since Python 3.3." msgstr "" -#: ../../../build/NEWS:10172 +#: ../../../build/NEWS:10395 msgid "" "`bpo-28240 `__: timeit now repeats the " "benchmarks 5 times instead of only 3 to make benchmarks more reliable." msgstr "" -#: ../../../build/NEWS:10175 +#: ../../../build/NEWS:10398 msgid "" "`bpo-28240 `__: timeit autorange now " "uses a single loop iteration if the benchmark takes less than 10 seconds, " @@ -18410,7 +18833,7 @@ msgid "" "'time.sleep(1)'\" now takes 4 seconds instead of 40 seconds." msgstr "" -#: ../../../build/NEWS:10180 +#: ../../../build/NEWS:10403 msgid "" "Distutils.sdist now looks for README and setup.py files with case " "sensitivity. This behavior matches that found in Setuptools 6.0 and later. " @@ -18418,110 +18841,110 @@ msgid "" "rationale." msgstr "" -#: ../../../build/NEWS:10185 +#: ../../../build/NEWS:10408 msgid "" "`bpo-24452 `__: Make webbrowser support " "Chrome on Mac OS X. Patch by Ned Batchelder." msgstr "" -#: ../../../build/NEWS:10188 ../../../build/NEWS:13511 -#: ../../../build/NEWS:17094 +#: ../../../build/NEWS:10411 ../../../build/NEWS:13734 +#: ../../../build/NEWS:17317 msgid "" "`bpo-20766 `__: Fix references leaked by" " pdb in the handling of SIGINT handlers." msgstr "" -#: ../../../build/NEWS:10191 ../../../build/NEWS:13627 +#: ../../../build/NEWS:10414 ../../../build/NEWS:13850 msgid "" "`bpo-27998 `__: Fixed bytes path support" " in os.scandir() on Windows. Patch by Eryk Sun." msgstr "" -#: ../../../build/NEWS:10194 ../../../build/NEWS:13630 +#: ../../../build/NEWS:10417 ../../../build/NEWS:13853 msgid "" "`bpo-28317 `__: The disassembler now " "decodes FORMAT_VALUE argument." msgstr "" -#: ../../../build/NEWS:10196 ../../../build/NEWS:13636 +#: ../../../build/NEWS:10419 ../../../build/NEWS:13859 msgid "" "`bpo-28380 `__: unittest.mock Mock " "autospec functions now properly support assert_called, assert_not_called, " "and assert_called_once." msgstr "" -#: ../../../build/NEWS:10199 ../../../build/NEWS:13641 +#: ../../../build/NEWS:10422 ../../../build/NEWS:13864 msgid "" "`bpo-28229 `__: lzma module now supports" " pathlib." msgstr "" -#: ../../../build/NEWS:10201 ../../../build/NEWS:13643 -#: ../../../build/NEWS:17101 +#: ../../../build/NEWS:10424 ../../../build/NEWS:13866 +#: ../../../build/NEWS:17324 msgid "" "`bpo-28321 `__: Fixed writing non-BMP " "characters with binary format in plistlib." msgstr "" -#: ../../../build/NEWS:10204 ../../../build/NEWS:13646 +#: ../../../build/NEWS:10427 ../../../build/NEWS:13869 msgid "" "`bpo-28225 `__: bz2 module now supports " "pathlib. Initial patch by Ethan Furman." msgstr "" -#: ../../../build/NEWS:10207 ../../../build/NEWS:13649 +#: ../../../build/NEWS:10430 ../../../build/NEWS:13872 msgid "" "`bpo-28227 `__: gzip now supports " "pathlib. Patch by Ethan Furman." msgstr "" -#: ../../../build/NEWS:10209 +#: ../../../build/NEWS:10432 msgid "" "`bpo-28332 `__: Deprecated silent " "truncations in socket.htons and socket.ntohs. Original patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:10212 ../../../build/NEWS:13651 +#: ../../../build/NEWS:10435 ../../../build/NEWS:13874 msgid "" "`bpo-27358 `__: Optimized merging var-" "keyword arguments and improved error message when passing a non-mapping as a" " var-keyword argument." msgstr "" -#: ../../../build/NEWS:10215 ../../../build/NEWS:13654 +#: ../../../build/NEWS:10438 ../../../build/NEWS:13877 msgid "" "`bpo-28257 `__: Improved error message " "when passing a non-iterable as a var-positional argument. Added opcode " "BUILD_TUPLE_UNPACK_WITH_CALL." msgstr "" -#: ../../../build/NEWS:10218 ../../../build/NEWS:13657 -#: ../../../build/NEWS:17104 +#: ../../../build/NEWS:10441 ../../../build/NEWS:13880 +#: ../../../build/NEWS:17327 msgid "" "`bpo-28322 `__: Fixed possible crashes " "when unpickle itertools objects from incorrect pickle data. Based on patch " "by John Leitch." msgstr "" -#: ../../../build/NEWS:10221 ../../../build/NEWS:13660 +#: ../../../build/NEWS:10444 ../../../build/NEWS:13883 msgid "" "`bpo-28228 `__: imghdr now supports " "pathlib." msgstr "" -#: ../../../build/NEWS:10223 ../../../build/NEWS:13662 +#: ../../../build/NEWS:10446 ../../../build/NEWS:13885 msgid "" "`bpo-28226 `__: compileall now supports " "pathlib." msgstr "" -#: ../../../build/NEWS:10225 ../../../build/NEWS:13664 +#: ../../../build/NEWS:10448 ../../../build/NEWS:13887 msgid "" "`bpo-28314 `__: Fix function declaration" " (C flags) for the getiterator() method of xml.etree.ElementTree.Element." msgstr "" -#: ../../../build/NEWS:10228 ../../../build/NEWS:13667 +#: ../../../build/NEWS:10451 ../../../build/NEWS:13890 msgid "" "`bpo-28148 `__: Stop using localtime() " "and gmtime() in the time module. Introduced platform independent " @@ -18529,8 +18952,8 @@ msgid "" " all platforms. Patch by Ed Schouten." msgstr "" -#: ../../../build/NEWS:10232 ../../../build/NEWS:13671 -#: ../../../build/NEWS:17113 +#: ../../../build/NEWS:10455 ../../../build/NEWS:13894 +#: ../../../build/NEWS:17336 msgid "" "`bpo-28253 `__: Fixed calendar functions" " for extreme months: 0001-01 and 9999-12. Methods itermonthdays() and " @@ -18538,299 +18961,299 @@ msgid "" "which can cause datetime.date under/overflow." msgstr "" -#: ../../../build/NEWS:10237 ../../../build/NEWS:13676 -#: ../../../build/NEWS:17118 +#: ../../../build/NEWS:10460 ../../../build/NEWS:13899 +#: ../../../build/NEWS:17341 msgid "" "`bpo-28275 `__: Fixed possible use after" " free in the decompress() methods of the LZMADecompressor and " "BZ2Decompressor classes. Original patch by John Leitch." msgstr "" -#: ../../../build/NEWS:10241 ../../../build/NEWS:13680 -#: ../../../build/NEWS:17122 +#: ../../../build/NEWS:10464 ../../../build/NEWS:13903 +#: ../../../build/NEWS:17345 msgid "" "`bpo-27897 `__: Fixed possible crash in " "sqlite3.Connection.create_collation() if pass invalid string-like object as " "a name. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:10244 ../../../build/NEWS:13683 +#: ../../../build/NEWS:10467 ../../../build/NEWS:13906 msgid "" "`bpo-18844 `__: random.choices() now has" " k as a keyword-only argument to improve the readability of common cases and" " come into line with the signature used in other languages." msgstr "" -#: ../../../build/NEWS:10248 ../../../build/NEWS:13687 -#: ../../../build/NEWS:17125 +#: ../../../build/NEWS:10471 ../../../build/NEWS:13910 +#: ../../../build/NEWS:17348 msgid "" "`bpo-18893 `__: Fix invalid exception " "handling in Lib/ctypes/macholib/dyld.py. Patch by Madison May." msgstr "" -#: ../../../build/NEWS:10251 ../../../build/NEWS:13690 +#: ../../../build/NEWS:10474 ../../../build/NEWS:13913 msgid "" "`bpo-27611 `__: Fixed support of default" " root window in the tkinter.tix module. Added the master parameter in the " "DisplayStyle constructor." msgstr "" -#: ../../../build/NEWS:10254 ../../../build/NEWS:13693 -#: ../../../build/NEWS:17130 +#: ../../../build/NEWS:10477 ../../../build/NEWS:13916 +#: ../../../build/NEWS:17353 msgid "" "`bpo-27348 `__: In the traceback module," " restore the formatting of exception messages like \"Exception: None\". " "This fixes a regression introduced in 3.5a2." msgstr "" -#: ../../../build/NEWS:10258 ../../../build/NEWS:13697 -#: ../../../build/NEWS:17134 +#: ../../../build/NEWS:10481 ../../../build/NEWS:13920 +#: ../../../build/NEWS:17357 msgid "" "`bpo-25651 `__: Allow falsy values to be" " used for msg parameter of subTest()." msgstr "" -#: ../../../build/NEWS:10260 ../../../build/NEWS:13699 +#: ../../../build/NEWS:10483 ../../../build/NEWS:13922 msgid "" "`bpo-27778 `__: Fix a memory leak in " "os.getrandom() when the getrandom() is interrupted by a signal and a signal " "handler raises a Python exception." msgstr "" -#: ../../../build/NEWS:10263 ../../../build/NEWS:13702 +#: ../../../build/NEWS:10486 ../../../build/NEWS:13925 msgid "" "`bpo-28200 `__: Fix memory leak on " "Windows in the os module (fix path_converter() function)." msgstr "" -#: ../../../build/NEWS:10266 ../../../build/NEWS:13705 +#: ../../../build/NEWS:10489 ../../../build/NEWS:13928 msgid "" "`bpo-25400 `__: RobotFileParser now " "correctly returns default values for crawl_delay and request_rate. Initial " "patch by Peter Wirtz." msgstr "" -#: ../../../build/NEWS:10269 ../../../build/NEWS:13708 -#: ../../../build/NEWS:17136 +#: ../../../build/NEWS:10492 ../../../build/NEWS:13931 +#: ../../../build/NEWS:17359 msgid "" "`bpo-27932 `__: Prevent memory leak in " "win32_ver()." msgstr "" -#: ../../../build/NEWS:10271 ../../../build/NEWS:13710 -#: ../../../build/NEWS:17138 +#: ../../../build/NEWS:10494 ../../../build/NEWS:13933 +#: ../../../build/NEWS:17361 msgid "Fix UnboundLocalError in socket._sendfile_use_sendfile." msgstr "Perbaiki UnboundLocalError di socket._sendfile_use_sendfile." -#: ../../../build/NEWS:10273 ../../../build/NEWS:13712 -#: ../../../build/NEWS:17140 +#: ../../../build/NEWS:10496 ../../../build/NEWS:13935 +#: ../../../build/NEWS:17363 msgid "" "`bpo-28075 `__: Check for " "ERROR_ACCESS_DENIED in Windows implementation of os.stat(). Patch by Eryk " "Sun." msgstr "" -#: ../../../build/NEWS:10276 ../../../build/NEWS:13715 +#: ../../../build/NEWS:10499 ../../../build/NEWS:13938 msgid "" "`bpo-22493 `__: Warning message emitted " "by using inline flags in the middle of regular expression now contains a " "(truncated) regex pattern. Patch by Tim Graham." msgstr "" -#: ../../../build/NEWS:10280 ../../../build/NEWS:13719 -#: ../../../build/NEWS:17143 +#: ../../../build/NEWS:10503 ../../../build/NEWS:13942 +#: ../../../build/NEWS:17366 msgid "" "`bpo-25270 `__: Prevent " "codecs.escape_encode() from raising SystemError when an empty bytestring is " "passed." msgstr "" -#: ../../../build/NEWS:10283 ../../../build/NEWS:13722 -#: ../../../build/NEWS:17146 +#: ../../../build/NEWS:10506 ../../../build/NEWS:13945 +#: ../../../build/NEWS:17369 msgid "" "`bpo-28181 `__: Get antigravity over " "HTTPS. Patch by Kaartic Sivaraam." msgstr "" -#: ../../../build/NEWS:10285 ../../../build/NEWS:13724 -#: ../../../build/NEWS:17148 +#: ../../../build/NEWS:10508 ../../../build/NEWS:13947 +#: ../../../build/NEWS:17371 msgid "" "`bpo-25895 `__: Enable WebSocket URL " "schemes in urllib.parse.urljoin. Patch by Gergely Imreh and Markus " "Holtermann." msgstr "" -#: ../../../build/NEWS:10288 ../../../build/NEWS:13727 +#: ../../../build/NEWS:10511 ../../../build/NEWS:13950 msgid "" "`bpo-28114 `__: Fix a crash in " "parse_envlist() when env contains byte strings. Patch by Eryk Sun." msgstr "" -#: ../../../build/NEWS:10291 ../../../build/NEWS:13730 -#: ../../../build/NEWS:17151 +#: ../../../build/NEWS:10514 ../../../build/NEWS:13953 +#: ../../../build/NEWS:17374 msgid "" "`bpo-27599 `__: Fixed buffer overrun in " "binascii.b2a_qp() and binascii.a2b_qp()." msgstr "" -#: ../../../build/NEWS:10294 ../../../build/NEWS:13733 -#: ../../../build/NEWS:17352 +#: ../../../build/NEWS:10517 ../../../build/NEWS:13956 +#: ../../../build/NEWS:17575 msgid "" "`bpo-27906 `__: Fix socket accept " "exhaustion during high TCP traffic. Patch by Kevin Conway." msgstr "" -#: ../../../build/NEWS:10297 ../../../build/NEWS:13736 -#: ../../../build/NEWS:17355 +#: ../../../build/NEWS:10520 ../../../build/NEWS:13959 +#: ../../../build/NEWS:17578 msgid "" "`bpo-28174 `__: Handle when SO_REUSEPORT" " isn't properly supported. Patch by Seth Michael Larson." msgstr "" -#: ../../../build/NEWS:10300 ../../../build/NEWS:13739 -#: ../../../build/NEWS:17358 +#: ../../../build/NEWS:10523 ../../../build/NEWS:13962 +#: ../../../build/NEWS:17581 msgid "" "`bpo-26654 `__: Inspect " "functools.partial in asyncio.Handle.__repr__. Patch by iceboy." msgstr "" -#: ../../../build/NEWS:10303 ../../../build/NEWS:13742 -#: ../../../build/NEWS:17361 +#: ../../../build/NEWS:10526 ../../../build/NEWS:13965 +#: ../../../build/NEWS:17584 msgid "" "`bpo-26909 `__: Fix slow pipes IO in " "asyncio. Patch by INADA Naoki." msgstr "" -#: ../../../build/NEWS:10305 ../../../build/NEWS:13744 -#: ../../../build/NEWS:17363 +#: ../../../build/NEWS:10528 ../../../build/NEWS:13967 +#: ../../../build/NEWS:17586 msgid "" "`bpo-28176 `__: Fix callbacks race in " "asyncio.SelectorLoop.sock_connect." msgstr "" -#: ../../../build/NEWS:10307 ../../../build/NEWS:13746 -#: ../../../build/NEWS:17365 +#: ../../../build/NEWS:10530 ../../../build/NEWS:13969 +#: ../../../build/NEWS:17588 msgid "" "`bpo-27759 `__: Fix selectors " "incorrectly retain invalid file descriptors. Patch by Mark Williams." msgstr "" -#: ../../../build/NEWS:10310 +#: ../../../build/NEWS:10533 msgid "" "`bpo-28325 `__: Remove vestigial MacOS 9" " macurl2path module and its tests." msgstr "" -#: ../../../build/NEWS:10312 ../../../build/NEWS:13749 -#: ../../../build/NEWS:17368 +#: ../../../build/NEWS:10535 ../../../build/NEWS:13972 +#: ../../../build/NEWS:17591 msgid "" "`bpo-28368 `__: Refuse monitoring " "processes if the child watcher has no loop attached. Patch by Vincent " "Michel." msgstr "" -#: ../../../build/NEWS:10315 ../../../build/NEWS:13752 -#: ../../../build/NEWS:17371 +#: ../../../build/NEWS:10538 ../../../build/NEWS:13975 +#: ../../../build/NEWS:17594 msgid "" "`bpo-28369 `__: Raise RuntimeError when " "transport's FD is used with add_reader, add_writer, etc." msgstr "" -#: ../../../build/NEWS:10318 ../../../build/NEWS:13755 -#: ../../../build/NEWS:17374 +#: ../../../build/NEWS:10541 ../../../build/NEWS:13978 +#: ../../../build/NEWS:17597 msgid "" "`bpo-28370 `__: Speedup " "asyncio.StreamReader.readexactly. Patch by Коренберг Марк." msgstr "" -#: ../../../build/NEWS:10321 ../../../build/NEWS:13758 -#: ../../../build/NEWS:17377 +#: ../../../build/NEWS:10544 ../../../build/NEWS:13981 +#: ../../../build/NEWS:17600 msgid "" "`bpo-28371 `__: Deprecate passing " "asyncio.Handles to run_in_executor." msgstr "" -#: ../../../build/NEWS:10323 ../../../build/NEWS:13760 -#: ../../../build/NEWS:17379 +#: ../../../build/NEWS:10546 ../../../build/NEWS:13983 +#: ../../../build/NEWS:17602 msgid "" "`bpo-28372 `__: Fix asyncio to support " "formatting of non-python coroutines." msgstr "" -#: ../../../build/NEWS:10325 ../../../build/NEWS:13762 -#: ../../../build/NEWS:17381 +#: ../../../build/NEWS:10548 ../../../build/NEWS:13985 +#: ../../../build/NEWS:17604 msgid "" "`bpo-28399 `__: Remove UNIX socket from " "FS before binding. Patch by Коренберг Марк." msgstr "" -#: ../../../build/NEWS:10328 ../../../build/NEWS:13765 -#: ../../../build/NEWS:17384 +#: ../../../build/NEWS:10551 ../../../build/NEWS:13988 +#: ../../../build/NEWS:17607 msgid "" "`bpo-27972 `__: Prohibit Tasks to await " "on themselves." msgstr "" -#: ../../../build/NEWS:10330 ../../../build/NEWS:13287 +#: ../../../build/NEWS:10553 ../../../build/NEWS:13510 msgid "" "`bpo-24142 `__: Reading a corrupt config" " file left configparser in an invalid state. Original patch by Florian Höch." msgstr "" -#: ../../../build/NEWS:10333 ../../../build/NEWS:12635 +#: ../../../build/NEWS:10556 ../../../build/NEWS:12858 msgid "" "`bpo-29581 `__: ABCMeta.__new__ now " "accepts ``**kwargs``, allowing abstract base classes to use keyword " "parameters in __init_subclass__. Patch by Nate Soares." msgstr "" -#: ../../../build/NEWS:10337 ../../../build/NEWS:11826 +#: ../../../build/NEWS:10560 ../../../build/NEWS:12049 msgid "" "`bpo-25532 `__: inspect.unwrap() will " "now only try to unwrap an object sys.getrecursionlimit() times, to protect " "against objects which create a new object on every attribute access." msgstr "" -#: ../../../build/NEWS:10341 ../../../build/NEWS:12769 +#: ../../../build/NEWS:10564 ../../../build/NEWS:12992 msgid "" "`bpo-30177 `__: " "path.resolve(strict=False) no longer cuts the path after the first element " "not present in the filesystem. Patch by Antoine Pietri." msgstr "" -#: ../../../build/NEWS:10347 ../../../build/NEWS:12252 +#: ../../../build/NEWS:10570 ../../../build/NEWS:12475 msgid "" "`bpo-31294 `__: Fix incomplete code " "snippet in the ZeroMQSocketListener and ZeroMQSocketHandler examples and " "adapt them to Python 3." msgstr "" -#: ../../../build/NEWS:10350 ../../../build/NEWS:12255 +#: ../../../build/NEWS:10573 ../../../build/NEWS:12478 msgid "" "`bpo-21649 `__: Add RFC 7525 and Mozilla" " server side TLS links to SSL documentation." msgstr "" -#: ../../../build/NEWS:10353 +#: ../../../build/NEWS:10576 msgid "" "`bpo-31128 `__: Allow the pydoc server " "to bind to arbitrary hostnames." msgstr "" -#: ../../../build/NEWS:10355 ../../../build/NEWS:12258 +#: ../../../build/NEWS:10578 ../../../build/NEWS:12481 msgid "" "`bpo-30803 `__: Clarify doc on truth " "value testing. Original patch by Peter Thomassen." msgstr "" -#: ../../../build/NEWS:10358 ../../../build/NEWS:12824 -#: ../../../build/NEWS:16776 +#: ../../../build/NEWS:10581 ../../../build/NEWS:13047 +#: ../../../build/NEWS:16999 msgid "" "`bpo-30176 `__: Add missing attribute " "related constants in curses documentation." msgstr "" -#: ../../../build/NEWS:10361 ../../../build/NEWS:12827 +#: ../../../build/NEWS:10584 ../../../build/NEWS:13050 msgid "" "`bpo-30052 `__: the link targets for " ":func:`bytes` and :func:`bytearray` are now their respective type " @@ -18841,14 +19264,14 @@ msgid "" "default output caching features in Sphinx." msgstr "" -#: ../../../build/NEWS:10369 ../../../build/NEWS:12835 -#: ../../../build/NEWS:16779 +#: ../../../build/NEWS:10592 ../../../build/NEWS:13058 +#: ../../../build/NEWS:17002 msgid "" "`bpo-26985 `__: Add missing info of code" " object in inspect documentation." msgstr "" -#: ../../../build/NEWS:10371 +#: ../../../build/NEWS:10594 msgid "" "`bpo-19824 `__: Improve the " "documentation for, and links to, template strings by emphasizing their " @@ -18857,37 +19280,37 @@ msgid "" "`__)" msgstr "" -#: ../../../build/NEWS:10375 ../../../build/NEWS:13144 -#: ../../../build/NEWS:16781 +#: ../../../build/NEWS:10598 ../../../build/NEWS:13367 +#: ../../../build/NEWS:17004 msgid "" "`bpo-28929 `__: Link the documentation " "to its source file on GitHub." msgstr "" -#: ../../../build/NEWS:10377 ../../../build/NEWS:13146 -#: ../../../build/NEWS:16783 +#: ../../../build/NEWS:10600 ../../../build/NEWS:13369 +#: ../../../build/NEWS:17006 msgid "" "`bpo-25008 `__: Document smtpd.py as " "effectively deprecated and add a pointer to aiosmtpd, a third-party asyncio-" "based replacement." msgstr "" -#: ../../../build/NEWS:10380 ../../../build/NEWS:13149 -#: ../../../build/NEWS:16786 +#: ../../../build/NEWS:10603 ../../../build/NEWS:13372 +#: ../../../build/NEWS:17009 msgid "" "`bpo-26355 `__: Add canonical header " "link on each page to corresponding major version of the documentation. Patch" " by Matthias Bussonnier." msgstr "" -#: ../../../build/NEWS:10383 ../../../build/NEWS:13152 -#: ../../../build/NEWS:16789 +#: ../../../build/NEWS:10606 ../../../build/NEWS:13375 +#: ../../../build/NEWS:17012 msgid "" "`bpo-29349 `__: Fix Python 2 syntax in " "code for building the documentation." msgstr "" -#: ../../../build/NEWS:10385 +#: ../../../build/NEWS:10608 msgid "" "`bpo-23722 `__: The data model reference" " and the porting section in the 3.6 What's New guide now cover the " @@ -18895,46 +19318,46 @@ msgid "" " support :pep:`487` and zero-argument ``super()``." msgstr "" -#: ../../../build/NEWS:10390 ../../../build/NEWS:13403 -#: ../../../build/NEWS:17452 +#: ../../../build/NEWS:10613 ../../../build/NEWS:13626 +#: ../../../build/NEWS:17675 msgid "" "`bpo-28513 `__: Documented command-line " "interface of zipfile." msgstr "" -#: ../../../build/NEWS:10395 +#: ../../../build/NEWS:10618 msgid "" "`bpo-29639 `__: test.support.HOST is now" " \"localhost\", a new HOSTv4 constant has been added for your ``127.0.0.1`` " "needs, similar to the existing HOSTv6 constant." msgstr "" -#: ../../../build/NEWS:10399 ../../../build/NEWS:12264 +#: ../../../build/NEWS:10622 ../../../build/NEWS:12487 msgid "" "`bpo-31320 `__: Silence traceback in " "test_ssl" msgstr "" -#: ../../../build/NEWS:10401 +#: ../../../build/NEWS:10624 msgid "" "`bpo-31346 `__: Prefer " "PROTOCOL_TLS_CLIENT and PROTOCOL_TLS_SERVER protocols for SSLContext." msgstr "" -#: ../../../build/NEWS:10404 ../../../build/NEWS:12266 +#: ../../../build/NEWS:10627 ../../../build/NEWS:12489 msgid "" "`bpo-25674 `__: Remove sha256.tbs-" "internet.com ssl test" msgstr "" -#: ../../../build/NEWS:10406 ../../../build/NEWS:12268 +#: ../../../build/NEWS:10629 ../../../build/NEWS:12491 msgid "" "`bpo-30715 `__: Address ALPN callback " "changes for OpenSSL 1.1.0f. The latest version behaves like OpenSSL 1.0.2 " "and no longer aborts handshake." msgstr "" -#: ../../../build/NEWS:10409 ../../../build/NEWS:12271 +#: ../../../build/NEWS:10632 ../../../build/NEWS:12494 msgid "" "`bpo-30822 `__: regrtest: Exclude tzdata" " from regrtest --all. When running the test suite using --use=all / -u all, " @@ -18943,15 +19366,15 @@ msgid "" " line parser to allow passing -u extralargefile to run test_zipfile64." msgstr "" -#: ../../../build/NEWS:10415 ../../../build/NEWS:11878 +#: ../../../build/NEWS:10638 ../../../build/NEWS:12101 msgid "" "`bpo-30695 `__: Add the " "`set_nomemory(start, stop)` and `remove_mem_hooks()` functions to the " "_testcapi module." msgstr "" -#: ../../../build/NEWS:10418 ../../../build/NEWS:12846 -#: ../../../build/NEWS:16808 +#: ../../../build/NEWS:10641 ../../../build/NEWS:13069 +#: ../../../build/NEWS:17031 msgid "" "`bpo-30357 `__: test_thread: setUp() now" " uses support.threading_setup() and support.threading_cleanup() to wait " @@ -18959,8 +19382,8 @@ msgid "" "Initial patch written by Grzegorz Grzywacz." msgstr "" -#: ../../../build/NEWS:10423 ../../../build/NEWS:12851 -#: ../../../build/NEWS:16817 +#: ../../../build/NEWS:10646 ../../../build/NEWS:13074 +#: ../../../build/NEWS:17040 msgid "" "`bpo-30197 `__: Enhanced functions " "swap_attr() and swap_item() in the test.support module. They now work when " @@ -18969,79 +19392,79 @@ msgid "" "to the target of the \"as\" clause, if there is one." msgstr "" -#: ../../../build/NEWS:10429 +#: ../../../build/NEWS:10652 msgid "" "`bpo-24932 `__: Use proper command line " "parsing in _testembed" msgstr "" -#: ../../../build/NEWS:10431 ../../../build/NEWS:13167 +#: ../../../build/NEWS:10654 ../../../build/NEWS:13390 msgid "" "`bpo-28950 `__: Disallow -j0 to be " "combined with -T/-l in regrtest command line arguments." msgstr "" -#: ../../../build/NEWS:10434 ../../../build/NEWS:13170 +#: ../../../build/NEWS:10657 ../../../build/NEWS:13393 msgid "" "`bpo-28683 `__: Fix the tests that " "bind() a unix socket and raise PermissionError on Android for a non-root " "user." msgstr "" -#: ../../../build/NEWS:10437 +#: ../../../build/NEWS:10660 msgid "" "`bpo-26936 `__: Fix the test_socket " "failures on Android - getservbyname(), getservbyport() and getaddrinfo() are" " broken on some Android API levels." msgstr "" -#: ../../../build/NEWS:10440 ../../../build/NEWS:13408 -#: ../../../build/NEWS:17460 +#: ../../../build/NEWS:10663 ../../../build/NEWS:13631 +#: ../../../build/NEWS:17683 msgid "" "`bpo-28666 `__: Now test.support.rmtree " "is able to remove unwritable or unreadable directories." msgstr "" -#: ../../../build/NEWS:10443 ../../../build/NEWS:13411 -#: ../../../build/NEWS:17463 +#: ../../../build/NEWS:10666 ../../../build/NEWS:13634 +#: ../../../build/NEWS:17686 msgid "" "`bpo-23839 `__: Various caches now are " "cleared before running every test file." msgstr "" -#: ../../../build/NEWS:10445 ../../../build/NEWS:13543 +#: ../../../build/NEWS:10668 ../../../build/NEWS:13766 msgid "" "`bpo-26944 `__: Fix test_posix for " "Android where 'id -G' is entirely wrong or missing the effective gid." msgstr "" -#: ../../../build/NEWS:10448 ../../../build/NEWS:13546 -#: ../../../build/NEWS:17465 +#: ../../../build/NEWS:10671 ../../../build/NEWS:13769 +#: ../../../build/NEWS:17688 msgid "" "`bpo-28409 `__: regrtest: fix the parser" " of command line arguments." msgstr "" -#: ../../../build/NEWS:10450 ../../../build/NEWS:13814 +#: ../../../build/NEWS:10673 ../../../build/NEWS:14037 msgid "" "`bpo-28217 `__: Adds _testconsole module" " to test console input." msgstr "" -#: ../../../build/NEWS:10452 ../../../build/NEWS:13173 +#: ../../../build/NEWS:10675 ../../../build/NEWS:13396 msgid "" "`bpo-26939 `__: Add the " "support.setswitchinterval() function to fix test_functools hanging on the " "Android armv7 qemu emulator." msgstr "" -#: ../../../build/NEWS:10458 +#: ../../../build/NEWS:10681 msgid "" "`bpo-31354 `__: Allow --with-lto to be " "used on all builds, not just `make profile-opt`." msgstr "" -#: ../../../build/NEWS:10461 +#: ../../../build/NEWS:10684 msgid "" "`bpo-31370 `__: Remove support for " "building --without-threads. This option is not really useful anymore in the " @@ -19049,82 +19472,82 @@ msgid "" "code base, including in difficult to maintain low-level internal code." msgstr "" -#: ../../../build/NEWS:10466 +#: ../../../build/NEWS:10689 msgid "" "`bpo-31341 `__: Per :pep:`11`, support " "for the IRIX operating system was removed." msgstr "" -#: ../../../build/NEWS:10469 ../../../build/NEWS:12280 +#: ../../../build/NEWS:10692 ../../../build/NEWS:12503 msgid "" "`bpo-30854 `__: Fix compile error when " "compiling --without-threads. Patch by Masayuki Yamamoto." msgstr "" -#: ../../../build/NEWS:10472 ../../../build/NEWS:12860 -#: ../../../build/NEWS:16845 +#: ../../../build/NEWS:10695 ../../../build/NEWS:13083 +#: ../../../build/NEWS:17068 msgid "" "`bpo-30687 `__: Locate msbuild.exe on " "Windows when building rather than vcvarsall.bat" msgstr "" -#: ../../../build/NEWS:10475 +#: ../../../build/NEWS:10698 msgid "" "`bpo-20210 `__: Support the *disabled* " "marker in Setup files. Extension modules listed after this marker are not " "built at all, neither by the Makefile nor by setup.py." msgstr "" -#: ../../../build/NEWS:10479 ../../../build/NEWS:12804 +#: ../../../build/NEWS:10702 ../../../build/NEWS:13027 msgid "" "`bpo-29941 `__: Add ``--with-" "assertions`` configure flag to explicitly enable C ``assert()`` checks. " "Defaults to off. ``--with-pydebug`` implies ``--with-assertions``." msgstr "" -#: ../../../build/NEWS:10483 ../../../build/NEWS:12808 +#: ../../../build/NEWS:10706 ../../../build/NEWS:13031 msgid "" "`bpo-28787 `__: Fix out-of-tree builds " "of Python when configured with ``--with--dtrace``." msgstr "" -#: ../../../build/NEWS:10486 ../../../build/NEWS:12811 -#: ../../../build/NEWS:16832 +#: ../../../build/NEWS:10709 ../../../build/NEWS:13034 +#: ../../../build/NEWS:17055 msgid "" "`bpo-29243 `__: Prevent unnecessary " "rebuilding of Python during ``make test``, ``make install`` and some other " "make targets when configured with ``--enable-optimizations``." msgstr "" -#: ../../../build/NEWS:10490 ../../../build/NEWS:12815 -#: ../../../build/NEWS:16836 +#: ../../../build/NEWS:10713 ../../../build/NEWS:13038 +#: ../../../build/NEWS:17059 msgid "" "`bpo-23404 `__: Don't regenerate " "generated files based on file modification time anymore: the action is now " "explicit. Replace ``make touch`` with ``make regen-all``." msgstr "" -#: ../../../build/NEWS:10494 ../../../build/NEWS:12819 -#: ../../../build/NEWS:16840 +#: ../../../build/NEWS:10717 ../../../build/NEWS:13042 +#: ../../../build/NEWS:17063 msgid "" "`bpo-29643 `__: Fix ``--enable-" "optimization`` didn't work." msgstr "" -#: ../../../build/NEWS:10496 ../../../build/NEWS:13179 +#: ../../../build/NEWS:10719 ../../../build/NEWS:13402 msgid "" "`bpo-27593 `__: sys.version and the " "platform module python_build(), python_branch(), and python_revision() " "functions now use git information rather than hg when building from a repo." msgstr "" -#: ../../../build/NEWS:10500 ../../../build/NEWS:13183 +#: ../../../build/NEWS:10723 ../../../build/NEWS:13406 msgid "" "`bpo-29572 `__: Update Windows build and" " OS X installers to use OpenSSL 1.0.2k." msgstr "" -#: ../../../build/NEWS:10502 +#: ../../../build/NEWS:10725 msgid "" "`bpo-27659 `__: Prohibit implicit C " "function declarations: use ``-Werror=implicit-function-declaration`` when " @@ -19132,53 +19555,53 @@ msgid "" "written by Chi Hsuan Yen." msgstr "" -#: ../../../build/NEWS:10506 +#: ../../../build/NEWS:10729 msgid "" "`bpo-29384 `__: Remove old Be OS helper " "scripts." msgstr "" -#: ../../../build/NEWS:10508 ../../../build/NEWS:13185 +#: ../../../build/NEWS:10731 ../../../build/NEWS:13408 msgid "" "`bpo-26851 `__: Set Android compilation " "and link flags." msgstr "" -#: ../../../build/NEWS:10510 ../../../build/NEWS:13187 +#: ../../../build/NEWS:10733 ../../../build/NEWS:13410 msgid "" "`bpo-28768 `__: Fix implicit declaration" " of function _setmode. Patch by Masayuki Yamamoto" msgstr "" -#: ../../../build/NEWS:10513 ../../../build/NEWS:13190 -#: ../../../build/NEWS:17503 +#: ../../../build/NEWS:10736 ../../../build/NEWS:13413 +#: ../../../build/NEWS:17726 msgid "" "`bpo-29080 `__: Removes hard dependency " "on hg.exe from PCBuild/build.bat" msgstr "" -#: ../../../build/NEWS:10515 ../../../build/NEWS:13192 -#: ../../../build/NEWS:17505 +#: ../../../build/NEWS:10738 ../../../build/NEWS:13415 +#: ../../../build/NEWS:17728 msgid "" "`bpo-23903 `__: Added missed names to " "PC/python3.def." msgstr "" -#: ../../../build/NEWS:10517 ../../../build/NEWS:13194 +#: ../../../build/NEWS:10740 ../../../build/NEWS:13417 msgid "" "`bpo-28762 `__: lockf() is available on " "Android API level 24, but the F_LOCK macro is not defined in android-" "ndk-r13." msgstr "" -#: ../../../build/NEWS:10520 ../../../build/NEWS:13197 +#: ../../../build/NEWS:10743 ../../../build/NEWS:13420 msgid "" "`bpo-28538 `__: Fix the compilation " "error that occurs because if_nameindex() is available on Android API level " "24, but the if_nameindex structure is not defined." msgstr "" -#: ../../../build/NEWS:10524 ../../../build/NEWS:13201 +#: ../../../build/NEWS:10747 ../../../build/NEWS:13424 msgid "" "`bpo-20211 `__: Do not add the directory" " for installing C header files and the directory for installing object code " @@ -19186,83 +19609,83 @@ msgid "" "Petazzoni." msgstr "" -#: ../../../build/NEWS:10528 ../../../build/NEWS:13205 +#: ../../../build/NEWS:10751 ../../../build/NEWS:13428 msgid "" "`bpo-28849 `__: Do not define " "sys.implementation._multiarch on Android." msgstr "" -#: ../../../build/NEWS:10530 ../../../build/NEWS:13416 -#: ../../../build/NEWS:17507 +#: ../../../build/NEWS:10753 ../../../build/NEWS:13639 +#: ../../../build/NEWS:17730 msgid "" "`bpo-10656 `__: Fix out-of-tree building" " on AIX. Patch by Tristan Carel and Michael Haubenwallner." msgstr "" -#: ../../../build/NEWS:10533 ../../../build/NEWS:13419 -#: ../../../build/NEWS:17510 +#: ../../../build/NEWS:10756 ../../../build/NEWS:13642 +#: ../../../build/NEWS:17733 msgid "" "`bpo-26359 `__: Rename --with-" "optimiations to --enable-optimizations." msgstr "" -#: ../../../build/NEWS:10535 ../../../build/NEWS:13534 -#: ../../../build/NEWS:17512 +#: ../../../build/NEWS:10758 ../../../build/NEWS:13757 +#: ../../../build/NEWS:17735 msgid "" "`bpo-28444 `__: Fix missing extensions " "modules when cross compiling." msgstr "" -#: ../../../build/NEWS:10537 ../../../build/NEWS:13536 +#: ../../../build/NEWS:10760 ../../../build/NEWS:13759 msgid "" "`bpo-28208 `__: Update Windows build and" " OS X installers to use SQLite 3.14.2." msgstr "" -#: ../../../build/NEWS:10539 ../../../build/NEWS:13538 -#: ../../../build/NEWS:17514 +#: ../../../build/NEWS:10762 ../../../build/NEWS:13761 +#: ../../../build/NEWS:17737 msgid "" "`bpo-28248 `__: Update Windows build and" " OS X installers to use OpenSSL 1.0.2j." msgstr "" -#: ../../../build/NEWS:10541 +#: ../../../build/NEWS:10764 msgid "" "`bpo-21124 `__: Fix building the _struct" " module on Cygwin by passing ``NULL`` instead of ``&PyType_Type`` to " "PyVarObject_HEAD_INIT. Patch by Masayuki Yamamoto." msgstr "" -#: ../../../build/NEWS:10545 +#: ../../../build/NEWS:10768 msgid "" "`bpo-13756 `__: Fix building extensions " "modules on Cygwin. Patch by Roumen Petrov, based on original patch by Jason" " Tishler." msgstr "" -#: ../../../build/NEWS:10548 +#: ../../../build/NEWS:10771 msgid "" "`bpo-21085 `__: Add configure check for " "siginfo_t.si_band, which Cygwin does not provide. Patch by Masayuki Yamamoto" " with review and rebase by Erik Bray." msgstr "" -#: ../../../build/NEWS:10552 ../../../build/NEWS:13803 -#: ../../../build/NEWS:17516 +#: ../../../build/NEWS:10775 ../../../build/NEWS:14026 +#: ../../../build/NEWS:17739 msgid "" "`bpo-28258 `__: Fixed build with " "Estonian locale (python-config and distclean targets in Makefile). Patch by" " Arfrever Frehtes Taifersar Arahesis." msgstr "" -#: ../../../build/NEWS:10555 ../../../build/NEWS:13806 -#: ../../../build/NEWS:17519 +#: ../../../build/NEWS:10778 ../../../build/NEWS:14029 +#: ../../../build/NEWS:17742 msgid "" "`bpo-26661 `__: setup.py now detects " "system libffi with multiarch wrapper." msgstr "" -#: ../../../build/NEWS:10557 +#: ../../../build/NEWS:10780 msgid "" "`bpo-27979 `__: A full copy of libffi is" " no longer bundled for use when building _ctypes on non-OSX UNIX platforms." @@ -19270,84 +19693,84 @@ msgid "" "platforms." msgstr "" -#: ../../../build/NEWS:10561 ../../../build/NEWS:13808 -#: ../../../build/NEWS:17524 +#: ../../../build/NEWS:10784 ../../../build/NEWS:14031 +#: ../../../build/NEWS:17747 msgid "" "`bpo-15819 `__: Remove redundant include" " search directory option for building outside the source tree." msgstr "" -#: ../../../build/NEWS:10564 ../../../build/NEWS:13421 -#: ../../../build/NEWS:17561 +#: ../../../build/NEWS:10787 ../../../build/NEWS:13644 +#: ../../../build/NEWS:17784 msgid "" "`bpo-28676 `__: Prevent missing " "'getentropy' declaration warning on macOS. Patch by Gareth Rees." msgstr "" -#: ../../../build/NEWS:10570 +#: ../../../build/NEWS:10793 msgid "" "`bpo-31392 `__: Update Windows build to " "use OpenSSL 1.1.0f" msgstr "" -#: ../../../build/NEWS:10572 ../../../build/NEWS:12286 +#: ../../../build/NEWS:10795 ../../../build/NEWS:12509 msgid "" "`bpo-30389 `__: Adds detection of Visual" " Studio 2017 to distutils on Windows." msgstr "" -#: ../../../build/NEWS:10574 +#: ../../../build/NEWS:10797 msgid "" "`bpo-31358 `__: zlib is no longer " "bundled in the CPython source, instead it is downloaded on demand just like " "bz2, lzma, OpenSSL, Tcl/Tk, and SQLite." msgstr "" -#: ../../../build/NEWS:10577 ../../../build/NEWS:12288 +#: ../../../build/NEWS:10800 ../../../build/NEWS:12511 msgid "" "`bpo-31340 `__: Change to building with " "MSVC v141 (included with Visual Studio 2017)" msgstr "" -#: ../../../build/NEWS:10580 ../../../build/NEWS:12291 +#: ../../../build/NEWS:10803 ../../../build/NEWS:12514 msgid "" "`bpo-30581 `__: os.cpu_count() now " "returns the correct number of processors on Windows when the number of " "logical processors is greater than 64." msgstr "" -#: ../../../build/NEWS:10583 +#: ../../../build/NEWS:10806 msgid "" "`bpo-30916 `__: Pre-build OpenSSL, Tcl " "and Tk and include the binaries in the build." msgstr "" -#: ../../../build/NEWS:10586 ../../../build/NEWS:12294 +#: ../../../build/NEWS:10809 ../../../build/NEWS:12517 msgid "" "`bpo-30731 `__: Add a missing xmlns to " "python.manifest so that it matches the schema." msgstr "" -#: ../../../build/NEWS:10589 +#: ../../../build/NEWS:10812 msgid "" "`bpo-30291 `__: Allow requiring 64-bit " "interpreters from py.exe using -64 suffix. Contributed by Steve (Gadget) " "Barnes." msgstr "" -#: ../../../build/NEWS:10592 +#: ../../../build/NEWS:10815 msgid "" "`bpo-30362 `__: Adds list options (-0, " "-0p) to py.exe launcher. Contributed by Steve Barnes." msgstr "" -#: ../../../build/NEWS:10595 +#: ../../../build/NEWS:10818 msgid "" "`bpo-23451 `__: Fix socket deprecation " "warnings in socketmodule.c. Patch by Segev Finer." msgstr "" -#: ../../../build/NEWS:10598 ../../../build/NEWS:12863 +#: ../../../build/NEWS:10821 ../../../build/NEWS:13086 msgid "" "`bpo-30450 `__: The build process on " "Windows no longer depends on Subversion, instead pulling external code from " @@ -19355,100 +19778,100 @@ msgid "" "``py -3.6``), NuGet is used to download a copy of 32-bit Python." msgstr "" -#: ../../../build/NEWS:10603 +#: ../../../build/NEWS:10826 msgid "" "`bpo-29579 `__: Removes readme.txt from " "the installer." msgstr "" -#: ../../../build/NEWS:10605 ../../../build/NEWS:13120 +#: ../../../build/NEWS:10828 ../../../build/NEWS:13343 msgid "" "`bpo-25778 `__: winreg does not truncate" " string correctly (Patch by Eryk Sun)" msgstr "" -#: ../../../build/NEWS:10607 +#: ../../../build/NEWS:10830 msgid "" "`bpo-28896 `__: Deprecate " "WindowsRegistryFinder and disable it by default" msgstr "" -#: ../../../build/NEWS:10609 ../../../build/NEWS:13529 +#: ../../../build/NEWS:10832 ../../../build/NEWS:13752 msgid "" "`bpo-28522 `__: Fixes mishandled buffer " "reallocation in getpathp.c" msgstr "" -#: ../../../build/NEWS:10611 ../../../build/NEWS:13770 +#: ../../../build/NEWS:10834 ../../../build/NEWS:13993 msgid "" "`bpo-28402 `__: Adds signed catalog " "files for stdlib on Windows." msgstr "" -#: ../../../build/NEWS:10613 ../../../build/NEWS:13772 +#: ../../../build/NEWS:10836 ../../../build/NEWS:13995 msgid "" "`bpo-28333 `__: Enables Unicode for " "ps1/ps2 and input() prompts. (Patch by Eryk Sun)" msgstr "" -#: ../../../build/NEWS:10616 ../../../build/NEWS:13775 -#: ../../../build/NEWS:17488 +#: ../../../build/NEWS:10839 ../../../build/NEWS:13998 +#: ../../../build/NEWS:17711 msgid "" "`bpo-28251 `__: Improvements to help " "manuals on Windows." msgstr "" -#: ../../../build/NEWS:10618 ../../../build/NEWS:13777 -#: ../../../build/NEWS:17490 +#: ../../../build/NEWS:10841 ../../../build/NEWS:14000 +#: ../../../build/NEWS:17713 msgid "" "`bpo-28110 `__: launcher.msi has " "different product codes between 32-bit and 64-bit" msgstr "" -#: ../../../build/NEWS:10621 ../../../build/NEWS:13780 +#: ../../../build/NEWS:10844 ../../../build/NEWS:14003 msgid "" "`bpo-28161 `__: Opening CON for write " "access fails" msgstr "" -#: ../../../build/NEWS:10623 ../../../build/NEWS:13782 +#: ../../../build/NEWS:10846 ../../../build/NEWS:14005 msgid "" "`bpo-28162 `__: WindowsConsoleIO " "readall() fails if first line starts with Ctrl+Z" msgstr "" -#: ../../../build/NEWS:10626 ../../../build/NEWS:13785 +#: ../../../build/NEWS:10849 ../../../build/NEWS:14008 msgid "" "`bpo-28163 `__: WindowsConsoleIO " "fileno() passes wrong flags to _open_osfhandle" msgstr "" -#: ../../../build/NEWS:10628 ../../../build/NEWS:13787 +#: ../../../build/NEWS:10851 ../../../build/NEWS:14010 msgid "" "`bpo-28164 `__: _PyIO_get_console_type " "fails for various paths" msgstr "" -#: ../../../build/NEWS:10630 ../../../build/NEWS:13789 +#: ../../../build/NEWS:10853 ../../../build/NEWS:14012 msgid "" "`bpo-28137 `__: Renames Windows path " "file to ._pth" msgstr "" -#: ../../../build/NEWS:10632 ../../../build/NEWS:13791 +#: ../../../build/NEWS:10855 ../../../build/NEWS:14014 msgid "" "`bpo-28138 `__: Windows ._pth file " "should allow import site" msgstr "" -#: ../../../build/NEWS:10637 ../../../build/NEWS:12300 +#: ../../../build/NEWS:10860 ../../../build/NEWS:12523 msgid "" "`bpo-31493 `__: IDLE code context -- fix" " code update and font update timers. Canceling timers prevents a warning " "message when test_idle completes." msgstr "" -#: ../../../build/NEWS:10640 ../../../build/NEWS:12303 +#: ../../../build/NEWS:10863 ../../../build/NEWS:12526 msgid "" "`bpo-31488 `__: IDLE - Update non-key " "options in former extension classes. When applying configdialog changes, " @@ -19456,20 +19879,20 @@ msgid "" "affect existing instances attached to existing editor windows." msgstr "" -#: ../../../build/NEWS:10645 ../../../build/NEWS:12308 +#: ../../../build/NEWS:10868 ../../../build/NEWS:12531 msgid "" "`bpo-31477 `__: IDLE - Improve rstrip " "entry in doc. Strip trailing whitespace strips more than blank spaces. " "Multiline string literals are not skipped." msgstr "" -#: ../../../build/NEWS:10648 ../../../build/NEWS:12311 +#: ../../../build/NEWS:10871 ../../../build/NEWS:12534 msgid "" "`bpo-31480 `__: IDLE - make tests pass " "with zzdummy extension disabled by default." msgstr "" -#: ../../../build/NEWS:10651 ../../../build/NEWS:12314 +#: ../../../build/NEWS:10874 ../../../build/NEWS:12537 msgid "" "`bpo-31421 `__: Document how IDLE runs " "tkinter programs. IDLE calls tcl/tk update in the background in order to " @@ -19477,33 +19900,33 @@ msgid "" "easier." msgstr "" -#: ../../../build/NEWS:10655 ../../../build/NEWS:12318 +#: ../../../build/NEWS:10878 ../../../build/NEWS:12541 msgid "" "`bpo-31414 `__: IDLE -- fix tk entry box" " tests by deleting first. Adding to an int entry is not the same as deleting" " and inserting because int('') will fail." msgstr "" -#: ../../../build/NEWS:10659 ../../../build/NEWS:12322 +#: ../../../build/NEWS:10882 ../../../build/NEWS:12545 msgid "" "`bpo-31051 `__: Rearrange IDLE " "configdialog GenPage into Window, Editor, and Help sections." msgstr "" -#: ../../../build/NEWS:10662 ../../../build/NEWS:12325 +#: ../../../build/NEWS:10885 ../../../build/NEWS:12548 msgid "" "`bpo-30617 `__: IDLE - Add docstrings " "and tests for outwin subclass of editor. Move some data and functions from " "the class to module level. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10666 ../../../build/NEWS:12329 +#: ../../../build/NEWS:10889 ../../../build/NEWS:12552 msgid "" "`bpo-31287 `__: IDLE - Do not modify " "tkinter.message in test_configdialog." msgstr "" -#: ../../../build/NEWS:10668 ../../../build/NEWS:12331 +#: ../../../build/NEWS:10891 ../../../build/NEWS:12554 msgid "" "`bpo-27099 `__: Convert IDLE's built-in " "'extensions' to regular features. About 10 IDLE features were implemented as" @@ -19522,72 +19945,72 @@ msgid "" "Initial patch by Charles Wohlganger." msgstr "" -#: ../../../build/NEWS:10684 ../../../build/NEWS:12347 +#: ../../../build/NEWS:10907 ../../../build/NEWS:12570 msgid "" "`bpo-31206 `__: IDLE: Factor " "HighPage(Frame) class from ConfigDialog. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10687 ../../../build/NEWS:12350 +#: ../../../build/NEWS:10910 ../../../build/NEWS:12573 msgid "" "`bpo-31001 `__: Add tests for " "configdialog highlight tab. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10690 ../../../build/NEWS:12353 +#: ../../../build/NEWS:10913 ../../../build/NEWS:12576 msgid "" "`bpo-31205 `__: IDLE: Factor " "KeysPage(Frame) class from ConfigDialog. The slightly modified tests " "continue to pass. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10693 ../../../build/NEWS:12356 +#: ../../../build/NEWS:10916 ../../../build/NEWS:12579 msgid "" "`bpo-31130 `__: IDLE -- stop leaks in " "test_configdialog. Initial patch by Victor Stinner." msgstr "" -#: ../../../build/NEWS:10696 ../../../build/NEWS:12359 +#: ../../../build/NEWS:10919 ../../../build/NEWS:12582 msgid "" "`bpo-31002 `__: Add tests for " "configdialog keys tab. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10698 ../../../build/NEWS:12361 +#: ../../../build/NEWS:10921 ../../../build/NEWS:12584 msgid "" "`bpo-19903 `__: IDLE: Calltips use " "`inspect.signature` instead of `inspect.getfullargspec`. This improves " "calltips for builtins converted to use Argument Clinic. Patch by Louie Lu." msgstr "" -#: ../../../build/NEWS:10702 ../../../build/NEWS:12365 +#: ../../../build/NEWS:10925 ../../../build/NEWS:12588 msgid "" "`bpo-31083 `__: IDLE - Add an outline of" " a TabPage class in configdialog. Update existing classes to match outline. " "Initial patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10705 ../../../build/NEWS:12368 +#: ../../../build/NEWS:10928 ../../../build/NEWS:12591 msgid "" "`bpo-31050 `__: Factor GenPage(Frame) " "class from ConfigDialog. The slightly modified tests continue to pass. Patch" " by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10708 ../../../build/NEWS:12371 +#: ../../../build/NEWS:10931 ../../../build/NEWS:12594 msgid "" "`bpo-31004 `__: IDLE - Factor " "FontPage(Frame) class from ConfigDialog. Slightly modified tests continue to" " pass. Fix General tests. Patch mostly by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10712 ../../../build/NEWS:12375 +#: ../../../build/NEWS:10935 ../../../build/NEWS:12598 msgid "" "`bpo-30781 `__: IDLE - Use ttk widgets " "in ConfigDialog. Patches by Terry Jan Reedy and Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10715 ../../../build/NEWS:12378 +#: ../../../build/NEWS:10938 ../../../build/NEWS:12601 msgid "" "`bpo-31060 `__: IDLE - Finish " "rearranging methods of ConfigDialog Grouping methods pertaining to each tab " @@ -19595,7 +20018,7 @@ msgid "" "enable splitting the groups into classes." msgstr "" -#: ../../../build/NEWS:10719 ../../../build/NEWS:12382 +#: ../../../build/NEWS:10942 ../../../build/NEWS:12605 msgid "" "`bpo-30853 `__: IDLE -- Factor a " "VarTrace class out of ConfigDialog. Instance tracers manages pairs " @@ -19604,13 +20027,13 @@ msgid "" "class is 100%." msgstr "" -#: ../../../build/NEWS:10724 ../../../build/NEWS:12387 +#: ../../../build/NEWS:10947 ../../../build/NEWS:12610 msgid "" "`bpo-31003 `__: IDLE: Add more tests for" " General tab." msgstr "" -#: ../../../build/NEWS:10726 ../../../build/NEWS:12389 +#: ../../../build/NEWS:10949 ../../../build/NEWS:12612 msgid "" "`bpo-30993 `__: IDLE - Improve " "configdialog font page and tests. In configdialog: Document causal pathways " @@ -19624,26 +20047,26 @@ msgid "" "completely cover the related functions." msgstr "" -#: ../../../build/NEWS:10737 ../../../build/NEWS:12400 +#: ../../../build/NEWS:10960 ../../../build/NEWS:12623 msgid "" "`bpo-30981 `__: IDLE -- Add more " "configdialog font page tests." msgstr "" -#: ../../../build/NEWS:10739 ../../../build/NEWS:12402 +#: ../../../build/NEWS:10962 ../../../build/NEWS:12625 msgid "" "`bpo-28523 `__: IDLE: replace 'colour' " "with 'color' in configdialog." msgstr "" -#: ../../../build/NEWS:10741 ../../../build/NEWS:12404 +#: ../../../build/NEWS:10964 ../../../build/NEWS:12627 msgid "" "`bpo-30917 `__: Add tests for " "idlelib.config.IdleConf. Increase coverage from 46% to 96%. Patch by Louie " "Lu." msgstr "" -#: ../../../build/NEWS:10744 ../../../build/NEWS:12407 +#: ../../../build/NEWS:10967 ../../../build/NEWS:12630 msgid "" "`bpo-30934 `__: Document coverage " "details for idlelib tests. Add section to idlelib/idle-test/README.txt. " @@ -19651,7 +20074,7 @@ msgid "" "that does not run during unit tests." msgstr "" -#: ../../../build/NEWS:10748 ../../../build/NEWS:12411 +#: ../../../build/NEWS:10971 ../../../build/NEWS:12634 msgid "" "`bpo-30913 `__: IDLE: Document " "ConfigDialog tk Vars, methods, and widgets in docstrings This will " @@ -19659,39 +20082,39 @@ msgid "" "by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10752 ../../../build/NEWS:12415 +#: ../../../build/NEWS:10975 ../../../build/NEWS:12638 msgid "" "`bpo-30899 `__: IDLE: Add tests for " "ConfigParser subclasses in config. Patch by Louie Lu." msgstr "" -#: ../../../build/NEWS:10755 ../../../build/NEWS:12418 +#: ../../../build/NEWS:10978 ../../../build/NEWS:12641 msgid "" "`bpo-30881 `__: IDLE: Add docstrings to " "browser.py. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10757 ../../../build/NEWS:12420 +#: ../../../build/NEWS:10980 ../../../build/NEWS:12643 msgid "" "`bpo-30851 `__: IDLE: Remove unused " "variables in configdialog. One is a duplicate, one is set but cannot be " "altered by users. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10761 ../../../build/NEWS:12424 +#: ../../../build/NEWS:10984 ../../../build/NEWS:12647 msgid "" "`bpo-30870 `__: IDLE: In Settings " "dialog, select font with Up, Down keys as well as mouse. Initial patch by " "Louie Lu." msgstr "" -#: ../../../build/NEWS:10764 ../../../build/NEWS:12427 +#: ../../../build/NEWS:10987 ../../../build/NEWS:12650 msgid "" "`bpo-8231 `__: IDLE: call " "config.IdleConf.GetUserCfgDir only once." msgstr "" -#: ../../../build/NEWS:10766 ../../../build/NEWS:12429 +#: ../../../build/NEWS:10989 ../../../build/NEWS:12652 msgid "" "`bpo-30779 `__: IDLE: Factor " "ConfigChanges class from configdialog, put in config; test. * In config, put" @@ -19704,19 +20127,19 @@ msgid "" "Sabella contributed parts of the patch." msgstr "" -#: ../../../build/NEWS:10776 ../../../build/NEWS:12439 +#: ../../../build/NEWS:10999 ../../../build/NEWS:12662 msgid "" "`bpo-30777 `__: IDLE: configdialog - Add" " docstrings and fix comments. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10779 ../../../build/NEWS:12442 +#: ../../../build/NEWS:11002 ../../../build/NEWS:12665 msgid "" "`bpo-30495 `__: IDLE: Improve textview " "with docstrings, PEP8 names, and more tests. Patch by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10782 ../../../build/NEWS:12445 +#: ../../../build/NEWS:11005 ../../../build/NEWS:12668 msgid "" "`bpo-30723 `__: IDLE: Make several " "improvements to parenmatch. Add 'parens' style to highlight both opener and " @@ -19726,20 +20149,20 @@ msgid "" "patch by Charles Wohlganger." msgstr "" -#: ../../../build/NEWS:10788 ../../../build/NEWS:12451 +#: ../../../build/NEWS:11011 ../../../build/NEWS:12674 msgid "" "`bpo-30674 `__: IDLE: add docstrings to " "grep module. Patch by Cheryl Sabella" msgstr "" -#: ../../../build/NEWS:10790 ../../../build/NEWS:12453 +#: ../../../build/NEWS:11013 ../../../build/NEWS:12676 msgid "" "`bpo-21519 `__: IDLE's basic custom key " "entry dialog now detects duplicates properly. Original patch by Saimadhav " "Heblikar." msgstr "" -#: ../../../build/NEWS:10793 ../../../build/NEWS:12456 +#: ../../../build/NEWS:11016 ../../../build/NEWS:12679 msgid "" "`bpo-29910 `__: IDLE no longer deletes a" " character after commenting out a region by a key shortcut. Add ``return " @@ -19747,7 +20170,7 @@ msgid "" "key bindings." msgstr "" -#: ../../../build/NEWS:10797 ../../../build/NEWS:12460 +#: ../../../build/NEWS:11020 ../../../build/NEWS:12683 msgid "" "`bpo-30728 `__: Review and change " "idlelib.configdialog names. Lowercase method and attribute names. Replace " @@ -19756,14 +20179,14 @@ msgid "" "Sabella." msgstr "" -#: ../../../build/NEWS:10802 ../../../build/NEWS:12465 +#: ../../../build/NEWS:11025 ../../../build/NEWS:12688 msgid "" "`bpo-6739 `__: IDLE: Verify user-entered " "key sequences by trying to bind them with tk. Add tests for all 3 validation" " functions. Original patch by G Polo. Tests added by Cheryl Sabella." msgstr "" -#: ../../../build/NEWS:10806 ../../../build/NEWS:12775 +#: ../../../build/NEWS:11029 ../../../build/NEWS:12998 msgid "" "`bpo-15786 `__: Fix several problems " "with IDLE's autocompletion box. The following should now work: clicking on " @@ -19771,54 +20194,54 @@ msgid "" "Return. Hangs on MacOSX should no longer happen. Patch by Louie Lu." msgstr "" -#: ../../../build/NEWS:10811 ../../../build/NEWS:12780 +#: ../../../build/NEWS:11034 ../../../build/NEWS:13003 msgid "" "`bpo-25514 `__: Add doc subsubsection " "about IDLE failure to start. Popup no-connection message directs users to " "this section." msgstr "" -#: ../../../build/NEWS:10814 ../../../build/NEWS:12783 +#: ../../../build/NEWS:11037 ../../../build/NEWS:13006 msgid "" "`bpo-30642 `__: Fix reference leaks in " "IDLE tests. Patches by Louie Lu and Terry Jan Reedy." msgstr "" -#: ../../../build/NEWS:10817 ../../../build/NEWS:12786 +#: ../../../build/NEWS:11040 ../../../build/NEWS:13009 msgid "" "`bpo-30495 `__: Add docstrings for " "textview.py and use PEP8 names. Patches by Cheryl Sabella and Terry Jan " "Reedy." msgstr "" -#: ../../../build/NEWS:10820 ../../../build/NEWS:12789 +#: ../../../build/NEWS:11043 ../../../build/NEWS:13012 msgid "" "`bpo-30290 `__: Help-about: use pep8 " "names and add tests. Increase coverage to 100%. Patches by Louie Lu, Cheryl " "Sabella, and Terry Jan Reedy." msgstr "" -#: ../../../build/NEWS:10823 ../../../build/NEWS:12792 +#: ../../../build/NEWS:11046 ../../../build/NEWS:13015 msgid "" "`bpo-30303 `__: Add _utest option to " "textview; add new tests. Increase coverage to 100%. Patches by Louie Lu and " "Terry Jan Reedy." msgstr "" -#: ../../../build/NEWS:10826 ../../../build/NEWS:13101 +#: ../../../build/NEWS:11049 ../../../build/NEWS:13324 msgid "" "`bpo-29071 `__: IDLE colors f-string " "prefixes (but not invalid ur prefixes)." msgstr "" -#: ../../../build/NEWS:10828 ../../../build/NEWS:13103 +#: ../../../build/NEWS:11051 ../../../build/NEWS:13326 msgid "" "`bpo-28572 `__: Add 10% to coverage of " "IDLE's test_configdialog. Update and augment description of the " "configuration system." msgstr "" -#: ../../../build/NEWS:10834 ../../../build/NEWS:12472 +#: ../../../build/NEWS:11057 ../../../build/NEWS:12695 msgid "" "`bpo-30983 `__: gdb integration commands" " (py-bt, etc.) work on optimized shared builds now, too. :pep:`523` " @@ -19829,13 +20252,13 @@ msgid "" "Bruno \"Polaco\" Penteado." msgstr "" -#: ../../../build/NEWS:10842 +#: ../../../build/NEWS:11065 msgid "" "`bpo-29748 `__: Added the slice index " "converter in Argument Clinic." msgstr "" -#: ../../../build/NEWS:10844 +#: ../../../build/NEWS:11067 msgid "" "`bpo-24037 `__: Argument Clinic now uses" " the converter `bool(accept={int})` rather than `int` for semantical " @@ -19843,19 +20266,19 @@ msgid "" " help in converting to `bool` in future." msgstr "" -#: ../../../build/NEWS:10849 ../../../build/NEWS:12840 +#: ../../../build/NEWS:11072 ../../../build/NEWS:13063 msgid "" "`bpo-29367 `__: python-gdb.py now " "supports also ``method-wrapper`` (``wrapperobject``) objects." msgstr "" -#: ../../../build/NEWS:10852 ../../../build/NEWS:13308 +#: ../../../build/NEWS:11075 ../../../build/NEWS:13531 msgid "" "`bpo-28023 `__: Fix python-gdb.py didn't" " support new dict implementation." msgstr "" -#: ../../../build/NEWS:10854 +#: ../../../build/NEWS:11077 msgid "" "`bpo-15369 `__: The pybench and pystone " "microbenchmark have been removed from Tools. Please use the new Python " @@ -19864,13 +20287,13 @@ msgid "" "3." msgstr "" -#: ../../../build/NEWS:10859 +#: ../../../build/NEWS:11082 msgid "" "`bpo-28102 `__: The zipfile module CLI " "now prints usage to stderr. Patch by Stephen J. Turnbull." msgstr "" -#: ../../../build/NEWS:10865 +#: ../../../build/NEWS:11088 msgid "" "`bpo-31338 `__: Added the " "``Py_UNREACHABLE()`` macro for code paths which are never expected to be " @@ -19878,7 +20301,7 @@ msgid "" " manual." msgstr "" -#: ../../../build/NEWS:10869 +#: ../../../build/NEWS:11092 msgid "" "`bpo-30832 `__: Remove own " "implementation for thread-local storage. CPython has provided the own " @@ -19889,21 +20312,21 @@ msgid "" "any case." msgstr "" -#: ../../../build/NEWS:10876 +#: ../../../build/NEWS:11099 msgid "" "`bpo-30708 `__: " "PyUnicode_AsWideCharString() now raises a ValueError if the second argument " "is NULL and the wchar_t\\* string contains null characters." msgstr "" -#: ../../../build/NEWS:10879 +#: ../../../build/NEWS:11102 msgid "" "`bpo-16500 `__: Deprecate " "PyOS_AfterFork() and add PyOS_BeforeFork(), PyOS_AfterFork_Parent() and " "PyOS_AfterFork_Child()." msgstr "" -#: ../../../build/NEWS:10882 +#: ../../../build/NEWS:11105 msgid "" "`bpo-6532 `__: The type of results of " "PyThread_start_new_thread() and PyThread_get_thread_ident(), and the id " @@ -19911,7 +20334,7 @@ msgid "" " long\"." msgstr "" -#: ../../../build/NEWS:10886 +#: ../../../build/NEWS:11109 msgid "" "`bpo-27867 `__: Function " "PySlice_GetIndicesEx() is deprecated and replaced with a macro if " @@ -19920,8 +20343,8 @@ msgid "" "PySlice_Unpack() and PySlice_AdjustIndices()." msgstr "" -#: ../../../build/NEWS:10891 ../../../build/NEWS:13131 -#: ../../../build/NEWS:16858 +#: ../../../build/NEWS:11114 ../../../build/NEWS:13354 +#: ../../../build/NEWS:17081 msgid "" "`bpo-29083 `__: Fixed the declaration of" " some public API functions. PyArg_VaParse() and " @@ -19931,14 +20354,14 @@ msgid "" "defined." msgstr "" -#: ../../../build/NEWS:10897 +#: ../../../build/NEWS:11120 msgid "" "`bpo-28769 `__: The result of " "PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8() is now of type ``const char" " *`` rather of ``char *``." msgstr "" -#: ../../../build/NEWS:10900 ../../../build/NEWS:13137 +#: ../../../build/NEWS:11123 ../../../build/NEWS:13360 msgid "" "`bpo-29058 `__: All stable API " "extensions added after Python 3.2 are now available only when Py_LIMITED_API" @@ -19946,21 +20369,21 @@ msgid "" " this API." msgstr "" -#: ../../../build/NEWS:10904 +#: ../../../build/NEWS:11127 msgid "" "`bpo-28822 `__: The index parameters " "*start* and *end* of PyUnicode_FindChar() are now adjusted to behave like " "``str[start:end]``." msgstr "" -#: ../../../build/NEWS:10907 ../../../build/NEWS:13295 -#: ../../../build/NEWS:17443 +#: ../../../build/NEWS:11130 ../../../build/NEWS:13518 +#: ../../../build/NEWS:17666 msgid "" "`bpo-28808 `__: " "PyUnicode_CompareWithASCIIString() now never raises exceptions." msgstr "" -#: ../../../build/NEWS:10909 +#: ../../../build/NEWS:11132 msgid "" "`bpo-28761 `__: The fields name and doc " "of structures PyMemberDef, PyGetSetDef, PyStructSequence_Field, " @@ -19968,129 +20391,129 @@ msgid "" "rather of ``char *``." msgstr "" -#: ../../../build/NEWS:10913 +#: ../../../build/NEWS:11136 msgid "" "`bpo-28748 `__: Private variable " "_Py_PackageContext is now of type ``const char *`` rather of ``char *``." msgstr "" -#: ../../../build/NEWS:10916 +#: ../../../build/NEWS:11139 msgid "" "`bpo-19569 `__: Compiler warnings are " "now emitted if use most of deprecated functions." msgstr "" -#: ../../../build/NEWS:10919 ../../../build/NEWS:13796 +#: ../../../build/NEWS:11142 ../../../build/NEWS:14019 msgid "" "`bpo-28426 `__: Deprecated undocumented " "functions PyUnicode_AsEncodedObject(), PyUnicode_AsDecodedObject(), " "PyUnicode_AsDecodedUnicode() and PyUnicode_AsEncodedUnicode()." msgstr "" -#: ../../../build/NEWS:10925 +#: ../../../build/NEWS:11148 msgid "Python 3.6.6 final" msgstr "Python 3.6.6 final" -#: ../../../build/NEWS:10929 +#: ../../../build/NEWS:11152 msgid "There were no new changes in version 3.6.6." msgstr "Tidak ada perubahan baru di versi 3.6.6." -#: ../../../build/NEWS:10934 +#: ../../../build/NEWS:11157 msgid "Python 3.6.6 release candidate 1" msgstr "Python 3.6.6 kandidat rilis 1" -#: ../../../build/NEWS:10936 +#: ../../../build/NEWS:11159 msgid "*Release date: 2018-06-11*" msgstr "*Tanggal rilis: 2018-06-11*" -#: ../../../build/NEWS:11167 +#: ../../../build/NEWS:11390 msgid "" "`bpo-33184 `__: Update Windows installer" " to OpenSSL 1.0.2o." msgstr "" -#: ../../../build/NEWS:11172 +#: ../../../build/NEWS:11395 msgid "" "`bpo-33184 `__: Update macOS installer " "build to use OpenSSL 1.0.2o." msgstr "" -#: ../../../build/NEWS:11204 +#: ../../../build/NEWS:11427 msgid "" "`bpo-29706 `__: IDLE now colors async " "and await as keywords in 3.6. They become full keywords in 3.7." msgstr "" -#: ../../../build/NEWS:11245 +#: ../../../build/NEWS:11468 msgid "Python 3.6.5 final" msgstr "Python 3.6.5 final" -#: ../../../build/NEWS:11247 +#: ../../../build/NEWS:11470 msgid "*Release date: 2018-03-28*" msgstr "*Tanggal rilis: 2018-03-28*" -#: ../../../build/NEWS:11261 +#: ../../../build/NEWS:11484 msgid "Python 3.6.5 release candidate 1" msgstr "Python 3.6.5 kandidat rilis 1" -#: ../../../build/NEWS:11263 +#: ../../../build/NEWS:11486 msgid "*Release date: 2018-03-13*" msgstr "*Tanggal rilis: 2018-03-13*" -#: ../../../build/NEWS:11302 +#: ../../../build/NEWS:11525 msgid "" "`bpo-32329 `__: " "``sys.flags.hash_randomization`` is now properly set to 0 when hash " "randomization is turned off by ``PYTHONHASHSEED=0``." msgstr "" -#: ../../../build/NEWS:11305 +#: ../../../build/NEWS:11528 msgid "" "`bpo-30416 `__: The optimizer is now " "protected from spending much time doing complex calculations and consuming " "much memory for creating large constants in constant folding." msgstr "" -#: ../../../build/NEWS:11332 +#: ../../../build/NEWS:11555 msgid "" "`bpo-30353 `__: Fix ctypes pass-by-value" " for structs on 64-bit Cygwin/MinGW." msgstr "" -#: ../../../build/NEWS:11370 +#: ../../../build/NEWS:11593 msgid "" "`bpo-32394 `__: socket: Remove " "TCP_FASTOPEN, TCP_KEEPCNT flags on older version Windows during run-time." msgstr "" -#: ../../../build/NEWS:11402 +#: ../../../build/NEWS:11625 msgid "" "`bpo-32555 `__: On FreeBSD and Solaris, " "os.strerror() now always decode the byte string from the current locale " "encoding, rather than using ASCII/surrogateescape in some cases." msgstr "" -#: ../../../build/NEWS:11420 +#: ../../../build/NEWS:11643 msgid "" "`bpo-32185 `__: The SSL module no longer" " sends IP addresses in SNI TLS extension on platforms with OpenSSL 1.0.2+ or" " inet_pton." msgstr "" -#: ../../../build/NEWS:11485 +#: ../../../build/NEWS:11708 msgid "" "`bpo-31518 `__: Debian Unstable has " "disabled TLS 1.0 and 1.1 for SSLv23_METHOD(). Change TLS/SSL protocol of " "some tests to PROTOCOL_TLS or PROTOCOL_TLSv1_2 to make them pass on Debian." msgstr "" -#: ../../../build/NEWS:11518 +#: ../../../build/NEWS:11741 msgid "" "`bpo-32588 `__: Create standalone " "_distutils_findvs module." msgstr "" -#: ../../../build/NEWS:11523 +#: ../../../build/NEWS:11746 msgid "" "`bpo-32726 `__: Provide an additional, " "more modern macOS installer variant that supports macOS 10.9+ systems in " @@ -20099,29 +20522,29 @@ msgid "" "supplies its own copy of Tcl/Tk 8.6.8." msgstr "" -#: ../../../build/NEWS:11579 +#: ../../../build/NEWS:11802 msgid "Python 3.6.4 final" msgstr "Python 3.6.4 final" -#: ../../../build/NEWS:11581 +#: ../../../build/NEWS:11804 msgid "*Release date: 2017-12-18*" msgstr "*Tanggal rilis: 2017-12-18*" -#: ../../../build/NEWS:11583 +#: ../../../build/NEWS:11806 msgid "There were no new code changes in version 3.6.4 since v3.6.4rc1." msgstr "Tidak ada perubahan kode di versi 3.6.4 sejak v3.6.4rc1." -#: ../../../build/NEWS:11588 +#: ../../../build/NEWS:11811 msgid "Python 3.6.4 release candidate 1" msgstr "Python 3.6.4 kandidat rilis 1" -#: ../../../build/NEWS:11617 +#: ../../../build/NEWS:11840 msgid "" "`bpo-31852 `__: Fix a segmentation fault" " caused by a combination of the async soft keyword and continuation lines." msgstr "" -#: ../../../build/NEWS:11951 +#: ../../../build/NEWS:12174 msgid "" "`bpo-13802 `__: Use non-Latin characters" " in the IDLE's Font settings sample. Even if one selects a font that defines" @@ -20132,163 +20555,163 @@ msgid "" "re-arranged. The Font/Tabs help explains a bit about the additions." msgstr "" -#: ../../../build/NEWS:12007 +#: ../../../build/NEWS:12230 msgid "Python 3.6.3 final" msgstr "Python 3.6.3 final" -#: ../../../build/NEWS:12009 +#: ../../../build/NEWS:12232 msgid "*Release date: 2017-10-03*" msgstr "*Tanggal rilis: 2017-10-03*" -#: ../../../build/NEWS:12014 +#: ../../../build/NEWS:12237 msgid "" "`bpo-31641 `__: Re-allow arbitrary " "iterables in `concurrent.futures.as_completed()`. Fixes regression in " "3.6.3rc1." msgstr "" -#: ../../../build/NEWS:12020 +#: ../../../build/NEWS:12243 msgid "" "`bpo-31662 `__: Fix typos in Windows " "``uploadrelease.bat`` script. Fix Windows Doc build issues in " "``Doc/make.bat``." msgstr "" -#: ../../../build/NEWS:12023 +#: ../../../build/NEWS:12246 msgid "" "`bpo-31423 `__: Fix building the PDF " "documentation with newer versions of Sphinx." msgstr "" -#: ../../../build/NEWS:12028 +#: ../../../build/NEWS:12251 msgid "Python 3.6.3 release candidate 1" msgstr "Python 3.6.3 kandidat rilis 1" -#: ../../../build/NEWS:12030 +#: ../../../build/NEWS:12253 msgid "*Release date: 2017-09-18*" msgstr "*Tanggal rilis: 2017-09-18*" -#: ../../../build/NEWS:12482 +#: ../../../build/NEWS:12705 msgid "Python 3.6.2 final" msgstr "Python 3.6.2 final" -#: ../../../build/NEWS:12484 +#: ../../../build/NEWS:12707 msgid "*Release date: 2017-07-17*" msgstr "*Tanggal rilis: 2017-07-17*" -#: ../../../build/NEWS:12486 ../../../build/NEWS:13213 +#: ../../../build/NEWS:12709 ../../../build/NEWS:13436 msgid "No changes since release candidate 2" msgstr "Tidak ada perubahan sejak kandidat rilis 2" -#: ../../../build/NEWS:12491 +#: ../../../build/NEWS:12714 msgid "Python 3.6.2 release candidate 2" msgstr "Python 3.6.2 kandidat rilis 2" -#: ../../../build/NEWS:12493 +#: ../../../build/NEWS:12716 msgid "*Release date: 2017-07-07*" msgstr "*Tanggal rilis: 2017-07-07*" -#: ../../../build/NEWS:12518 +#: ../../../build/NEWS:12741 msgid "Python 3.6.2 release candidate 1" msgstr "Python 3.6.2 kandidat rilis 1" -#: ../../../build/NEWS:12520 +#: ../../../build/NEWS:12743 msgid "*Release date: 2017-06-17*" msgstr "*Tanggal rilis: 2017-06-17*" -#: ../../../build/NEWS:12528 +#: ../../../build/NEWS:12751 msgid "" "`bpo-30604 `__: Move co_extra_freefuncs " "to not be per-thread to avoid crashes" msgstr "" -#: ../../../build/NEWS:12558 ../../../build/NEWS:16510 +#: ../../../build/NEWS:12781 ../../../build/NEWS:16733 msgid "" "`bpo-29600 `__: Fix wrapping coroutine " "return values in StopIteration." msgstr "" -#: ../../../build/NEWS:12587 ../../../build/NEWS:16576 +#: ../../../build/NEWS:12810 ../../../build/NEWS:16799 msgid "" "`bpo-30645 `__: Fix path calculation in " "imp.load_package(), fixing it for cases when a package is only shipped with " "bytecodes. Patch by Alexandru Ardelean." msgstr "" -#: ../../../build/NEWS:12607 +#: ../../../build/NEWS:12830 msgid "" "`bpo-24484 `__: Avoid race condition in " "multiprocessing cleanup (#2159)" msgstr "" -#: ../../../build/NEWS:12681 ../../../build/NEWS:16644 +#: ../../../build/NEWS:12904 ../../../build/NEWS:16867 msgid "" "`bpo-26293 `__: Change resulted because " "of zipfile breakage. (See also: `bpo-29094 " "`__)" msgstr "" -#: ../../../build/NEWS:12755 ../../../build/NEWS:16711 +#: ../../../build/NEWS:12978 ../../../build/NEWS:16934 msgid "" "`bpo-28298 `__: Fix a bug that prevented" " array 'Q', 'L' and 'I' from accepting big intables (objects that have " "__int__) as elements. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:12798 +#: ../../../build/NEWS:13021 msgid "" "`bpo-27867 `__: Function " "PySlice_GetIndicesEx() no longer replaced with a macro if Py_LIMITED_API is " "not set." msgstr "" -#: ../../../build/NEWS:12870 +#: ../../../build/NEWS:13093 msgid "Python 3.6.1 final" msgstr "Python 3.6.1 final" -#: ../../../build/NEWS:12872 +#: ../../../build/NEWS:13095 msgid "*Release date: 2017-03-21*" msgstr "*Tanggal rilis: 2017-03-21*" -#: ../../../build/NEWS:12888 +#: ../../../build/NEWS:13111 msgid "" "`bpo-27593 `__: fix format of git " "information used in sys.version" msgstr "" -#: ../../../build/NEWS:12890 +#: ../../../build/NEWS:13113 msgid "Fix incompatible comment in python.h" msgstr "Perbaiki komentar yang tidak kompatibel di python.h" -#: ../../../build/NEWS:12894 +#: ../../../build/NEWS:13117 msgid "Python 3.6.1 release candidate 1" msgstr "Python 3.6.1 kandidat rilis 1" -#: ../../../build/NEWS:12896 +#: ../../../build/NEWS:13119 msgid "*Release date: 2017-03-04*" msgstr "*Tanggal rilis: 2017-03-04*" -#: ../../../build/NEWS:13007 ../../../build/NEWS:16743 +#: ../../../build/NEWS:13230 ../../../build/NEWS:16966 msgid "" "`bpo-29519 `__: Fix weakref spewing " "exceptions during interpreter shutdown when used with a rare combination of " "multiprocessing and custom codecs." msgstr "" -#: ../../../build/NEWS:13023 +#: ../../../build/NEWS:13246 msgid "" "`bpo-29316 `__: Restore the provisional " "status of typing module, add corresponding note to documentation. Patch by " "Ivan L." msgstr "" -#: ../../../build/NEWS:13029 ../../../build/NEWS:16759 +#: ../../../build/NEWS:13252 ../../../build/NEWS:16982 msgid "" "`bpo-29011 `__: Fix an important " "omission by adding Deque to the typing module." msgstr "" -#: ../../../build/NEWS:13043 +#: ../../../build/NEWS:13266 msgid "" "`bpo-29203 `__: functools.lru_cache() " "now respects :pep:`468` and preserves the order of keyword arguments. " @@ -20296,84 +20719,84 @@ msgid "" " potentially give different results." msgstr "" -#: ../../../build/NEWS:13050 ../../../build/NEWS:17016 +#: ../../../build/NEWS:13273 ../../../build/NEWS:17239 msgid "" "`bpo-29094 `__: Offsets in a ZIP file " "created with extern file object and modes \"w\" and \"x\" now are relative " "to the start of the file." msgstr "" -#: ../../../build/NEWS:13053 +#: ../../../build/NEWS:13276 msgid "" "`bpo-29085 `__: Allow " "random.Random.seed() to use high quality OS randomness rather than the pid " "and time." msgstr "" -#: ../../../build/NEWS:13056 +#: ../../../build/NEWS:13279 msgid "" "`bpo-29061 `__: Fixed bug in " "secrets.randbelow() which would hang when given a negative input. Patch by " "Brendan Donegan." msgstr "" -#: ../../../build/NEWS:13064 ../../../build/NEWS:17022 +#: ../../../build/NEWS:13287 ../../../build/NEWS:17245 msgid "" "`bpo-29119 `__: Fix weakrefs in the pure" " python version of collections.OrderedDict move_to_end() method. Contributed" " by Andra Bogildea." msgstr "" -#: ../../../build/NEWS:13076 +#: ../../../build/NEWS:13299 msgid "" "`bpo-29055 `__: Neaten-up empty " "population error on random.choice() by suppressing the upstream exception." msgstr "" -#: ../../../build/NEWS:13091 ../../../build/NEWS:17046 +#: ../../../build/NEWS:13314 ../../../build/NEWS:17269 msgid "" "`bpo-28847 `__: dbm.dumb now supports " "reading read-only files and no longer writes the index file when it is not " "changed." msgstr "" -#: ../../../build/NEWS:13109 +#: ../../../build/NEWS:13332 msgid "" "`bpo-29579 `__: Removes readme.txt from " "the installer" msgstr "" -#: ../../../build/NEWS:13111 +#: ../../../build/NEWS:13334 msgid "" "`bpo-29326 `__: Ignores blank lines in " "._pth files (Patch by Alexey Izbyshev)" msgstr "" -#: ../../../build/NEWS:13113 +#: ../../../build/NEWS:13336 msgid "" "`bpo-28164 `__: Correctly handle special" " console filenames (patch by Eryk Sun)" msgstr "" -#: ../../../build/NEWS:13115 +#: ../../../build/NEWS:13338 msgid "" "`bpo-29409 `__: Implement :pep:`529` for" " io.FileIO (Patch by Eryk Sun)" msgstr "" -#: ../../../build/NEWS:13117 ../../../build/NEWS:16848 +#: ../../../build/NEWS:13340 ../../../build/NEWS:17071 msgid "" "`bpo-29392 `__: Prevent crash when " "passing invalid arguments into msvcrt module." msgstr "" -#: ../../../build/NEWS:13122 +#: ../../../build/NEWS:13345 msgid "" "`bpo-28896 `__: Deprecate " "WindowsRegistryFinder and disable it by default." msgstr "" -#: ../../../build/NEWS:13127 +#: ../../../build/NEWS:13350 msgid "" "`bpo-27867 `__: Function " "PySlice_GetIndicesEx() is replaced with a macro if Py_LIMITED_API is not set" @@ -20381,7 +20804,7 @@ msgid "" "0x03060100 or higher." msgstr "" -#: ../../../build/NEWS:13157 ../../../build/NEWS:16813 +#: ../../../build/NEWS:13380 ../../../build/NEWS:17036 msgid "" "`bpo-28087 `__: Skip test_asyncore and " "test_eintr poll failures on macOS. Skip some tests of select.poll when " @@ -20389,7 +20812,7 @@ msgid "" "function on some macOS versions." msgstr "" -#: ../../../build/NEWS:13161 ../../../build/NEWS:16823 +#: ../../../build/NEWS:13384 ../../../build/NEWS:17046 msgid "" "`bpo-29571 `__: to match the behaviour " "of the ``re.LOCALE`` flag, test_re.test_locale_flag now uses " @@ -20398,68 +20821,68 @@ msgid "" "locale encoding is a multi-byte encoding)" msgstr "" -#: ../../../build/NEWS:13209 +#: ../../../build/NEWS:13432 msgid "Python 3.6.0 final" msgstr "Python 3.6.0 final" -#: ../../../build/NEWS:13211 +#: ../../../build/NEWS:13434 msgid "*Release date: 2016-12-23*" msgstr "*Tanggal rilis: 2016-12-23*" -#: ../../../build/NEWS:13218 +#: ../../../build/NEWS:13441 msgid "Python 3.6.0 release candidate 2" msgstr "Python 3.6.0 kandidat rilis 2" -#: ../../../build/NEWS:13220 +#: ../../../build/NEWS:13443 msgid "*Release date: 2016-12-16*" msgstr "*Tanggal rilis: 2016-12-16*" -#: ../../../build/NEWS:13228 +#: ../../../build/NEWS:13451 msgid "" "`bpo-28990 `__: Fix asyncio SSL hanging " "if connection is closed before handshake is completed. (Patch by HoHo-Ho)" msgstr "" -#: ../../../build/NEWS:13234 +#: ../../../build/NEWS:13457 msgid "" "`bpo-28770 `__: Fix python-gdb.py for " "fastcalls." msgstr "" -#: ../../../build/NEWS:13239 +#: ../../../build/NEWS:13462 msgid "" "`bpo-28896 `__: Deprecate " "WindowsRegistryFinder." msgstr "" -#: ../../../build/NEWS:13244 +#: ../../../build/NEWS:13467 msgid "" "`bpo-28898 `__: Prevent gdb build errors" " due to HAVE_LONG_LONG redefinition." msgstr "" -#: ../../../build/NEWS:13248 +#: ../../../build/NEWS:13471 msgid "Python 3.6.0 release candidate 1" msgstr "Python 3.6.0 kandidat rilis 1" -#: ../../../build/NEWS:13250 +#: ../../../build/NEWS:13473 msgid "*Release date: 2016-12-06*" msgstr "*Tanggal rilis: 2016-12-06*" -#: ../../../build/NEWS:13272 +#: ../../../build/NEWS:13495 msgid "" "`bpo-27030 `__: Unknown escapes in " "re.sub() replacement template are allowed again. But they still are " "deprecated and will be disabled in 3.7." msgstr "" -#: ../../../build/NEWS:13290 +#: ../../../build/NEWS:13513 msgid "" "`bpo-28843 `__: Fix asyncio C Task to " "handle exceptions __traceback__." msgstr "" -#: ../../../build/NEWS:13300 +#: ../../../build/NEWS:13523 msgid "" "`bpo-23722 `__: The data model reference" " and the porting section in the What's New guide now cover the additional " @@ -20467,15 +20890,15 @@ msgid "" ":pep:`487` and zero-argument ``super()``." msgstr "" -#: ../../../build/NEWS:13312 +#: ../../../build/NEWS:13535 msgid "Python 3.6.0 beta 4" msgstr "Python 3.6.0 beta 4" -#: ../../../build/NEWS:13314 +#: ../../../build/NEWS:13537 msgid "*Release date: 2016-11-21*" msgstr "*Tanggal rilis: 2016-11-21*" -#: ../../../build/NEWS:13342 +#: ../../../build/NEWS:13565 msgid "" "`bpo-27243 `__: Change " "PendingDeprecationWarning -> DeprecationWarning. As it was agreed in the " @@ -20483,180 +20906,180 @@ msgid "" "PendingDeprecationWarning in 3.5 and in DeprecationWarning in 3.6." msgstr "" -#: ../../../build/NEWS:13361 +#: ../../../build/NEWS:13584 msgid "" "`bpo-20572 `__: The " "subprocess.Popen.wait method's undocumented endtime parameter now raises a " "DeprecationWarning." msgstr "" -#: ../../../build/NEWS:13378 +#: ../../../build/NEWS:13601 msgid "" "`bpo-28600 `__: Optimize loop.call_soon." msgstr "" -#: ../../../build/NEWS:13380 ../../../build/NEWS:17394 +#: ../../../build/NEWS:13603 ../../../build/NEWS:17617 msgid "" "`bpo-28613 `__: Fix get_event_loop() " "return the current loop if called from coroutines/callbacks." msgstr "" -#: ../../../build/NEWS:13383 +#: ../../../build/NEWS:13606 msgid "" "`bpo-28634 `__: Fix asyncio.isfuture() " "to support unittest.Mock." msgstr "" -#: ../../../build/NEWS:13385 +#: ../../../build/NEWS:13608 msgid "" "`bpo-26081 `__: Fix refleak in " "_asyncio.Future.__iter__().throw." msgstr "" -#: ../../../build/NEWS:13387 ../../../build/NEWS:17397 +#: ../../../build/NEWS:13610 ../../../build/NEWS:17620 msgid "" "`bpo-28639 `__: Fix inspect.isawaitable " "to always return bool Patch by Justin Mayfield." msgstr "" -#: ../../../build/NEWS:13390 ../../../build/NEWS:17400 +#: ../../../build/NEWS:13613 ../../../build/NEWS:17623 msgid "" "`bpo-28652 `__: Make loop methods reject" " socket kinds they do not support." msgstr "" -#: ../../../build/NEWS:13392 ../../../build/NEWS:17402 +#: ../../../build/NEWS:13615 ../../../build/NEWS:17625 msgid "" "`bpo-28653 `__: Fix a refleak in " "functools.lru_cache." msgstr "" -#: ../../../build/NEWS:13394 ../../../build/NEWS:17404 +#: ../../../build/NEWS:13617 ../../../build/NEWS:17627 msgid "" "`bpo-28703 `__: Fix " "asyncio.iscoroutinefunction to handle Mock objects." msgstr "" -#: ../../../build/NEWS:13396 +#: ../../../build/NEWS:13619 msgid "" "`bpo-28704 `__: Fix create_unix_server " "to support Path-like objects (PEP 519)." msgstr "" -#: ../../../build/NEWS:13398 +#: ../../../build/NEWS:13621 msgid "" "`bpo-28720 `__: Add " "collections.abc.AsyncGenerator." msgstr "" -#: ../../../build/NEWS:13426 +#: ../../../build/NEWS:13649 msgid "Python 3.6.0 beta 3" msgstr "Python 3.6.0 beta 3" -#: ../../../build/NEWS:13428 +#: ../../../build/NEWS:13651 msgid "*Release date: 2016-10-31*" msgstr "*Tanggal rilis: 2016-10-31*" -#: ../../../build/NEWS:13451 +#: ../../../build/NEWS:13674 msgid "" "`bpo-28471 `__: Fix \"Python memory " "allocator called without holding the GIL\" crash in socket.setblocking." msgstr "" -#: ../../../build/NEWS:13473 +#: ../../../build/NEWS:13696 msgid "" "`bpo-18844 `__: The various ways of " "specifying weights for random.choices() now produce the same result " "sequences." msgstr "" -#: ../../../build/NEWS:13476 ../../../build/NEWS:17078 +#: ../../../build/NEWS:13699 ../../../build/NEWS:17301 msgid "" "`bpo-28255 `__: " "calendar.TextCalendar().prmonth() no longer prints a space at the start of " "new line after printing a month's calendar. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:13509 ../../../build/NEWS:17092 +#: ../../../build/NEWS:13732 ../../../build/NEWS:17315 msgid "" "`bpo-24452 `__: Make webbrowser support " "Chrome on Mac OS X." msgstr "" -#: ../../../build/NEWS:13514 +#: ../../../build/NEWS:13737 msgid "" "`bpo-28492 `__: Fix how StopIteration " "exception is raised in _asyncio.Future." msgstr "" -#: ../../../build/NEWS:13516 +#: ../../../build/NEWS:13739 msgid "" "`bpo-28500 `__: Fix asyncio to handle " "async gens GC from another thread." msgstr "" -#: ../../../build/NEWS:13518 ../../../build/NEWS:17386 +#: ../../../build/NEWS:13741 ../../../build/NEWS:17609 msgid "" "`bpo-26923 `__: Fix asyncio.Gather to " "refuse being cancelled once all children are done. Patch by Johannes Ebke." msgstr "" -#: ../../../build/NEWS:13521 ../../../build/NEWS:17389 +#: ../../../build/NEWS:13744 ../../../build/NEWS:17612 msgid "" "`bpo-26796 `__: Don't configure the " "number of workers for default threadpool executor. Initial patch by Hans " "Lawrenz." msgstr "" -#: ../../../build/NEWS:13524 +#: ../../../build/NEWS:13747 msgid "" "`bpo-28544 `__: Implement asyncio.Task " "in C." msgstr "" -#: ../../../build/NEWS:13550 +#: ../../../build/NEWS:13773 msgid "Python 3.6.0 beta 2" msgstr "Python 3.6.0 beta 2" -#: ../../../build/NEWS:13552 +#: ../../../build/NEWS:13775 msgid "*Release date: 2016-10-10*" msgstr "*Tanggal rilis: 2016-10-10*" -#: ../../../build/NEWS:13568 +#: ../../../build/NEWS:13791 msgid "" "`bpo-28376 `__: Creating instances of " "range_iterator by calling range_iterator type now is deprecated. Patch by " "Oren Milman." msgstr "" -#: ../../../build/NEWS:13571 ../../../build/NEWS:16919 +#: ../../../build/NEWS:13794 ../../../build/NEWS:17142 msgid "" "`bpo-28376 `__: The constructor of " "range_iterator now checks that step is not 0. Patch by Oren Milman." msgstr "" -#: ../../../build/NEWS:13632 ../../../build/NEWS:17097 +#: ../../../build/NEWS:13855 ../../../build/NEWS:17320 msgid "" "`bpo-26293 `__: Fixed writing ZIP files " "that starts not from the start of the file. Offsets in ZIP file now are " "relative to the start of the archive in conforming to the specification." msgstr "" -#: ../../../build/NEWS:13639 +#: ../../../build/NEWS:13862 msgid "" "`bpo-27181 `__: remove " "statistics.geometric_mean and defer until 3.7." msgstr "" -#: ../../../build/NEWS:13818 +#: ../../../build/NEWS:14041 msgid "Python 3.6.0 beta 1" msgstr "Python 3.6.0 beta 1" -#: ../../../build/NEWS:13820 +#: ../../../build/NEWS:14043 msgid "*Release date: 2016-09-12*" msgstr "*Tanggal rilis: 2016-09-12*" -#: ../../../build/NEWS:13825 +#: ../../../build/NEWS:14048 msgid "" "`bpo-23722 `__: The __class__ cell used " "by zero-argument super() is now initialized from type.__new__ rather than " @@ -20665,25 +21088,25 @@ msgid "" "Teichmann." msgstr "" -#: ../../../build/NEWS:13830 ../../../build/NEWS:16950 +#: ../../../build/NEWS:14053 ../../../build/NEWS:17173 msgid "" "`bpo-25221 `__: Fix corrupted result " "from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0." msgstr "" -#: ../../../build/NEWS:13833 +#: ../../../build/NEWS:14056 msgid "" "`bpo-27080 `__: Implement formatting " "support for :pep:`515`. Initial patch by Chris Angelico." msgstr "" -#: ../../../build/NEWS:13836 +#: ../../../build/NEWS:14059 msgid "" "`bpo-27199 `__: In tarfile, expose " "copyfileobj bufsize to improve throughput. Patch by Jason Fried." msgstr "" -#: ../../../build/NEWS:13839 +#: ../../../build/NEWS:14062 msgid "" "`bpo-27948 `__: In f-strings, only allow" " backslashes inside the braces (where the expressions are). This is a " @@ -20693,32 +21116,32 @@ msgid "" "``f'\\x7b\"hi\"\\x7d'``." msgstr "" -#: ../../../build/NEWS:13845 +#: ../../../build/NEWS:14068 msgid "" "`bpo-28046 `__: Remove platform-specific" " directories from sys.path." msgstr "" -#: ../../../build/NEWS:13847 +#: ../../../build/NEWS:14070 msgid "" "`bpo-28071 `__: Add early-out for " "differencing from an empty set." msgstr "" -#: ../../../build/NEWS:13849 ../../../build/NEWS:16953 +#: ../../../build/NEWS:14072 ../../../build/NEWS:17176 msgid "" "`bpo-25758 `__: Prevents zipimport from " "unnecessarily encoding a filename (patch by Eryk Sun)" msgstr "" -#: ../../../build/NEWS:13852 +#: ../../../build/NEWS:14075 msgid "" "`bpo-25856 `__: The __module__ attribute" " of extension classes and functions now is interned. This leads to more " "compact pickle data with protocol 4." msgstr "" -#: ../../../build/NEWS:13855 +#: ../../../build/NEWS:14078 msgid "" "`bpo-27213 `__: Rework CALL_FUNCTION* " "opcodes to produce shorter and more efficient bytecode. Patch by Demur " @@ -20726,101 +21149,101 @@ msgid "" "Stinner." msgstr "" -#: ../../../build/NEWS:13859 +#: ../../../build/NEWS:14082 msgid "" "`bpo-26331 `__: Implement tokenizing " "support for :pep:`515`. Patch by Georg Brandl." msgstr "" -#: ../../../build/NEWS:13862 +#: ../../../build/NEWS:14085 msgid "" "`bpo-27999 `__: Make \"global after " "use\" a SyntaxError, and ditto for nonlocal. Patch by Ivan Levkivskyi." msgstr "" -#: ../../../build/NEWS:13865 +#: ../../../build/NEWS:14088 msgid "" "`bpo-28003 `__: Implement :pep:`525` -- " "Asynchronous Generators." msgstr "" -#: ../../../build/NEWS:13867 +#: ../../../build/NEWS:14090 msgid "" "`bpo-27985 `__: Implement :pep:`526` -- " "Syntax for Variable Annotations. Patch by Ivan Levkivskyi." msgstr "" -#: ../../../build/NEWS:13870 +#: ../../../build/NEWS:14093 msgid "" "`bpo-26058 `__: Add a new private " "version to the builtin dict type, incremented at each dictionary creation " "and at each dictionary change. Implementation of the PEP 509." msgstr "" -#: ../../../build/NEWS:13874 +#: ../../../build/NEWS:14097 msgid "" "`bpo-27364 `__: A backslash-character " "pair that is not a valid escape sequence now generates a DeprecationWarning." " Patch by Emanuel Barry." msgstr "" -#: ../../../build/NEWS:13877 +#: ../../../build/NEWS:14100 msgid "" "`bpo-27350 `__: `dict` implementation is" " changed like PyPy. It is more compact and preserves insertion order. " "(Concept developed by Raymond Hettinger and patch by Inada Naoki.)" msgstr "" -#: ../../../build/NEWS:13881 +#: ../../../build/NEWS:14104 msgid "" "`bpo-27911 `__: Remove unnecessary error" " checks in ``exec_builtin_or_dynamic()``." msgstr "" -#: ../../../build/NEWS:13884 +#: ../../../build/NEWS:14107 msgid "" "`bpo-27078 `__: Added BUILD_STRING " "opcode. Optimized f-strings evaluation." msgstr "" -#: ../../../build/NEWS:13886 +#: ../../../build/NEWS:14109 msgid "" "`bpo-17884 `__: Python now requires " "systems with inttypes.h and stdint.h" msgstr "" -#: ../../../build/NEWS:13888 +#: ../../../build/NEWS:14111 msgid "" "`bpo-27961 `__: Require platforms to " "support ``long long``. Python hasn't compiled without ``long long`` for " "years, so this is basically a formality." msgstr "" -#: ../../../build/NEWS:13892 +#: ../../../build/NEWS:14115 msgid "" "`bpo-27355 `__: Removed support for " "Windows CE. It was never finished, and Windows CE is no longer a relevant " "platform for Python." msgstr "" -#: ../../../build/NEWS:13895 +#: ../../../build/NEWS:14118 msgid "Implement :pep:`523`." msgstr "Implementasi :pep:`523`." -#: ../../../build/NEWS:13897 +#: ../../../build/NEWS:14120 msgid "" "`bpo-27870 `__: A left shift of zero by " "a large integer no longer attempts to allocate large amounts of memory." msgstr "" -#: ../../../build/NEWS:13900 +#: ../../../build/NEWS:14123 msgid "" "`bpo-25402 `__: In int-to-decimal-string" " conversion, improve the estimate of the intermediate memory required, and " "remove an unnecessarily strict overflow check. Patch by Serhiy Storchaka." msgstr "" -#: ../../../build/NEWS:13904 +#: ../../../build/NEWS:14127 msgid "" "`bpo-27214 `__: In long_invert, be more " "careful about modifying object returned by long_add, and remove an " @@ -20828,34 +21251,34 @@ msgid "" "patch." msgstr "" -#: ../../../build/NEWS:13908 +#: ../../../build/NEWS:14131 msgid "" "`bpo-27506 `__: Support passing the " "bytes/bytearray.translate() \"delete\" argument by keyword." msgstr "" -#: ../../../build/NEWS:13911 ../../../build/NEWS:16959 +#: ../../../build/NEWS:14134 ../../../build/NEWS:17182 msgid "" "`bpo-27812 `__: Properly clear out a " "generator's frame's backreference to the generator to prevent crashes in " "frame.clear()." msgstr "" -#: ../../../build/NEWS:13914 ../../../build/NEWS:16962 +#: ../../../build/NEWS:14137 ../../../build/NEWS:17185 msgid "" "`bpo-27811 `__: Fix a crash when a " "coroutine that has not been awaited is finalized with warnings-as-errors " "enabled." msgstr "" -#: ../../../build/NEWS:13917 ../../../build/NEWS:16965 +#: ../../../build/NEWS:14140 ../../../build/NEWS:17188 msgid "" "`bpo-27587 `__: Fix another issue found " "by PVS-Studio: Null pointer check after use of 'def' in " "_PyState_AddModule(). Initial patch by Christian Heimes." msgstr "" -#: ../../../build/NEWS:13920 +#: ../../../build/NEWS:14143 msgid "" "`bpo-27792 `__: The modulo operation " "applied to ``bool`` and other ``int`` subclasses now always returns an " @@ -20863,26 +21286,26 @@ msgid "" "Xiang Zhang." msgstr "" -#: ../../../build/NEWS:13924 +#: ../../../build/NEWS:14147 msgid "" "`bpo-26984 `__: int() now always returns" " an instance of exact int." msgstr "" -#: ../../../build/NEWS:13926 +#: ../../../build/NEWS:14149 msgid "" "`bpo-25604 `__: Fix a minor bug in " "integer true division; this bug could potentially have caused off-by-one-ulp" " results on platforms with unreliable ldexp implementations." msgstr "" -#: ../../../build/NEWS:13930 +#: ../../../build/NEWS:14153 msgid "" "`bpo-24254 `__: Make class definition " "namespace ordered by default." msgstr "" -#: ../../../build/NEWS:13932 +#: ../../../build/NEWS:14155 msgid "" "`bpo-27662 `__: Fix an overflow check in" " ``List_New``: the original code was checking against ``Py_SIZE_MAX`` " @@ -20890,7 +21313,7 @@ msgid "" "Zhang." msgstr "" -#: ../../../build/NEWS:13936 ../../../build/NEWS:16971 +#: ../../../build/NEWS:14159 ../../../build/NEWS:17194 msgid "" "`bpo-27782 `__: Multi-phase extension " "module import now correctly allows the ``m_methods`` field to be used to add" @@ -20898,27 +21321,27 @@ msgid "" "``Py_create_mod``. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:13940 ../../../build/NEWS:16975 +#: ../../../build/NEWS:14163 ../../../build/NEWS:17198 msgid "" "`bpo-27936 `__: The round() function " "accepted a second None argument for some types but not for others. Fixed " "the inconsistency by accepting None for all numeric types." msgstr "" -#: ../../../build/NEWS:13944 ../../../build/NEWS:16979 +#: ../../../build/NEWS:14167 ../../../build/NEWS:17202 msgid "" "`bpo-27487 `__: Warn if a submodule " "argument to \"python -m\" or runpy.run_module() is found in sys.modules " "after parent packages are imported, but before the submodule is executed." msgstr "" -#: ../../../build/NEWS:13948 +#: ../../../build/NEWS:14171 msgid "" "`bpo-27157 `__: Make only type() itself " "accept the one-argument form. Patch by Eryk Sun and Emanuel Barry." msgstr "" -#: ../../../build/NEWS:13951 ../../../build/NEWS:16983 +#: ../../../build/NEWS:14174 ../../../build/NEWS:17206 msgid "" "`bpo-27558 `__: Fix a SystemError in the" " implementation of \"raise\" statement. In a brand new thread, raise a " @@ -20926,91 +21349,91 @@ msgid "" " Xiang Zhang." msgstr "" -#: ../../../build/NEWS:13955 +#: ../../../build/NEWS:14178 msgid "" "`bpo-28008 `__: Implement :pep:`530` -- " "asynchronous comprehensions." msgstr "" -#: ../../../build/NEWS:13957 ../../../build/NEWS:17008 +#: ../../../build/NEWS:14180 ../../../build/NEWS:17231 msgid "" "`bpo-27942 `__: Fix memory leak in " "codeobject.c" msgstr "" -#: ../../../build/NEWS:13962 ../../../build/NEWS:17052 +#: ../../../build/NEWS:14185 ../../../build/NEWS:17275 msgid "" "`bpo-28732 `__: Fix crash in os.spawnv()" " with no elements in args" msgstr "" -#: ../../../build/NEWS:13964 ../../../build/NEWS:17054 +#: ../../../build/NEWS:14187 ../../../build/NEWS:17277 msgid "" "`bpo-28485 `__: Always raise ValueError " "for negative compileall.compile_dir(workers=...) parameter, even when " "multithreading is unavailable." msgstr "" -#: ../../../build/NEWS:13968 +#: ../../../build/NEWS:14191 msgid "" "`bpo-28037 `__: Use " "sqlite3_get_autocommit() instead of setting Connection->inTransaction " "manually." msgstr "" -#: ../../../build/NEWS:13971 +#: ../../../build/NEWS:14194 msgid "" "`bpo-25283 `__: Attributes tm_gmtoff and" " tm_zone are now available on all platforms in the return values of " "time.localtime() and time.gmtime()." msgstr "" -#: ../../../build/NEWS:13974 +#: ../../../build/NEWS:14197 msgid "" "`bpo-24454 `__: Regular expression match" " object groups are now accessible using __getitem__. \"mo[x]\" is equivalent" " to \"mo.group(x)\"." msgstr "" -#: ../../../build/NEWS:13977 +#: ../../../build/NEWS:14200 msgid "" "`bpo-10740 `__: sqlite3 no longer " "implicitly commit an open transaction before DDL statements." msgstr "" -#: ../../../build/NEWS:13980 +#: ../../../build/NEWS:14203 msgid "" "`bpo-17941 `__: Add a *module* parameter" " to collections.namedtuple()." msgstr "" -#: ../../../build/NEWS:13982 +#: ../../../build/NEWS:14205 msgid "" "`bpo-22493 `__: Inline flags now should " "be used only at the start of the regular expression. Deprecation warning is " "emitted if uses them in the middle of the regular expression." msgstr "" -#: ../../../build/NEWS:13986 +#: ../../../build/NEWS:14209 msgid "" "`bpo-26885 `__: xmlrpc now supports " "unmarshalling additional data types used by Apache XML-RPC implementation " "for numerics and None." msgstr "" -#: ../../../build/NEWS:13989 +#: ../../../build/NEWS:14212 msgid "" "`bpo-28070 `__: Fixed parsing inline " "verbose flag in regular expressions." msgstr "" -#: ../../../build/NEWS:13991 +#: ../../../build/NEWS:14214 msgid "" "`bpo-19500 `__: Add client-side SSL " "session resumption to the ssl module." msgstr "" -#: ../../../build/NEWS:13993 +#: ../../../build/NEWS:14216 msgid "" "`bpo-28022 `__: Deprecate ssl-related " "arguments in favor of SSLContext. The deprecation include manual creation of" @@ -21018,7 +21441,7 @@ msgid "" "smtplib, poplib and urllib." msgstr "" -#: ../../../build/NEWS:13997 +#: ../../../build/NEWS:14220 msgid "" "`bpo-28043 `__: SSLContext has improved " "default settings: OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION, " @@ -21026,21 +21449,21 @@ msgid "" "ciphers without MD5." msgstr "" -#: ../../../build/NEWS:14001 +#: ../../../build/NEWS:14224 msgid "" "`bpo-24693 `__: Changed some " "RuntimeError's in the zipfile module to more appropriate types. Improved " "some error messages and debugging output." msgstr "" -#: ../../../build/NEWS:14004 +#: ../../../build/NEWS:14227 msgid "" "`bpo-17909 `__: ``json.load`` and " "``json.loads`` now support binary input encoded as UTF-8, UTF-16 or UTF-32. " "Patch by Serhiy Storchaka." msgstr "" -#: ../../../build/NEWS:14007 +#: ../../../build/NEWS:14230 msgid "" "`bpo-27137 `__: the pure Python fallback" " implementation of ``functools.partial`` now matches the behaviour of its " @@ -21048,118 +21471,118 @@ msgid "" "purposes. Patch by Emanuel Barry and Serhiy Storchaka." msgstr "" -#: ../../../build/NEWS:14012 ../../../build/NEWS:17107 +#: ../../../build/NEWS:14235 ../../../build/NEWS:17330 msgid "" "Fix possible integer overflows and crashes in the mmap module with unusual " "usage patterns." msgstr "" -#: ../../../build/NEWS:14015 ../../../build/NEWS:17110 +#: ../../../build/NEWS:14238 ../../../build/NEWS:17333 msgid "" "`bpo-1703178 `__: Fix the ability to " "pass the --link-objects option to the distutils build_ext command." msgstr "" -#: ../../../build/NEWS:14018 ../../../build/NEWS:17157 +#: ../../../build/NEWS:14241 ../../../build/NEWS:17380 msgid "" "`bpo-28019 `__: itertools.count() no " "longer rounds non-integer step in range between 1.0 and 2.0 to 1." msgstr "" -#: ../../../build/NEWS:14021 +#: ../../../build/NEWS:14244 msgid "" "`bpo-18401 `__: Pdb now supports the " "'readrc' keyword argument to control whether .pdbrc files should be read. " "Patch by Martin Matusiak and Sam Kimbrel." msgstr "" -#: ../../../build/NEWS:14025 ../../../build/NEWS:17160 +#: ../../../build/NEWS:14248 ../../../build/NEWS:17383 msgid "" "`bpo-25969 `__: Update the lib2to3 " "grammar to handle the unpacking generalizations added in 3.5." msgstr "" -#: ../../../build/NEWS:14028 ../../../build/NEWS:17163 +#: ../../../build/NEWS:14251 ../../../build/NEWS:17386 msgid "" "`bpo-14977 `__: mailcap now respects the" " order of the lines in the mailcap files (\"first match\"), as required by " "RFC 1542. Patch by Michael Lazar." msgstr "" -#: ../../../build/NEWS:14031 +#: ../../../build/NEWS:14254 msgid "" "`bpo-28082 `__: Convert re flag " "constants to IntFlag." msgstr "" -#: ../../../build/NEWS:14033 +#: ../../../build/NEWS:14256 msgid "" "`bpo-28025 `__: Convert all ssl module " "constants to IntEnum and IntFlags. SSLContext properties now return flags " "and enums." msgstr "" -#: ../../../build/NEWS:14036 +#: ../../../build/NEWS:14259 msgid "" "`bpo-23591 `__: Add Flag, IntFlag, and " "auto() to enum module." msgstr "" -#: ../../../build/NEWS:14038 +#: ../../../build/NEWS:14261 msgid "" "`bpo-433028 `__: Added support of " "modifier spans in regular expressions." msgstr "" -#: ../../../build/NEWS:14040 ../../../build/NEWS:17166 +#: ../../../build/NEWS:14263 ../../../build/NEWS:17389 msgid "" "`bpo-24594 `__: Validates persist " "parameter when opening MSI database" msgstr "" -#: ../../../build/NEWS:14042 ../../../build/NEWS:17168 +#: ../../../build/NEWS:14265 ../../../build/NEWS:17391 msgid "" "`bpo-17582 `__: xml.etree.ElementTree " "nows preserves whitespaces in attributes (Patch by Duane Griffin. Reviewed " "and approved by Stefan Behnel.)" msgstr "" -#: ../../../build/NEWS:14045 ../../../build/NEWS:17171 +#: ../../../build/NEWS:14268 ../../../build/NEWS:17394 msgid "" "`bpo-28047 `__: Fixed calculation of " "line length used for the base64 CTE in the new email policies." msgstr "" -#: ../../../build/NEWS:14048 +#: ../../../build/NEWS:14271 msgid "" "`bpo-27576 `__: Fix call order in " "OrderedDict.__init__()." msgstr "" -#: ../../../build/NEWS:14050 +#: ../../../build/NEWS:14273 msgid "email.generator.DecodedGenerator now supports the policy keyword." msgstr "" -#: ../../../build/NEWS:14052 +#: ../../../build/NEWS:14275 msgid "" "`bpo-28027 `__: Remove undocumented " "modules from ``Lib/plat-*``: IN, CDROM, DLFCN, TYPES, CDIO, and STROPTS." msgstr "" -#: ../../../build/NEWS:14055 ../../../build/NEWS:17174 +#: ../../../build/NEWS:14278 ../../../build/NEWS:17397 msgid "" "`bpo-27445 `__: Don't pass str(_charset)" " to MIMEText.set_payload(). Patch by Claude Paroz." msgstr "" -#: ../../../build/NEWS:14058 +#: ../../../build/NEWS:14281 msgid "" "`bpo-24277 `__: The new email API is no " "longer provisional, and the docs have been reorganized and rewritten to " "emphasize the new API." msgstr "" -#: ../../../build/NEWS:14061 ../../../build/NEWS:17177 +#: ../../../build/NEWS:14284 ../../../build/NEWS:17400 msgid "" "`bpo-22450 `__: urllib now includes an " "``Accept: */*`` header among the default headers. This makes the results of " @@ -21167,62 +21590,62 @@ msgid "" "servers are involved." msgstr "" -#: ../../../build/NEWS:14065 ../../../build/NEWS:17181 +#: ../../../build/NEWS:14288 ../../../build/NEWS:17404 msgid "" "lib2to3.pgen3.driver.load_grammar() now creates a stable cache file between " "runs given the same Grammar.txt input regardless of the hash randomization " "setting." msgstr "" -#: ../../../build/NEWS:14069 +#: ../../../build/NEWS:14292 msgid "" "`bpo-28005 `__: Allow ImportErrors in " "encoding implementation to propagate." msgstr "" -#: ../../../build/NEWS:14071 +#: ../../../build/NEWS:14294 msgid "" "`bpo-26667 `__: Support path-like " "objects in importlib.util." msgstr "" -#: ../../../build/NEWS:14073 ../../../build/NEWS:17185 +#: ../../../build/NEWS:14296 ../../../build/NEWS:17408 msgid "" "`bpo-27570 `__: Avoid zero-length " "memcpy() etc calls with null source pointers in the \"ctypes\" and \"array\"" " modules." msgstr "" -#: ../../../build/NEWS:14076 ../../../build/NEWS:17188 +#: ../../../build/NEWS:14299 ../../../build/NEWS:17411 msgid "" "`bpo-22233 `__: Break email header lines" " *only* on the RFC specified CR and LF characters, not on arbitrary unicode " "line breaks. This also fixes a bug in HTTP header parsing." msgstr "" -#: ../../../build/NEWS:14080 +#: ../../../build/NEWS:14303 msgid "" "`bpo-27331 `__: The email.mime classes " "now all accept an optional policy keyword." msgstr "" -#: ../../../build/NEWS:14083 ../../../build/NEWS:17192 +#: ../../../build/NEWS:14306 ../../../build/NEWS:17415 msgid "" "`bpo-27988 `__: Fix email " "iter_attachments incorrect mutation of payload list." msgstr "" -#: ../../../build/NEWS:14085 +#: ../../../build/NEWS:14308 msgid "" "`bpo-16113 `__: Add SHA-3 and SHAKE " "support to hashlib module." msgstr "" -#: ../../../build/NEWS:14087 +#: ../../../build/NEWS:14310 msgid "Eliminate a tautological-pointer-compare warning in _scproxy.c." msgstr "" -#: ../../../build/NEWS:14089 +#: ../../../build/NEWS:14312 msgid "" "`bpo-27776 `__: The :func:`os.urandom` " "function does now block on Linux 3.17 and newer until the system urandom " @@ -21230,25 +21653,25 @@ msgid "" " the :pep:`524`." msgstr "" -#: ../../../build/NEWS:14093 +#: ../../../build/NEWS:14316 msgid "" "`bpo-27778 `__: Expose the Linux " "``getrandom()`` syscall as a new :func:`os.getrandom` function. This change " "is part of the :pep:`524`." msgstr "" -#: ../../../build/NEWS:14096 ../../../build/NEWS:17194 +#: ../../../build/NEWS:14319 ../../../build/NEWS:17417 msgid "" "`bpo-27691 `__: Fix ssl module's parsing" " of GEN_RID subject alternative name fields in X.509 certs." msgstr "" -#: ../../../build/NEWS:14099 +#: ../../../build/NEWS:14322 msgid "" "`bpo-18844 `__: Add random.choices()." msgstr "" -#: ../../../build/NEWS:14101 +#: ../../../build/NEWS:14324 msgid "" "`bpo-25761 `__: Improved error reporting" " about truncated pickle data in C implementation of unpickler. " @@ -21256,87 +21679,87 @@ msgid "" "some cases." msgstr "" -#: ../../../build/NEWS:14105 +#: ../../../build/NEWS:14328 msgid "" "`bpo-26798 `__: Add BLAKE2 (blake2b and " "blake2s) to hashlib." msgstr "" -#: ../../../build/NEWS:14107 +#: ../../../build/NEWS:14330 msgid "" "`bpo-26032 `__: Optimized globbing in " "pathlib by using os.scandir(); it is now about 1.5--4 times faster." msgstr "" -#: ../../../build/NEWS:14110 +#: ../../../build/NEWS:14333 msgid "" "`bpo-25596 `__: Optimized glob() and " "iglob() functions in the glob module; they are now about 3--6 times faster." msgstr "" -#: ../../../build/NEWS:14113 +#: ../../../build/NEWS:14336 msgid "" "`bpo-27928 `__: Add scrypt (password-" "based key derivation function) to hashlib module (requires OpenSSL 1.1.0)." msgstr "" -#: ../../../build/NEWS:14116 ../../../build/NEWS:17197 +#: ../../../build/NEWS:14339 ../../../build/NEWS:17420 msgid "" "`bpo-27850 `__: Remove 3DES from ssl " "module's default cipher list to counter measure sweet32 attack " "(CVE-2016-2183)." msgstr "" -#: ../../../build/NEWS:14119 ../../../build/NEWS:17200 +#: ../../../build/NEWS:14342 ../../../build/NEWS:17423 msgid "" "`bpo-27766 `__: Add ChaCha20 Poly1305 to" " ssl module's default cipher list. (Required OpenSSL 1.1.0 or LibreSSL)." msgstr "" -#: ../../../build/NEWS:14122 +#: ../../../build/NEWS:14345 msgid "" "`bpo-25387 `__: Check return value of " "winsound.MessageBeep." msgstr "" -#: ../../../build/NEWS:14124 +#: ../../../build/NEWS:14347 msgid "" "`bpo-27866 `__: Add " "SSLContext.get_ciphers() method to get a list of all enabled ciphers." msgstr "" -#: ../../../build/NEWS:14127 +#: ../../../build/NEWS:14350 msgid "" "`bpo-27744 `__: Add AF_ALG (Linux Kernel" " crypto) to socket module." msgstr "" -#: ../../../build/NEWS:14129 ../../../build/NEWS:17203 +#: ../../../build/NEWS:14352 ../../../build/NEWS:17426 msgid "" "`bpo-26470 `__: Port ssl and hashlib " "module to OpenSSL 1.1.0." msgstr "" -#: ../../../build/NEWS:14131 +#: ../../../build/NEWS:14354 msgid "" "`bpo-11620 `__: Fix support for " "SND_MEMORY in winsound.PlaySound. Based on a patch by Tim Lesher." msgstr "" -#: ../../../build/NEWS:14134 +#: ../../../build/NEWS:14357 msgid "" "`bpo-11734 `__: Add support for IEEE 754" " half-precision floats to the struct module. Based on a patch by Eli " "Stevens." msgstr "" -#: ../../../build/NEWS:14137 +#: ../../../build/NEWS:14360 msgid "" "`bpo-27919 `__: Deprecated " "``extra_path`` distribution option in distutils packaging." msgstr "" -#: ../../../build/NEWS:14140 +#: ../../../build/NEWS:14363 msgid "" "`bpo-23229 `__: Add new ``cmath`` " "constants: ``cmath.inf`` and ``cmath.nan`` to match ``math.inf`` and " @@ -21344,44 +21767,44 @@ msgid "" " used by complex repr." msgstr "" -#: ../../../build/NEWS:14144 +#: ../../../build/NEWS:14367 msgid "" "`bpo-27842 `__: The csv.DictReader now " "returns rows of type OrderedDict. (Contributed by Steve Holden.)" msgstr "" -#: ../../../build/NEWS:14147 ../../../build/NEWS:17205 +#: ../../../build/NEWS:14370 ../../../build/NEWS:17428 msgid "" "Remove support for passing a file descriptor to os.access. It never worked " "but previously didn't raise." msgstr "" -#: ../../../build/NEWS:14150 ../../../build/NEWS:17208 +#: ../../../build/NEWS:14373 ../../../build/NEWS:17431 msgid "" "`bpo-12885 `__: Fix error when distutils" " encounters symlink." msgstr "" -#: ../../../build/NEWS:14152 ../../../build/NEWS:17210 +#: ../../../build/NEWS:14375 ../../../build/NEWS:17433 msgid "" "`bpo-27881 `__: Fixed possible bugs when" " setting sqlite3.Connection.isolation_level. Based on patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14155 ../../../build/NEWS:17213 +#: ../../../build/NEWS:14378 ../../../build/NEWS:17436 msgid "" "`bpo-27861 `__: Fixed a crash in " "sqlite3.Connection.cursor() when a factory creates not a cursor. Patch by " "Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14158 ../../../build/NEWS:17216 +#: ../../../build/NEWS:14381 ../../../build/NEWS:17439 msgid "" "`bpo-19884 `__: Avoid spurious output on" " OS X with Gnu Readline." msgstr "" -#: ../../../build/NEWS:14160 ../../../build/NEWS:17218 +#: ../../../build/NEWS:14383 ../../../build/NEWS:17441 msgid "" "`bpo-27706 `__: Restore deterministic " "behavior of random.Random().seed() for string seeds using seeding version 1." @@ -21389,13 +21812,13 @@ msgid "" "Python 2. Patch by Nofar Schnider." msgstr "" -#: ../../../build/NEWS:14165 ../../../build/NEWS:17223 +#: ../../../build/NEWS:14388 ../../../build/NEWS:17446 msgid "" "`bpo-10513 `__: Fix a regression in " "Connection.commit(). Statements should not be reset after a commit." msgstr "" -#: ../../../build/NEWS:14168 +#: ../../../build/NEWS:14391 msgid "" "`bpo-12319 `__: Chunked transfer " "encoding support added to http.client.HTTPConnection requests. The " @@ -21405,7 +21828,7 @@ msgid "" "encoding." msgstr "" -#: ../../../build/NEWS:14175 +#: ../../../build/NEWS:14398 msgid "" "A new version of typing.py from https://github.com/python/typing: - " "Collection (only for 3.6) (`bpo-27598 " @@ -21414,181 +21837,181 @@ msgid "" " dict constraint in ForwardRef._eval_type (upstream #252)" msgstr "" -#: ../../../build/NEWS:14180 +#: ../../../build/NEWS:14403 msgid "" "`bpo-27832 `__: Make ``_normalize`` " "parameter to ``Fraction`` constructor keyword-only, so that ``Fraction(2, 3," " 4)`` now raises ``TypeError``." msgstr "" -#: ../../../build/NEWS:14183 ../../../build/NEWS:17231 +#: ../../../build/NEWS:14406 ../../../build/NEWS:17454 msgid "" "`bpo-27539 `__: Fix unnormalised " "``Fraction.__pow__`` result in the case of negative exponent and negative " "base." msgstr "" -#: ../../../build/NEWS:14186 ../../../build/NEWS:17234 +#: ../../../build/NEWS:14409 ../../../build/NEWS:17457 msgid "" "`bpo-21718 `__: cursor.description is " "now available for queries using CTEs." msgstr "" -#: ../../../build/NEWS:14188 +#: ../../../build/NEWS:14411 msgid "" "`bpo-27819 `__: In distutils sdists, " "simply produce the \"gztar\" (gzipped tar format) distributions on all " "platforms unless \"formats\" is supplied." msgstr "" -#: ../../../build/NEWS:14191 ../../../build/NEWS:17236 +#: ../../../build/NEWS:14414 ../../../build/NEWS:17459 msgid "" "`bpo-2466 `__: posixpath.ismount now " "correctly recognizes mount points which the user does not have permission to" " access." msgstr "" -#: ../../../build/NEWS:14194 +#: ../../../build/NEWS:14417 msgid "" "`bpo-9998 `__: On Linux, " "ctypes.util.find_library now looks in LD_LIBRARY_PATH for shared libraries." msgstr "" -#: ../../../build/NEWS:14197 +#: ../../../build/NEWS:14420 msgid "" "`bpo-27573 `__: exit message for " "code.interact is now configurable." msgstr "" -#: ../../../build/NEWS:14199 ../../../build/NEWS:17344 +#: ../../../build/NEWS:14422 ../../../build/NEWS:17567 msgid "" "`bpo-27930 `__: Improved behaviour of " "logging.handlers.QueueListener. Thanks to Paulo Andrade and Petr Viktorin " "for the analysis and patch." msgstr "" -#: ../../../build/NEWS:14202 +#: ../../../build/NEWS:14425 msgid "" "`bpo-6766 `__: Distributed reference " "counting added to multiprocessing to support nesting of shared values / " "proxy objects." msgstr "" -#: ../../../build/NEWS:14205 ../../../build/NEWS:17347 +#: ../../../build/NEWS:14428 ../../../build/NEWS:17570 msgid "" "`bpo-21201 `__: Improves readability of " "multiprocessing error message. Thanks to Wojciech Walczak for patch." msgstr "" -#: ../../../build/NEWS:14208 +#: ../../../build/NEWS:14431 msgid "asyncio: Add set_protocol / get_protocol to Transports." msgstr "" -#: ../../../build/NEWS:14210 ../../../build/NEWS:17350 +#: ../../../build/NEWS:14433 ../../../build/NEWS:17573 msgid "" "`bpo-27456 `__: asyncio: Set TCP_NODELAY" " by default." msgstr "" -#: ../../../build/NEWS:14215 ../../../build/NEWS:17415 +#: ../../../build/NEWS:14438 ../../../build/NEWS:17638 msgid "" "`bpo-15308 `__: Add 'interrupt " "execution' (^C) to Shell menu. Patch by Roger Serwy, updated by Bayard " "Randel." msgstr "" -#: ../../../build/NEWS:14218 ../../../build/NEWS:17418 +#: ../../../build/NEWS:14441 ../../../build/NEWS:17641 msgid "" "`bpo-27922 `__: Stop IDLE tests from " "'flashing' gui widgets on the screen." msgstr "" -#: ../../../build/NEWS:14220 +#: ../../../build/NEWS:14443 msgid "" "`bpo-27891 `__: Consistently group and " "sort imports within idlelib modules." msgstr "" -#: ../../../build/NEWS:14222 +#: ../../../build/NEWS:14445 msgid "" "`bpo-17642 `__: add larger font sizes " "for classroom projection." msgstr "" -#: ../../../build/NEWS:14224 ../../../build/NEWS:17420 +#: ../../../build/NEWS:14447 ../../../build/NEWS:17643 msgid "Add version to title of IDLE help window." msgstr "Tambahkan versi ke judul jendela bantuan IDLE." -#: ../../../build/NEWS:14226 ../../../build/NEWS:17422 +#: ../../../build/NEWS:14449 ../../../build/NEWS:17645 msgid "" "`bpo-25564 `__: In section on IDLE -- " "console differences, mention that using exec means that __builtins__ is " "defined for each statement." msgstr "" -#: ../../../build/NEWS:14229 +#: ../../../build/NEWS:14452 msgid "" "`bpo-27821 `__: Fix 3.6.0a3 regression " "that prevented custom key sets from being selected when no custom theme was " "defined." msgstr "" -#: ../../../build/NEWS:14235 +#: ../../../build/NEWS:14458 msgid "" "`bpo-26900 `__: Excluded underscored " "names and other private API from limited API." msgstr "" -#: ../../../build/NEWS:14238 +#: ../../../build/NEWS:14461 msgid "" "`bpo-26027 `__: Add support for path-" "like objects in PyUnicode_FSConverter() & PyUnicode_FSDecoder()." msgstr "" -#: ../../../build/NEWS:14244 +#: ../../../build/NEWS:14467 msgid "" "`bpo-27427 `__: Additional tests for the" " math module. Patch by Francisco Couzo." msgstr "" -#: ../../../build/NEWS:14246 +#: ../../../build/NEWS:14469 msgid "" "`bpo-27953 `__: Skip math and cmath " "tests that fail on OS X 10.4 due to a poor libm implementation of tan." msgstr "" -#: ../../../build/NEWS:14249 +#: ../../../build/NEWS:14472 msgid "" "`bpo-26040 `__: Improve test_math and " "test_cmath coverage and rigour. Patch by Jeff Allen." msgstr "" -#: ../../../build/NEWS:14252 ../../../build/NEWS:17467 +#: ../../../build/NEWS:14475 ../../../build/NEWS:17690 msgid "" "`bpo-27787 `__: Call gc.collect() before" " checking each test for \"dangling threads\", since the dangling threads are" " weak references." msgstr "" -#: ../../../build/NEWS:14258 ../../../build/NEWS:17527 +#: ../../../build/NEWS:14481 ../../../build/NEWS:17750 msgid "" "`bpo-27566 `__: Fix clean target in " "freeze makefile (patch by Lisa Roach)" msgstr "" -#: ../../../build/NEWS:14260 ../../../build/NEWS:17529 +#: ../../../build/NEWS:14483 ../../../build/NEWS:17752 msgid "" "`bpo-27705 `__: Update message in " "validate_ucrtbase.py" msgstr "" -#: ../../../build/NEWS:14262 +#: ../../../build/NEWS:14485 msgid "" "`bpo-27976 `__: Deprecate building " "_ctypes with the bundled copy of libffi on non-OSX UNIX platforms." msgstr "" -#: ../../../build/NEWS:14265 +#: ../../../build/NEWS:14488 msgid "" "`bpo-27983 `__: Cause lack of llvm-" "profdata tool when using clang as required for PGO linking to be a configure" @@ -21597,46 +22020,46 @@ msgid "" "Linuxes." msgstr "" -#: ../../../build/NEWS:14270 +#: ../../../build/NEWS:14493 msgid "" "`bpo-21590 `__: Support for DTrace and " "SystemTap probes." msgstr "" -#: ../../../build/NEWS:14272 ../../../build/NEWS:17536 +#: ../../../build/NEWS:14495 ../../../build/NEWS:17759 msgid "" "`bpo-26307 `__: The profile-opt build " "now applies PGO to the built-in modules." msgstr "" -#: ../../../build/NEWS:14274 +#: ../../../build/NEWS:14497 msgid "" "`bpo-26359 `__: Add the --with-" "optimizations flag to turn on LTO and PGO build support when available." msgstr "" -#: ../../../build/NEWS:14277 +#: ../../../build/NEWS:14500 msgid "" "`bpo-27917 `__: Set platform triplets " "for Android builds." msgstr "" -#: ../../../build/NEWS:14279 +#: ../../../build/NEWS:14502 msgid "" "`bpo-25825 `__: Update references to the" " $(LIBPL) installation path on AIX. This path was changed in 3.2a4." msgstr "" -#: ../../../build/NEWS:14282 +#: ../../../build/NEWS:14505 msgid "Update OS X installer to use SQLite 3.14.1 and XZ 5.2.2." msgstr "" -#: ../../../build/NEWS:14284 +#: ../../../build/NEWS:14507 msgid "" "`bpo-21122 `__: Fix LTO builds on OS X." msgstr "" -#: ../../../build/NEWS:14286 +#: ../../../build/NEWS:14509 msgid "" "`bpo-17128 `__: Build OS X installer " "with a private copy of OpenSSL. Also provide a sample Install Certificates " @@ -21644,7 +22067,7 @@ msgid "" "certifi module." msgstr "" -#: ../../../build/NEWS:14293 ../../../build/NEWS:17476 +#: ../../../build/NEWS:14516 ../../../build/NEWS:17699 msgid "" "`bpo-27952 `__: Get " "Tools/scripts/fixcid.py working with Python 3 and the current \"re\" module," @@ -21652,88 +22075,88 @@ msgid "" "quote signs." msgstr "" -#: ../../../build/NEWS:14300 +#: ../../../build/NEWS:14523 msgid "" "`bpo-28065 `__: Update xz dependency to " "5.2.2 and build it from source." msgstr "" -#: ../../../build/NEWS:14302 ../../../build/NEWS:17493 +#: ../../../build/NEWS:14525 ../../../build/NEWS:17716 msgid "" "`bpo-25144 `__: Ensures TargetDir is set" " before continuing with custom install." msgstr "" -#: ../../../build/NEWS:14304 +#: ../../../build/NEWS:14527 msgid "" "`bpo-1602 `__: Windows console doesn't " "input or print Unicode (PEP 528)" msgstr "" -#: ../../../build/NEWS:14306 +#: ../../../build/NEWS:14529 msgid "" "`bpo-27781 `__: Change file system " "encoding on Windows to UTF-8 (PEP 529)" msgstr "" -#: ../../../build/NEWS:14308 +#: ../../../build/NEWS:14531 msgid "" "`bpo-27731 `__: Opt-out of MAX_PATH on " "Windows 10" msgstr "" -#: ../../../build/NEWS:14310 +#: ../../../build/NEWS:14533 msgid "" "`bpo-6135 `__: Adds encoding and errors " "parameters to subprocess." msgstr "" -#: ../../../build/NEWS:14312 +#: ../../../build/NEWS:14535 msgid "" "`bpo-27959 `__: Adds oem encoding, alias" " ansi to mbcs, move aliasmbcs to codec lookup." msgstr "" -#: ../../../build/NEWS:14315 +#: ../../../build/NEWS:14538 msgid "" "`bpo-27982 `__: The functions of the " "winsound module now accept keyword arguments." msgstr "" -#: ../../../build/NEWS:14318 +#: ../../../build/NEWS:14541 msgid "" "`bpo-20366 `__: Build full text search " "support into SQLite on Windows." msgstr "" -#: ../../../build/NEWS:14320 +#: ../../../build/NEWS:14543 msgid "" "`bpo-27756 `__: Adds new icons for " "Python files and processes on Windows. Designs by Cherry Wang." msgstr "" -#: ../../../build/NEWS:14323 +#: ../../../build/NEWS:14546 msgid "" "`bpo-27883 `__: Update sqlite to " "3.14.1.0 on Windows." msgstr "" -#: ../../../build/NEWS:14327 +#: ../../../build/NEWS:14550 msgid "Python 3.6.0 alpha 4" msgstr "Python 3.6.0 alfa 4" -#: ../../../build/NEWS:14329 +#: ../../../build/NEWS:14552 msgid "*Release date: 2016-08-15*" msgstr "*Tanggal rilis: 2016-08-15*" -#: ../../../build/NEWS:14334 +#: ../../../build/NEWS:14557 msgid "" "`bpo-27704 `__: Optimized creating bytes" " and bytearray from byte-like objects and iterables. Speed up to 3 times for" " short objects. Original patch by Naoki Inada." msgstr "" -#: ../../../build/NEWS:14338 +#: ../../../build/NEWS:14561 msgid "" "`bpo-26823 `__: Large sections of " "repeated lines in tracebacks are now abbreviated as \"[Previous line " @@ -21741,51 +22164,51 @@ msgid "" "Emanuel Barry." msgstr "" -#: ../../../build/NEWS:14342 +#: ../../../build/NEWS:14565 msgid "" "`bpo-27574 `__: Decreased an overhead of" " parsing keyword arguments in functions implemented with using Argument " "Clinic." msgstr "" -#: ../../../build/NEWS:14345 +#: ../../../build/NEWS:14568 msgid "" "`bpo-22557 `__: Now importing already " "imported modules is up to 2.5 times faster." msgstr "" -#: ../../../build/NEWS:14348 +#: ../../../build/NEWS:14571 msgid "" "`bpo-17596 `__: Include to " "help with Min GW building." msgstr "" -#: ../../../build/NEWS:14350 +#: ../../../build/NEWS:14573 msgid "" "`bpo-17599 `__: On Windows, rename the " "privately defined REPARSE_DATA_BUFFER structure to avoid conflicting with " "the definition from Min GW." msgstr "" -#: ../../../build/NEWS:14353 ../../../build/NEWS:16999 +#: ../../../build/NEWS:14576 ../../../build/NEWS:17222 msgid "" "`bpo-27507 `__: Add integer overflow " "check in bytearray.extend(). Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14356 ../../../build/NEWS:17002 +#: ../../../build/NEWS:14579 ../../../build/NEWS:17225 msgid "" "`bpo-27581 `__: Don't rely on wrapping " "for overflow check in PySequence_Tuple(). Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14359 +#: ../../../build/NEWS:14582 msgid "" "`bpo-1621 `__: Avoid signed integer " "overflow in list and tuple operations. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14362 +#: ../../../build/NEWS:14585 msgid "" "`bpo-27419 `__: Standard __import__() no" " longer look up \"__import__\" in globals or builtins for importing " @@ -21793,19 +22216,19 @@ msgid "" "unabling to resolve package from __spec__ or __package__." msgstr "" -#: ../../../build/NEWS:14367 ../../../build/NEWS:16991 +#: ../../../build/NEWS:14590 ../../../build/NEWS:17214 msgid "" "`bpo-27083 `__: Respect the PYTHONCASEOK" " environment variable under Windows." msgstr "" -#: ../../../build/NEWS:14369 ../../../build/NEWS:16993 +#: ../../../build/NEWS:14592 ../../../build/NEWS:17216 msgid "" "`bpo-27514 `__: Make having too many " "statically nested blocks a SyntaxError instead of SystemError." msgstr "" -#: ../../../build/NEWS:14372 +#: ../../../build/NEWS:14595 msgid "" "`bpo-27366 `__: Implemented :pep:`487` " "(Simpler customization of class creation). Upon subclassing, the " @@ -21813,7 +22236,7 @@ msgid "" "initialized with __set_name__ after class creation." msgstr "" -#: ../../../build/NEWS:14380 +#: ../../../build/NEWS:14603 msgid "" "`bpo-26027 `__: Add " ":pep:`519`/__fspath__() support to the os and os.path modules. Includes code" @@ -21821,13 +22244,13 @@ msgid "" "`__)" msgstr "" -#: ../../../build/NEWS:14383 +#: ../../../build/NEWS:14606 msgid "" "`bpo-27598 `__: Add Collections to " "collections.abc. Patch by Ivan Levkivskyi, docs by Neil Girdhar." msgstr "" -#: ../../../build/NEWS:14386 +#: ../../../build/NEWS:14609 msgid "" "`bpo-25958 `__: Support \"anti-" "registration\" of special methods from various ABCs, like __hash__, __iter__" @@ -21838,13 +22261,13 @@ msgid "" "Ivan Levkivskyi." msgstr "" -#: ../../../build/NEWS:14393 +#: ../../../build/NEWS:14616 msgid "" "`bpo-16764 `__: Support keyword " "arguments to zlib.decompress(). Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14396 +#: ../../../build/NEWS:14619 msgid "" "`bpo-27736 `__: Prevent segfault after " "interpreter re-initialization due to ref count problem introduced in code " @@ -21852,19 +22275,19 @@ msgid "" "Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14400 +#: ../../../build/NEWS:14623 msgid "" "`bpo-25628 `__: The *verbose* and " "*rename* parameters for collections.namedtuple are now keyword-only." msgstr "" -#: ../../../build/NEWS:14403 +#: ../../../build/NEWS:14626 msgid "" "`bpo-12345 `__: Add mathematical " "constant tau to math and cmath. See also :pep:`628`." msgstr "" -#: ../../../build/NEWS:14406 +#: ../../../build/NEWS:14629 msgid "" "`bpo-26823 `__: " "traceback.StackSummary.format now abbreviates large sections of repeated " @@ -21873,38 +22296,38 @@ msgid "" "Emanuel Barry." msgstr "" -#: ../../../build/NEWS:14411 +#: ../../../build/NEWS:14634 msgid "" "`bpo-27664 `__: Add to " "concurrent.futures.thread.ThreadPoolExecutor() the ability to specify a " "thread name prefix." msgstr "" -#: ../../../build/NEWS:14414 +#: ../../../build/NEWS:14637 msgid "" "`bpo-27181 `__: Add geometric_mean and " "harmonic_mean to statistics module." msgstr "" -#: ../../../build/NEWS:14416 +#: ../../../build/NEWS:14639 msgid "" "`bpo-27573 `__: code.interact now prints" " an message when exiting." msgstr "" -#: ../../../build/NEWS:14418 +#: ../../../build/NEWS:14641 msgid "" "`bpo-6422 `__: Add autorange method to " "timeit.Timer objects." msgstr "" -#: ../../../build/NEWS:14420 ../../../build/NEWS:17239 +#: ../../../build/NEWS:14643 ../../../build/NEWS:17462 msgid "" "`bpo-27773 `__: Correct some memory " "management errors server_hostname in _ssl.wrap_socket()." msgstr "" -#: ../../../build/NEWS:14423 +#: ../../../build/NEWS:14646 msgid "" "`bpo-26750 `__: " "unittest.mock.create_autospec() now works properly for subclasses of " @@ -21912,81 +22335,81 @@ msgid "" "never documented unittest.mock.DescriptorTypes tuple." msgstr "" -#: ../../../build/NEWS:14427 +#: ../../../build/NEWS:14650 msgid "" "`bpo-26754 `__: Undocumented support of " "general bytes-like objects as path in compile() and similar functions is now" " deprecated." msgstr "" -#: ../../../build/NEWS:14430 +#: ../../../build/NEWS:14653 msgid "" "`bpo-26800 `__: Undocumented support of " "general bytes-like objects as paths in os functions is now deprecated." msgstr "" -#: ../../../build/NEWS:14433 +#: ../../../build/NEWS:14656 msgid "" "`bpo-26981 `__: Add _order_ " "compatibility shim to enum.Enum for Python 2/3 code bases." msgstr "" -#: ../../../build/NEWS:14436 +#: ../../../build/NEWS:14659 msgid "" "`bpo-27661 `__: Added tzinfo keyword " "argument to datetime.combine." msgstr "" -#: ../../../build/NEWS:14438 ../../../build/NEWS:17245 +#: ../../../build/NEWS:14661 ../../../build/NEWS:17468 msgid "" "In the curses module, raise an error if window.getstr() or window.instr() is" " passed a negative value." msgstr "" -#: ../../../build/NEWS:14441 ../../../build/NEWS:17248 +#: ../../../build/NEWS:14664 ../../../build/NEWS:17471 msgid "" "`bpo-27783 `__: Fix possible usage of " "uninitialized memory in operator.methodcaller." msgstr "" -#: ../../../build/NEWS:14444 ../../../build/NEWS:17251 +#: ../../../build/NEWS:14667 ../../../build/NEWS:17474 msgid "" "`bpo-27774 `__: Fix possible Py_DECREF " "on unowned object in _sre." msgstr "" -#: ../../../build/NEWS:14446 ../../../build/NEWS:17253 +#: ../../../build/NEWS:14669 ../../../build/NEWS:17476 msgid "" "`bpo-27760 `__: Fix possible integer " "overflow in binascii.b2a_qp." msgstr "" -#: ../../../build/NEWS:14448 ../../../build/NEWS:17255 +#: ../../../build/NEWS:14671 ../../../build/NEWS:17478 msgid "" "`bpo-27758 `__: Fix possible integer " "overflow in the _csv module for large record lengths." msgstr "" -#: ../../../build/NEWS:14451 ../../../build/NEWS:17258 +#: ../../../build/NEWS:14674 ../../../build/NEWS:17481 msgid "" "`bpo-27568 `__: Prevent HTTPoxy attack " "(CVE-2016-1000110). Ignore the HTTP_PROXY variable when REQUEST_METHOD " "environment is set, which indicates that the script is in CGI mode." msgstr "" -#: ../../../build/NEWS:14455 +#: ../../../build/NEWS:14678 msgid "" "`bpo-7063 `__: Remove dead code from the " "\"array\" module's slice handling. Patch by Chuck." msgstr "" -#: ../../../build/NEWS:14458 ../../../build/NEWS:17262 +#: ../../../build/NEWS:14681 ../../../build/NEWS:17485 msgid "" "`bpo-27656 `__: Do not assume sched.h " "defines any SCHED_* constants." msgstr "" -#: ../../../build/NEWS:14460 ../../../build/NEWS:17264 +#: ../../../build/NEWS:14683 ../../../build/NEWS:17487 msgid "" "`bpo-27130 `__: In the \"zlib\" module, " "fix handling of large buffers (typically 4 GiB) when compressing and " @@ -21994,55 +22417,55 @@ msgid "" "and decompression operations did not properly handle results of 4 GiB." msgstr "" -#: ../../../build/NEWS:14465 +#: ../../../build/NEWS:14688 msgid "" "`bpo-24773 `__: Implemented :pep:`495` " "(Local Time Disambiguation)." msgstr "" -#: ../../../build/NEWS:14467 +#: ../../../build/NEWS:14690 msgid "" "Expose the EPOLLEXCLUSIVE constant (when it is defined) in the select " "module." msgstr "" -#: ../../../build/NEWS:14470 +#: ../../../build/NEWS:14693 msgid "" "`bpo-27567 `__: Expose the EPOLLRDHUP " "and POLLRDHUP constants in the select module." msgstr "" -#: ../../../build/NEWS:14473 +#: ../../../build/NEWS:14696 msgid "" "`bpo-1621 `__: Avoid signed int negation " "overflow in the \"audioop\" module." msgstr "" -#: ../../../build/NEWS:14475 ../../../build/NEWS:17269 +#: ../../../build/NEWS:14698 ../../../build/NEWS:17492 msgid "" "`bpo-27533 `__: Release GIL in nt._isdir" msgstr "" -#: ../../../build/NEWS:14477 ../../../build/NEWS:17271 +#: ../../../build/NEWS:14700 ../../../build/NEWS:17494 msgid "" "`bpo-17711 `__: Fixed unpickling by the " "persistent ID with protocol 0. Original patch by Alexandre Vassalotti." msgstr "" -#: ../../../build/NEWS:14480 ../../../build/NEWS:17274 +#: ../../../build/NEWS:14703 ../../../build/NEWS:17497 msgid "" "`bpo-27522 `__: Avoid an unintentional " "reference cycle in email.feedparser." msgstr "" -#: ../../../build/NEWS:14482 +#: ../../../build/NEWS:14705 msgid "" "`bpo-27512 `__: Fix a segfault when " "os.fspath() called an __fspath__() method that raised an exception. Patch by" " Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14488 ../../../build/NEWS:17425 +#: ../../../build/NEWS:14711 ../../../build/NEWS:17648 msgid "" "`bpo-27714 `__: text_textview and " "test_autocomplete now pass when re-run in the same process. This occurs " @@ -22050,7 +22473,7 @@ msgid "" "warning from test_config." msgstr "" -#: ../../../build/NEWS:14492 +#: ../../../build/NEWS:14715 msgid "" "`bpo-27621 `__: Put query response " "validation error messages in the query box itself instead of in a separate " @@ -22058,152 +22481,152 @@ msgid "" " Mark Roseman." msgstr "" -#: ../../../build/NEWS:14496 +#: ../../../build/NEWS:14719 msgid "" "`bpo-27620 `__: Escape key now closes " "Query box as cancelled." msgstr "" -#: ../../../build/NEWS:14498 +#: ../../../build/NEWS:14721 msgid "" "`bpo-27609 `__: IDLE: tab after initial " "whitespace should tab, not autocomplete. This fixes problem with writing " "docstrings at least twice indented." msgstr "" -#: ../../../build/NEWS:14502 +#: ../../../build/NEWS:14725 msgid "" "`bpo-27609 `__: Explicitly return None " "when there are also non-None returns. In a few cases, reverse a condition " "and eliminate a return." msgstr "" -#: ../../../build/NEWS:14505 ../../../build/NEWS:17429 +#: ../../../build/NEWS:14728 ../../../build/NEWS:17652 msgid "" "`bpo-25507 `__: IDLE no longer runs " "buggy code because of its tkinter imports. Users must include the same " "imports required to run directly in Python." msgstr "" -#: ../../../build/NEWS:14508 ../../../build/NEWS:14701 +#: ../../../build/NEWS:14731 ../../../build/NEWS:14924 msgid "" "`bpo-27173 `__: Add 'IDLE Modern Unix' " "to the built-in key sets. Make the default key set depend on the platform. " "Add tests for the changes to the config module." msgstr "" -#: ../../../build/NEWS:14512 ../../../build/NEWS:14708 -#: ../../../build/NEWS:17432 +#: ../../../build/NEWS:14735 ../../../build/NEWS:14931 +#: ../../../build/NEWS:17655 msgid "" "`bpo-27452 `__: add line counter and crc" " to IDLE configHandler test dump." msgstr "" -#: ../../../build/NEWS:14517 +#: ../../../build/NEWS:14740 msgid "" "`bpo-25805 `__: Skip a test in " "test_pkgutil as needed that doesn't work when ``__name__ == __main__``. " "Patch by SilentGhost." msgstr "" -#: ../../../build/NEWS:14520 +#: ../../../build/NEWS:14743 msgid "" "`bpo-27472 `__: Add " "test.support.unix_shell as the path to the default shell." msgstr "" -#: ../../../build/NEWS:14522 ../../../build/NEWS:17470 +#: ../../../build/NEWS:14745 ../../../build/NEWS:17693 msgid "" "`bpo-27369 `__: In test_pyexpat, avoid " "testing an error message detail that changed in Expat 2.2.0." msgstr "" -#: ../../../build/NEWS:14525 +#: ../../../build/NEWS:14748 msgid "" "`bpo-27594 `__: Prevent assertion error " "when running test_ast with coverage enabled: ensure code object has a valid " "first line number. Patch suggested by Ivan Levkivskyi." msgstr "" -#: ../../../build/NEWS:14532 +#: ../../../build/NEWS:14755 msgid "" "`bpo-27647 `__: Update bundled Tcl/Tk to" " 8.6.6." msgstr "" -#: ../../../build/NEWS:14534 +#: ../../../build/NEWS:14757 msgid "" "`bpo-27610 `__: Adds :pep:`514` metadata" " to Windows installer" msgstr "" -#: ../../../build/NEWS:14536 ../../../build/NEWS:17495 +#: ../../../build/NEWS:14759 ../../../build/NEWS:17718 msgid "" "`bpo-27469 `__: Adds a shell extension " "to the launcher so that drag and drop works correctly." msgstr "" -#: ../../../build/NEWS:14539 +#: ../../../build/NEWS:14762 msgid "" "`bpo-27309 `__: Enables proper Windows " "styles in python[w].exe manifest." msgstr "" -#: ../../../build/NEWS:14544 ../../../build/NEWS:17540 +#: ../../../build/NEWS:14767 ../../../build/NEWS:17763 msgid "" "`bpo-27713 `__: Suppress spurious build " "warnings when updating importlib's bootstrap files. Patch by Xiang Zhang" msgstr "" -#: ../../../build/NEWS:14547 +#: ../../../build/NEWS:14770 msgid "" "`bpo-25825 `__: Correct the references " "to Modules/python.exp, which is required on AIX. The references were " "accidentally changed in 3.5.0a1." msgstr "" -#: ../../../build/NEWS:14550 ../../../build/NEWS:17548 +#: ../../../build/NEWS:14773 ../../../build/NEWS:17771 msgid "" "`bpo-27453 `__: CPP invocation in " "configure must use CPPFLAGS. Patch by Chi Hsuan Yen." msgstr "" -#: ../../../build/NEWS:14553 ../../../build/NEWS:17551 +#: ../../../build/NEWS:14776 ../../../build/NEWS:17774 msgid "" "`bpo-27641 `__: The configure script now" " inserts comments into the makefile to prevent the pgen and " "_freeze_importlib executables from being cross-compiled." msgstr "" -#: ../../../build/NEWS:14557 ../../../build/NEWS:17555 +#: ../../../build/NEWS:14780 ../../../build/NEWS:17778 msgid "" "`bpo-26662 `__: Set PYTHON_FOR_GEN in " "configure as the Python program to be used for file generation during the " "build." msgstr "" -#: ../../../build/NEWS:14560 ../../../build/NEWS:17558 +#: ../../../build/NEWS:14783 ../../../build/NEWS:17781 msgid "" "`bpo-10910 `__: Avoid C++ compilation " "errors on FreeBSD and OS X. Also update FreedBSD version checks for the " "original ctype UTF-8 workaround." msgstr "" -#: ../../../build/NEWS:14565 +#: ../../../build/NEWS:14788 msgid "Python 3.6.0 alpha 3" msgstr "Python 3.6.0 alfa 3" -#: ../../../build/NEWS:14567 +#: ../../../build/NEWS:14790 msgid "*Release date: 2016-07-11*" msgstr "*Tanggal rilis: 2016-07-11*" -#: ../../../build/NEWS:14572 ../../../build/NEWS:16996 +#: ../../../build/NEWS:14795 ../../../build/NEWS:17219 msgid "" "`bpo-27473 `__: Fixed possible integer " "overflow in bytes and bytearray concatenations. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14575 +#: ../../../build/NEWS:14798 msgid "" "`bpo-23034 `__: The output of a special " "Python build with defined COUNT_ALLOCS, SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT" @@ -22211,48 +22634,48 @@ msgid "" "showalloccount\" option. It now outputs to stderr instead of stdout." msgstr "" -#: ../../../build/NEWS:14580 ../../../build/NEWS:17005 +#: ../../../build/NEWS:14803 ../../../build/NEWS:17228 msgid "" "`bpo-27443 `__: __length_hint__() of " "bytearray iterators no longer return a negative integer for a resized " "bytearray." msgstr "" -#: ../../../build/NEWS:14583 +#: ../../../build/NEWS:14806 msgid "" "`bpo-27007 `__: The fromhex() class " "methods of bytes and bytearray subclasses now return an instance of " "corresponding subclass." msgstr "" -#: ../../../build/NEWS:14589 ../../../build/NEWS:17276 +#: ../../../build/NEWS:14812 ../../../build/NEWS:17499 msgid "" "`bpo-26844 `__: Fix error message for " "imp.find_module() to refer to 'path' instead of 'name'. Patch by Lev " "Maximov." msgstr "" -#: ../../../build/NEWS:14592 ../../../build/NEWS:17279 +#: ../../../build/NEWS:14815 ../../../build/NEWS:17502 msgid "" "`bpo-23804 `__: Fix SSL zero-length " "recv() calls to not block and not raise an error about unclean EOF." msgstr "" -#: ../../../build/NEWS:14595 ../../../build/NEWS:17282 +#: ../../../build/NEWS:14818 ../../../build/NEWS:17505 msgid "" "`bpo-27466 `__: Change time format " "returned by http.cookie.time2netscape, confirming the netscape cookie format" " and making it consistent with documentation." msgstr "" -#: ../../../build/NEWS:14599 +#: ../../../build/NEWS:14822 msgid "" "`bpo-21708 `__: Deprecated dbm.dumb " "behavior that differs from common dbm behavior: creating a database in 'r' " "and 'w' modes and modifying a database in 'r' mode." msgstr "" -#: ../../../build/NEWS:14603 +#: ../../../build/NEWS:14826 msgid "" "`bpo-26721 `__: Change the " "socketserver.StreamRequestHandler.wfile attribute to implement " @@ -22260,7 +22683,7 @@ msgid "" "writes." msgstr "" -#: ../../../build/NEWS:14607 +#: ../../../build/NEWS:14830 msgid "" "`bpo-22115 `__: Added methods trace_add," " trace_remove and trace_info in the tkinter.Variable class. They replace " @@ -22271,34 +22694,34 @@ msgid "" "tracing in the \"u\" mode now works." msgstr "" -#: ../../../build/NEWS:14615 +#: ../../../build/NEWS:14838 msgid "" "`bpo-26243 `__: Only the level argument " "to zlib.compress() is keyword argument now. The first argument is " "positional-only." msgstr "" -#: ../../../build/NEWS:14618 +#: ../../../build/NEWS:14841 msgid "" "`bpo-27038 `__: Expose the DirEntry type" " as os.DirEntry. Code patch by Jelle Zijlstra." msgstr "" -#: ../../../build/NEWS:14621 +#: ../../../build/NEWS:14844 msgid "" "`bpo-27186 `__: Update " "os.fspath()/PyOS_FSPath() to check the return value of __fspath__() to be " "either str or bytes." msgstr "" -#: ../../../build/NEWS:14624 +#: ../../../build/NEWS:14847 msgid "" "`bpo-18726 `__: All optional parameters " "of the dump(), dumps(), load() and loads() functions and JSONEncoder and " "JSONDecoder class constructors in the json module are now keyword-only." msgstr "" -#: ../../../build/NEWS:14628 +#: ../../../build/NEWS:14851 msgid "" "`bpo-27319 `__: Methods selection_set()," " selection_add(), selection_remove() and selection_toggle() of ttk.TreeView " @@ -22307,58 +22730,58 @@ msgid "" " method with arguments." msgstr "" -#: ../../../build/NEWS:14633 ../../../build/NEWS:17296 +#: ../../../build/NEWS:14856 ../../../build/NEWS:17519 msgid "" "`bpo-27079 `__: Fixed curses.ascii " "functions isblank(), iscntrl() and ispunct()." msgstr "" -#: ../../../build/NEWS:14636 +#: ../../../build/NEWS:14859 msgid "" "`bpo-27294 `__: Numerical state in the " "repr for Tkinter event objects is now represented as a combination of known " "flags." msgstr "" -#: ../../../build/NEWS:14639 +#: ../../../build/NEWS:14862 msgid "" "`bpo-27177 `__: Match objects in the re " "module now support index-like objects as group indices. Based on patches by" " Jeroen Demeyer and Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14642 ../../../build/NEWS:17299 +#: ../../../build/NEWS:14865 ../../../build/NEWS:17522 msgid "" "`bpo-26754 `__: Some functions " "(compile() etc) accepted a filename argument encoded as an iterable of " "integers. Now only strings and byte-like objects are accepted." msgstr "" -#: ../../../build/NEWS:14646 +#: ../../../build/NEWS:14869 msgid "" "`bpo-26536 `__: socket.ioctl now " "supports SIO_LOOPBACK_FAST_PATH. Patch by Daniel Stokes." msgstr "" -#: ../../../build/NEWS:14649 ../../../build/NEWS:17303 +#: ../../../build/NEWS:14872 ../../../build/NEWS:17526 msgid "" "`bpo-27048 `__: Prevents distutils " "failing on Windows when environment variables contain non-ASCII characters" msgstr "" -#: ../../../build/NEWS:14652 ../../../build/NEWS:17306 +#: ../../../build/NEWS:14875 ../../../build/NEWS:17529 msgid "" "`bpo-27330 `__: Fixed possible leaks in " "the ctypes module." msgstr "" -#: ../../../build/NEWS:14654 ../../../build/NEWS:17308 +#: ../../../build/NEWS:14877 ../../../build/NEWS:17531 msgid "" "`bpo-27238 `__: Got rid of bare excepts " "in the turtle module. Original patch by Jelle Zijlstra." msgstr "" -#: ../../../build/NEWS:14657 ../../../build/NEWS:17311 +#: ../../../build/NEWS:14880 ../../../build/NEWS:17534 msgid "" "`bpo-27122 `__: When an exception is " "raised within the context being managed by a contextlib.ExitStack() and one " @@ -22367,7 +22790,7 @@ msgid "" " This avoids the :pep:`479` bug described in issue25782." msgstr "" -#: ../../../build/NEWS:14666 ../../../build/NEWS:17320 +#: ../../../build/NEWS:14889 ../../../build/NEWS:17543 msgid "" "`bpo-27278 `__: Fix os.urandom() " "implementation using getrandom() on Linux. Truncate size to INT_MAX and loop" @@ -22375,57 +22798,57 @@ msgid "" "Py_ssize_t to int." msgstr "" -#: ../../../build/NEWS:14673 +#: ../../../build/NEWS:14896 msgid "" "`bpo-16864 `__: sqlite3.Cursor.lastrowid" " now supports REPLACE statement. Initial patch by Alex LordThorsen." msgstr "" -#: ../../../build/NEWS:14676 ../../../build/NEWS:17327 +#: ../../../build/NEWS:14899 ../../../build/NEWS:17550 msgid "" "`bpo-26386 `__: Fixed ttk.TreeView " "selection operations with item id's containing spaces." msgstr "" -#: ../../../build/NEWS:14679 +#: ../../../build/NEWS:14902 msgid "" "`bpo-8637 `__: Honor a pager set by the " "env var MANPAGER (in preference to one set by the env var PAGER)." msgstr "" -#: ../../../build/NEWS:14685 ../../../build/NEWS:17333 +#: ../../../build/NEWS:14908 ../../../build/NEWS:17556 msgid "" "`bpo-22636 `__: Avoid shell injection " "problems with ctypes.util.find_library()." msgstr "" -#: ../../../build/NEWS:14690 ../../../build/NEWS:17338 +#: ../../../build/NEWS:14913 ../../../build/NEWS:17561 msgid "" "`bpo-16182 `__: Fix various functions in" " the \"readline\" module to use the locale encoding, and fix get_begidx() " "and get_endidx() to return code point indexes." msgstr "" -#: ../../../build/NEWS:14694 ../../../build/NEWS:17342 +#: ../../../build/NEWS:14917 ../../../build/NEWS:17565 msgid "" "`bpo-27392 `__: Add " "loop.connect_accepted_socket(). Patch by Jim Fulton." msgstr "" -#: ../../../build/NEWS:14699 +#: ../../../build/NEWS:14922 msgid "" "`bpo-27477 `__: IDLE search dialogs now " "use ttk widgets." msgstr "" -#: ../../../build/NEWS:14705 +#: ../../../build/NEWS:14928 msgid "" "`bpo-27452 `__: make command line " "\"idle-test> python test_help.py\" work. __file__ is relative when python is" " started in the file's directory." msgstr "" -#: ../../../build/NEWS:14710 +#: ../../../build/NEWS:14933 msgid "" "`bpo-27380 `__: IDLE: add query.py with " "base Query dialog and ttk widgets. Module had subclasses SectionName, " @@ -22435,19 +22858,19 @@ msgid "" "starting over. Add tests and delete the two files combined into the new one." msgstr "" -#: ../../../build/NEWS:14717 +#: ../../../build/NEWS:14940 msgid "" "`bpo-27372 `__: Test_idle no longer " "changes the locale." msgstr "" -#: ../../../build/NEWS:14719 ../../../build/NEWS:17434 +#: ../../../build/NEWS:14942 ../../../build/NEWS:17657 msgid "" "`bpo-27365 `__: Allow non-ascii chars in" " IDLE NEWS.txt, for contributor names." msgstr "" -#: ../../../build/NEWS:14721 ../../../build/NEWS:17436 +#: ../../../build/NEWS:14944 ../../../build/NEWS:17659 msgid "" "`bpo-27245 `__: IDLE: Cleanly delete " "custom themes and key bindings. Previously, when IDLE was started from a " @@ -22455,7 +22878,7 @@ msgid "" "Storchaka." msgstr "" -#: ../../../build/NEWS:14725 +#: ../../../build/NEWS:14948 msgid "" "`bpo-24137 `__: Run IDLE, test_idle, and" " htest with tkinter default root disabled. Fix code and tests that fail " @@ -22463,47 +22886,47 @@ msgid "" " and mainloop." msgstr "" -#: ../../../build/NEWS:14729 +#: ../../../build/NEWS:14952 msgid "" "`bpo-27310 `__: Fix IDLE.app failure to " "launch on OS X due to vestigial import." msgstr "" -#: ../../../build/NEWS:14734 +#: ../../../build/NEWS:14957 msgid "" "`bpo-26754 `__: PyUnicode_FSDecoder() " "accepted a filename argument encoded as an iterable of integers. Now only " "strings and byte-like objects are accepted." msgstr "" -#: ../../../build/NEWS:14741 ../../../build/NEWS:17521 +#: ../../../build/NEWS:14964 ../../../build/NEWS:17744 msgid "" "`bpo-28066 `__: Fix the logic that " "searches build directories for generated include files when building outside" " the source tree." msgstr "" -#: ../../../build/NEWS:14744 +#: ../../../build/NEWS:14967 msgid "" "`bpo-27442 `__: Expose the Android API " "level that python was built against, in sysconfig.get_config_vars() as " "'ANDROID_API_LEVEL'." msgstr "" -#: ../../../build/NEWS:14747 +#: ../../../build/NEWS:14970 msgid "" "`bpo-27434 `__: The interpreter that " "runs the cross-build, found in PATH, must now be of the same feature version" " (e.g. 3.6) as the source being built." msgstr "" -#: ../../../build/NEWS:14750 ../../../build/NEWS:17573 +#: ../../../build/NEWS:14973 ../../../build/NEWS:17796 msgid "" "`bpo-26930 `__: Update Windows builds to" " use OpenSSL 1.0.2h." msgstr "" -#: ../../../build/NEWS:14752 +#: ../../../build/NEWS:14975 msgid "" "`bpo-23968 `__: Rename the platform " "directory from plat-$(MACHDEP) to plat-$(PLATFORM_TRIPLET). Rename the " @@ -22513,64 +22936,64 @@ msgid "" "the ABIFLAGS." msgstr "" -#: ../../../build/NEWS:14758 +#: ../../../build/NEWS:14981 msgid "Don't use largefile support for GNU/Hurd." msgstr "Jangan gunakan dukungan berkasbesar untuk GNU/Hurd." -#: ../../../build/NEWS:14763 ../../../build/NEWS:17480 +#: ../../../build/NEWS:14986 ../../../build/NEWS:17703 msgid "" "`bpo-27332 `__: Fixed the type of the " "first argument of module-level functions generated by Argument Clinic. " "Patch by Petr Viktorin." msgstr "" -#: ../../../build/NEWS:14766 ../../../build/NEWS:17483 +#: ../../../build/NEWS:14989 ../../../build/NEWS:17706 msgid "" "`bpo-27418 `__: Fixed " "Tools/importbench/importbench.py." msgstr "" -#: ../../../build/NEWS:14771 ../../../build/NEWS:18202 +#: ../../../build/NEWS:14994 ../../../build/NEWS:18425 msgid "" "`bpo-19489 `__: Moved the search box " "from the sidebar to the header and footer of each page. Patch by Ammar " "Askar." msgstr "" -#: ../../../build/NEWS:14774 +#: ../../../build/NEWS:14997 msgid "" "`bpo-27285 `__: Update documentation to " "reflect the deprecation of ``pyvenv`` and normalize on the term \"virtual " "environment\". Patch by Steve Piercy." msgstr "" -#: ../../../build/NEWS:14780 +#: ../../../build/NEWS:15003 msgid "" "`bpo-27027 `__: Added " "test.support.is_android that is True when this is an Android build." msgstr "" -#: ../../../build/NEWS:14785 +#: ../../../build/NEWS:15008 msgid "Python 3.6.0 alpha 2" msgstr "Python 3.6.0 alfa 2" -#: ../../../build/NEWS:14787 +#: ../../../build/NEWS:15010 msgid "*Release date: 2016-06-13*" msgstr "*Tanggal rilis: 2016-06-13*" -#: ../../../build/NEWS:14792 +#: ../../../build/NEWS:15015 msgid "" "`bpo-27095 `__: Simplified MAKE_FUNCTION" " and removed MAKE_CLOSURE opcodes. Patch by Demur Rumed." msgstr "" -#: ../../../build/NEWS:14795 +#: ../../../build/NEWS:15018 msgid "" "`bpo-27190 `__: Raise NotSupportedError " "if sqlite3 is older than 3.3.1. Patch by Dave Sawyer." msgstr "" -#: ../../../build/NEWS:14798 +#: ../../../build/NEWS:15021 msgid "" "`bpo-27286 `__: Fixed compiling " "BUILD_MAP_UNPACK_WITH_CALL opcode. Calling function with generalized " @@ -22578,26 +23001,26 @@ msgid "" "behavior." msgstr "" -#: ../../../build/NEWS:14802 +#: ../../../build/NEWS:15025 msgid "" "`bpo-27140 `__: Added " "BUILD_CONST_KEY_MAP opcode." msgstr "" -#: ../../../build/NEWS:14804 +#: ../../../build/NEWS:15027 msgid "" "`bpo-27186 `__: Add support for " "os.PathLike objects to open() (part of :pep:`519`)." msgstr "" -#: ../../../build/NEWS:14807 ../../../build/NEWS:17594 +#: ../../../build/NEWS:15030 ../../../build/NEWS:17817 msgid "" "`bpo-27066 `__: Fixed SystemError if a " "custom opener (for open()) returns a negative number without setting an " "exception." msgstr "" -#: ../../../build/NEWS:14810 +#: ../../../build/NEWS:15033 msgid "" "`bpo-26983 `__: float() now always " "return an instance of exact float. The deprecation warning is emitted if " @@ -22605,26 +23028,26 @@ msgid "" "versions of Python this can be an error." msgstr "" -#: ../../../build/NEWS:14815 +#: ../../../build/NEWS:15038 msgid "" "`bpo-27097 `__: Python interpreter is " "now about 7% faster due to optimized instruction decoding. Based on patch " "by Demur Rumed." msgstr "" -#: ../../../build/NEWS:14818 +#: ../../../build/NEWS:15041 msgid "" "`bpo-26647 `__: Python interpreter now " "uses 16-bit wordcode instead of bytecode. Patch by Demur Rumed." msgstr "" -#: ../../../build/NEWS:14821 +#: ../../../build/NEWS:15044 msgid "" "`bpo-23275 `__: Allow assigning to an " "empty target list in round brackets: () = iterable." msgstr "" -#: ../../../build/NEWS:14824 ../../../build/NEWS:17716 +#: ../../../build/NEWS:15047 ../../../build/NEWS:17939 msgid "" "`bpo-27243 `__: Update the __aiter__ " "protocol: instead of returning an awaitable that resolves to an asynchronous" @@ -22632,101 +23055,101 @@ msgid "" " former will trigger a PendingDeprecationWarning." msgstr "" -#: ../../../build/NEWS:14832 +#: ../../../build/NEWS:15055 msgid "" "Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constants " "exposed on the API which are not implemented on GNU/Hurd. They would not " "work at runtime anyway." msgstr "" -#: ../../../build/NEWS:14836 +#: ../../../build/NEWS:15059 msgid "" "`bpo-27025 `__: Generated names for " "Tkinter widgets are now more meaningful and recognizable." msgstr "" -#: ../../../build/NEWS:14839 +#: ../../../build/NEWS:15062 msgid "" "`bpo-25455 `__: Fixed crashes in repr of" " recursive ElementTree.Element and functools.partial objects." msgstr "" -#: ../../../build/NEWS:14842 +#: ../../../build/NEWS:15065 msgid "" "`bpo-27294 `__: Improved repr for " "Tkinter event objects." msgstr "" -#: ../../../build/NEWS:14844 +#: ../../../build/NEWS:15067 msgid "" "`bpo-20508 `__: Improve exception " "message of IPv{4,6}Network.__getitem__. Patch by Gareth Rees." msgstr "" -#: ../../../build/NEWS:14850 ../../../build/NEWS:17724 +#: ../../../build/NEWS:15073 ../../../build/NEWS:17947 msgid "" "`bpo-26556 `__: Update expat to 2.1.1, " "fixes CVE-2015-1283." msgstr "" -#: ../../../build/NEWS:14852 +#: ../../../build/NEWS:15075 msgid "" "Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. Reported by Team " "Oststrom." msgstr "" -#: ../../../build/NEWS:14858 ../../../build/NEWS:17732 +#: ../../../build/NEWS:15081 ../../../build/NEWS:17955 msgid "" "`bpo-21386 `__: Implement missing " "IPv4Address.is_global property. It was documented since 07a5610bae9d. " "Initial patch by Roger Luethi." msgstr "" -#: ../../../build/NEWS:14861 +#: ../../../build/NEWS:15084 msgid "" "`bpo-27029 `__: Removed deprecated " "support of universal newlines mode from ZipFile.open()." msgstr "" -#: ../../../build/NEWS:14864 +#: ../../../build/NEWS:15087 msgid "" "`bpo-27030 `__: Unknown escapes " "consisting of ``'\\'`` and an ASCII letter in regular expressions now are " "errors. The re.LOCALE flag now can be used only with bytes patterns." msgstr "" -#: ../../../build/NEWS:14868 +#: ../../../build/NEWS:15091 msgid "" "`bpo-27186 `__: Add os.PathLike support " "to DirEntry (part of :pep:`519`). Initial patch by Jelle Zijlstra." msgstr "" -#: ../../../build/NEWS:14871 ../../../build/NEWS:17735 +#: ../../../build/NEWS:15094 ../../../build/NEWS:17958 msgid "" "`bpo-20900 `__: distutils register " "command now decodes HTTP responses correctly. Initial patch by ingrid." msgstr "" -#: ../../../build/NEWS:14874 +#: ../../../build/NEWS:15097 msgid "" "`bpo-27186 `__: Add os.PathLike support " "to pathlib, removing its provisional status (part of PEP 519). Initial patch" " by Dusty Phillips." msgstr "" -#: ../../../build/NEWS:14877 +#: ../../../build/NEWS:15100 msgid "" "`bpo-27186 `__: Add support for " "os.PathLike objects to os.fsencode() and os.fsdecode() (part of :pep:`519`)." msgstr "" -#: ../../../build/NEWS:14880 +#: ../../../build/NEWS:15103 msgid "" "`bpo-27186 `__: Introduce os.PathLike " "and os.fspath() (part of :pep:`519`)." msgstr "" -#: ../../../build/NEWS:14882 ../../../build/NEWS:17738 +#: ../../../build/NEWS:15105 ../../../build/NEWS:17961 msgid "" "A new version of typing.py provides several new classes and features: " "@overload outside stubs, Reversible, DefaultDict, Text, ContextManager, " @@ -22736,7 +23159,7 @@ msgid "" "been added (in fact they made it into 3.5.1 but were never mentioned)." msgstr "" -#: ../../../build/NEWS:14890 ../../../build/NEWS:17746 +#: ../../../build/NEWS:15113 ../../../build/NEWS:17969 msgid "" "`bpo-25738 `__: Stop " "http.server.BaseHTTPRequestHandler.send_error() from sending a message body " @@ -22744,13 +23167,13 @@ msgid "" "that don't have a body. Patch by Susumu Koshiba." msgstr "" -#: ../../../build/NEWS:14895 ../../../build/NEWS:17751 +#: ../../../build/NEWS:15118 ../../../build/NEWS:17974 msgid "" "`bpo-21313 `__: Fix the \"platform\" " "module to tolerate when sys.version contains truncated build information." msgstr "" -#: ../../../build/NEWS:14901 ../../../build/NEWS:17757 +#: ../../../build/NEWS:15124 ../../../build/NEWS:17980 msgid "" "`bpo-26839 `__: On Linux, " ":func:`os.urandom` now calls ``getrandom()`` with ``GRND_NONBLOCK`` to fall " @@ -22758,21 +23181,21 @@ msgid "" "initialized yet. Patch written by Colm Buckley." msgstr "" -#: ../../../build/NEWS:14908 +#: ../../../build/NEWS:15131 msgid "" "`bpo-23883 `__: Added missing APIs to " "__all__ to match the documented APIs for the following modules: cgi, " "mailbox, mimetypes, plistlib and smtpd. Patches by Jacek Kołodziej." msgstr "" -#: ../../../build/NEWS:14912 ../../../build/NEWS:17764 +#: ../../../build/NEWS:15135 ../../../build/NEWS:17987 msgid "" "`bpo-27164 `__: In the zlib module, " "allow decompressing raw Deflate streams with a predefined zdict. Based on " "patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:14915 ../../../build/NEWS:17767 +#: ../../../build/NEWS:15138 ../../../build/NEWS:17990 msgid "" "`bpo-24291 `__: Fix " "wsgiref.simple_server.WSGIRequestHandler to completely write data to the " @@ -22781,13 +23204,13 @@ msgid "" "but this is deprecated." msgstr "" -#: ../../../build/NEWS:14920 +#: ../../../build/NEWS:15143 msgid "" "`bpo-21272 `__: Use _sysconfigdata.py to" " initialize distutils.sysconfig." msgstr "" -#: ../../../build/NEWS:14922 +#: ../../../build/NEWS:15145 msgid "" "`bpo-19611 `__: :mod:`inspect` now " "reports the implicit ``.0`` parameters generated by the compiler for " @@ -22795,13 +23218,13 @@ msgid "" "only parameters called ``implicit0``. Patch by Jelle Zijlstra." msgstr "" -#: ../../../build/NEWS:14927 ../../../build/NEWS:17772 +#: ../../../build/NEWS:15150 ../../../build/NEWS:17995 msgid "" "`bpo-26809 `__: Add ``__all__`` to " ":mod:`string`. Patch by Emanuel Barry." msgstr "" -#: ../../../build/NEWS:14929 ../../../build/NEWS:17774 +#: ../../../build/NEWS:15152 ../../../build/NEWS:17997 msgid "" "`bpo-26373 `__: " "subprocess.Popen.communicate now correctly ignores BrokenPipeError when the " @@ -22809,7 +23232,7 @@ msgid "" "circumstances." msgstr "" -#: ../../../build/NEWS:14933 +#: ../../../build/NEWS:15156 msgid "" "signal, socket, and ssl module IntEnum constant name lookups now return a " "consistent name for values having multiple names. Ex: signal.Signals(6) now" @@ -22817,71 +23240,71 @@ msgid "" "signal.SIGIOT based on the interpreter's hash randomization seed." msgstr "" -#: ../../../build/NEWS:14938 +#: ../../../build/NEWS:15161 msgid "" "`bpo-27167 `__: Clarify the " "subprocess.CalledProcessError error message text when the child process died" " due to a signal." msgstr "" -#: ../../../build/NEWS:14941 +#: ../../../build/NEWS:15164 msgid "" "`bpo-25931 `__: Don't define " "socketserver.Forking* names on platforms such as Windows that do not support" " os.fork()." msgstr "" -#: ../../../build/NEWS:14944 ../../../build/NEWS:17778 +#: ../../../build/NEWS:15167 ../../../build/NEWS:18001 msgid "" "`bpo-21776 `__: distutils.upload now " "correctly handles HTTPError. Initial patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:14947 +#: ../../../build/NEWS:15170 msgid "" "`bpo-26526 `__: Replace custom parse " "tree validation in the parser module with a simple DFA validator." msgstr "" -#: ../../../build/NEWS:14950 ../../../build/NEWS:17781 +#: ../../../build/NEWS:15173 ../../../build/NEWS:18004 msgid "" "`bpo-27114 `__: Fix " "SSLContext._load_windows_store_certs fails with PermissionError" msgstr "" -#: ../../../build/NEWS:14953 ../../../build/NEWS:17784 +#: ../../../build/NEWS:15176 ../../../build/NEWS:18007 msgid "" "`bpo-18383 `__: Avoid creating duplicate" " filters when using filterwarnings and simplefilter. Based on patch by Alex " "Shkop." msgstr "" -#: ../../../build/NEWS:14956 +#: ../../../build/NEWS:15179 msgid "" "`bpo-23026 `__: winreg.QueryValueEx() " "now return an integer for REG_QWORD type." msgstr "" -#: ../../../build/NEWS:14958 +#: ../../../build/NEWS:15181 msgid "" "`bpo-26741 `__: subprocess.Popen " "destructor now emits a ResourceWarning warning if the child process is still" " running." msgstr "" -#: ../../../build/NEWS:14961 +#: ../../../build/NEWS:15184 msgid "" "`bpo-27056 `__: Optimize pickle.load() " "and pickle.loads(), up to 10% faster to deserialize a lot of small objects." msgstr "" -#: ../../../build/NEWS:14964 +#: ../../../build/NEWS:15187 msgid "" "`bpo-21271 `__: New keyword only " "parameters in reset_mock call." msgstr "" -#: ../../../build/NEWS:14969 ../../../build/NEWS:18149 +#: ../../../build/NEWS:15192 ../../../build/NEWS:18372 msgid "" "`bpo-5124 `__: Paste with text selected " "now replaces the selection on X11. This matches how paste works on Windows, " @@ -22889,40 +23312,40 @@ msgid "" "Storchaka." msgstr "" -#: ../../../build/NEWS:14973 +#: ../../../build/NEWS:15196 msgid "" "`bpo-24750 `__: Switch all scrollbars in" " IDLE to ttk versions. Where needed, minimal tests are added to cover " "changes." msgstr "" -#: ../../../build/NEWS:14976 +#: ../../../build/NEWS:15199 msgid "" "`bpo-24759 `__: IDLE requires tk 8.5 and" " availability ttk widgets. Delete now unneeded tk version tests and code for" " older versions. Add test for IDLE syntax colorizer." msgstr "" -#: ../../../build/NEWS:14980 +#: ../../../build/NEWS:15203 msgid "" "`bpo-27239 `__: idlelib.macosx.isXyzTk " "functions initialize as needed." msgstr "" -#: ../../../build/NEWS:14982 +#: ../../../build/NEWS:15205 msgid "" "`bpo-27262 `__: move Aqua unbinding " "code, which enable context menus, to macosx." msgstr "" -#: ../../../build/NEWS:14985 ../../../build/NEWS:18153 +#: ../../../build/NEWS:15208 ../../../build/NEWS:18376 msgid "" "`bpo-24759 `__: Make clear in " "idlelib.idle_test.__init__ that the directory is a private implementation of" " test.test_idle and tool for maintainers." msgstr "" -#: ../../../build/NEWS:14988 ../../../build/NEWS:18156 +#: ../../../build/NEWS:15211 ../../../build/NEWS:18379 msgid "" "`bpo-27196 `__: Stop 'ThemeChanged' " "warnings when running IDLE tests. These persisted after other warnings were " @@ -22930,33 +23353,33 @@ msgid "" "four test files. Record this additional advice in idle_test/README.txt" msgstr "" -#: ../../../build/NEWS:14993 ../../../build/NEWS:18161 +#: ../../../build/NEWS:15216 ../../../build/NEWS:18384 msgid "" "`bpo-20567 `__: Revise " "idle_test/README.txt with advice about avoiding tk warning messages from " "tests. Apply advice to several IDLE tests." msgstr "" -#: ../../../build/NEWS:14996 +#: ../../../build/NEWS:15219 msgid "" "`bpo-24225 `__: Update " "idlelib/README.txt with new file names and event handlers." msgstr "" -#: ../../../build/NEWS:14999 +#: ../../../build/NEWS:15222 msgid "" "`bpo-27156 `__: Remove obsolete code not" " used by IDLE." msgstr "" -#: ../../../build/NEWS:15001 ../../../build/NEWS:18164 +#: ../../../build/NEWS:15224 ../../../build/NEWS:18387 msgid "" "`bpo-27117 `__: Make colorizer htest and" " turtledemo work with dark themes. Move code for configuring text widget " "colors to a new function." msgstr "" -#: ../../../build/NEWS:15004 +#: ../../../build/NEWS:15227 msgid "" "`bpo-24225 `__: Rename many " "`idlelib/*.py` and `idle_test/test_*.py` files. Edit files to replace old " @@ -22965,183 +23388,183 @@ msgid "" "for more." msgstr "" -#: ../../../build/NEWS:15009 ../../../build/NEWS:18167 +#: ../../../build/NEWS:15232 ../../../build/NEWS:18390 msgid "" "`bpo-26673 `__: When tk reports font " "size as 0, change to size 10. Such fonts on Linux prevented the " "configuration dialog from opening." msgstr "" -#: ../../../build/NEWS:15012 ../../../build/NEWS:18170 +#: ../../../build/NEWS:15235 ../../../build/NEWS:18393 msgid "" "`bpo-21939 `__: Add test for IDLE's " "percolator. Original patch by Saimadhav Heblikar." msgstr "" -#: ../../../build/NEWS:15015 ../../../build/NEWS:18173 +#: ../../../build/NEWS:15238 ../../../build/NEWS:18396 msgid "" "`bpo-21676 `__: Add test for IDLE's " "replace dialog. Original patch by Saimadhav Heblikar." msgstr "" -#: ../../../build/NEWS:15018 ../../../build/NEWS:18176 +#: ../../../build/NEWS:15241 ../../../build/NEWS:18399 msgid "" "`bpo-18410 `__: Add test for IDLE's " "search dialog. Original patch by Westley Martínez." msgstr "" -#: ../../../build/NEWS:15021 +#: ../../../build/NEWS:15244 msgid "" "`bpo-21703 `__: Add test for undo " "delegator. Patch mostly by Saimadhav Heblikar ." msgstr "" -#: ../../../build/NEWS:15024 ../../../build/NEWS:18182 +#: ../../../build/NEWS:15247 ../../../build/NEWS:18405 msgid "" "`bpo-27044 `__: Add " "ConfigDialog.remove_var_callbacks to stop memory leaks." msgstr "" -#: ../../../build/NEWS:15026 ../../../build/NEWS:18184 +#: ../../../build/NEWS:15249 ../../../build/NEWS:18407 msgid "" "`bpo-23977 `__: Add more asserts to " "test_delegator." msgstr "" -#: ../../../build/NEWS:15031 +#: ../../../build/NEWS:15254 msgid "" "`bpo-16484 `__: Change the default " "PYTHONDOCS URL to \"https:\", and fix the resulting links to use lowercase." " Patch by Sean Rodman, test by Kaushik Nadikuditi." msgstr "" -#: ../../../build/NEWS:15035 ../../../build/NEWS:18205 +#: ../../../build/NEWS:15258 ../../../build/NEWS:18428 msgid "" "`bpo-24136 `__: Document the new " ":pep:`448` unpacking syntax of 3.5." msgstr "" -#: ../../../build/NEWS:15037 ../../../build/NEWS:18766 +#: ../../../build/NEWS:15260 ../../../build/NEWS:18989 msgid "" "`bpo-22558 `__: Add remaining doc links " "to source code for Python-coded modules. Patch by Yoni Lavi." msgstr "" -#: ../../../build/NEWS:15043 +#: ../../../build/NEWS:15266 msgid "" "`bpo-25285 `__: regrtest now uses " "subprocesses when the -j1 command line option is used: each test file runs " "in a fresh child process. Before, the -j1 option was ignored." msgstr "" -#: ../../../build/NEWS:15047 +#: ../../../build/NEWS:15270 msgid "" "`bpo-25285 `__: Tools/buildbot/test.bat " "script now uses -j1 by default to run each test file in fresh child process." msgstr "" -#: ../../../build/NEWS:15053 +#: ../../../build/NEWS:15276 msgid "" "`bpo-27064 `__: The py.exe launcher now " "defaults to Python 3. The Windows launcher ``py.exe`` no longer prefers an " "installed Python 2 version over Python 3 by default when used interactively." msgstr "" -#: ../../../build/NEWS:15060 ../../../build/NEWS:18256 +#: ../../../build/NEWS:15283 ../../../build/NEWS:18479 msgid "" "`bpo-27229 `__: Fix the cross-compiling " "pgen rule for in-tree builds. Patch by Xavier de Gaye." msgstr "" -#: ../../../build/NEWS:15063 ../../../build/NEWS:18293 +#: ../../../build/NEWS:15286 ../../../build/NEWS:18516 msgid "" "`bpo-26930 `__: Update OS X 10.5+ 32" "-bit-only installer to build and link with OpenSSL 1.0.2h." msgstr "" -#: ../../../build/NEWS:15069 ../../../build/NEWS:18339 +#: ../../../build/NEWS:15292 ../../../build/NEWS:18562 msgid "" "`bpo-17500 `__: Remove unused and " "outdated icons. (See also: " "https://github.com/python/pythondotorg/issues/945)" msgstr "" -#: ../../../build/NEWS:15075 +#: ../../../build/NEWS:15298 msgid "" "`bpo-27186 `__: Add the PyOS_FSPath() " "function (part of :pep:`519`)." msgstr "" -#: ../../../build/NEWS:15077 +#: ../../../build/NEWS:15300 msgid "" "`bpo-26282 `__: " "PyArg_ParseTupleAndKeywords() now supports positional-only parameters." msgstr "" -#: ../../../build/NEWS:15083 +#: ../../../build/NEWS:15306 msgid "" "`bpo-26282 `__: Argument Clinic now " "supports positional-only and keyword parameters in the same function." msgstr "" -#: ../../../build/NEWS:15088 +#: ../../../build/NEWS:15311 msgid "Python 3.6.0 alpha 1" msgstr "Python 3.6.0 alfa 1" -#: ../../../build/NEWS:15090 +#: ../../../build/NEWS:15313 msgid "*Release date: 2016-05-16*" msgstr "*Tanggal rilis: 2016-05-16*" -#: ../../../build/NEWS:15095 ../../../build/NEWS:17597 +#: ../../../build/NEWS:15318 ../../../build/NEWS:17820 msgid "" "`bpo-20041 `__: Fixed TypeError when " "frame.f_trace is set to None. Patch by Xavier de Gaye." msgstr "" -#: ../../../build/NEWS:15098 ../../../build/NEWS:17600 +#: ../../../build/NEWS:15321 ../../../build/NEWS:17823 msgid "" "`bpo-26168 `__: Fixed possible refleaks " "in failing Py_BuildValue() with the \"N\" format unit." msgstr "" -#: ../../../build/NEWS:15101 ../../../build/NEWS:17603 +#: ../../../build/NEWS:15324 ../../../build/NEWS:17826 msgid "" "`bpo-26991 `__: Fix possible refleak " "when creating a function with annotations." msgstr "" -#: ../../../build/NEWS:15103 +#: ../../../build/NEWS:15326 msgid "" "`bpo-27039 `__: Fixed bytearray.remove()" " for values greater than 127. Based on patch by Joe Jevnik." msgstr "" -#: ../../../build/NEWS:15106 ../../../build/NEWS:17608 +#: ../../../build/NEWS:15329 ../../../build/NEWS:17831 msgid "" "`bpo-23640 `__: int.from_bytes() no " "longer bypasses constructors for subclasses." msgstr "" -#: ../../../build/NEWS:15109 +#: ../../../build/NEWS:15332 msgid "" "`bpo-27005 `__: Optimized the " "float.fromhex() class method for exact float. It is now 2 times faster." msgstr "" -#: ../../../build/NEWS:15112 +#: ../../../build/NEWS:15335 msgid "" "`bpo-18531 `__: Single var-keyword " "argument of dict subtype was passed unscathed to the C-defined function. " "Now it is converted to exact dict." msgstr "" -#: ../../../build/NEWS:15115 ../../../build/NEWS:17611 +#: ../../../build/NEWS:15338 ../../../build/NEWS:17834 msgid "" "`bpo-26811 `__: gc.get_objects() no " "longer contains a broken tuple with NULL pointer." msgstr "" -#: ../../../build/NEWS:15118 ../../../build/NEWS:17614 +#: ../../../build/NEWS:15341 ../../../build/NEWS:17837 msgid "" "`bpo-20120 `__: Use RawConfigParser for " ".pypirc parsing, removing support for interpolation unintentionally added " @@ -23149,7 +23572,7 @@ msgid "" "files, matching behavior in Python 2.7 and Setuptools 19.0." msgstr "" -#: ../../../build/NEWS:15123 +#: ../../../build/NEWS:15346 msgid "" "`bpo-26249 `__: Memory functions of the " ":c:func:`PyMem_Malloc` domain (:c:data:`PYMEM_DOMAIN_MEM`) now use the " @@ -23159,45 +23582,45 @@ msgid "" " of memory allocators in your application." msgstr "" -#: ../../../build/NEWS:15130 +#: ../../../build/NEWS:15353 msgid "" "`bpo-26802 `__: Optimize function calls " "only using unpacking like ``func(*tuple)`` (no other positional argument, no" " keyword): avoid copying the tuple. Patch written by Joe Jevnik." msgstr "" -#: ../../../build/NEWS:15134 ../../../build/NEWS:17619 +#: ../../../build/NEWS:15357 ../../../build/NEWS:17842 msgid "" "`bpo-26659 `__: Make the builtin slice " "type support cycle collection." msgstr "" -#: ../../../build/NEWS:15136 ../../../build/NEWS:17621 +#: ../../../build/NEWS:15359 ../../../build/NEWS:17844 msgid "" "`bpo-26718 `__: super.__init__ no longer" " leaks memory if called multiple times. NOTE: A direct call of " "super.__init__ is not endorsed!" msgstr "" -#: ../../../build/NEWS:15139 ../../../build/NEWS:17651 +#: ../../../build/NEWS:15362 ../../../build/NEWS:17874 msgid "" "`bpo-27138 `__: Fix the doc comment for " "FileFinder.find_spec()." msgstr "" -#: ../../../build/NEWS:15141 ../../../build/NEWS:17695 +#: ../../../build/NEWS:15364 ../../../build/NEWS:17918 msgid "" "`bpo-27147 `__: Mention :pep:`420` in " "the importlib docs." msgstr "" -#: ../../../build/NEWS:15143 ../../../build/NEWS:17624 +#: ../../../build/NEWS:15366 ../../../build/NEWS:17847 msgid "" "`bpo-25339 `__: PYTHONIOENCODING now has" " priority over locale in setting the error handler for stdin and stdout." msgstr "" -#: ../../../build/NEWS:15146 ../../../build/NEWS:17627 +#: ../../../build/NEWS:15369 ../../../build/NEWS:17850 msgid "" "`bpo-26494 `__: Fixed crash on iterating" " exhausting iterators. Affected classes are generic sequence iterators, " @@ -23205,68 +23628,68 @@ msgid "" "OrderedDict, corresponding views and os.scandir() iterator." msgstr "" -#: ../../../build/NEWS:15151 +#: ../../../build/NEWS:15374 msgid "" "`bpo-26574 `__: Optimize " "``bytes.replace(b'', b'.')`` and ``bytearray.replace(b'', b'.')``. Patch " "written by Josh Snider." msgstr "" -#: ../../../build/NEWS:15154 ../../../build/NEWS:17632 +#: ../../../build/NEWS:15377 ../../../build/NEWS:17855 msgid "" "`bpo-26581 `__: If coding cookie is " "specified multiple times on a line in Python source code file, only the " "first one is taken to account." msgstr "" -#: ../../../build/NEWS:15157 +#: ../../../build/NEWS:15380 msgid "" "`bpo-19711 `__: Add tests for reloading " "namespace packages." msgstr "" -#: ../../../build/NEWS:15159 +#: ../../../build/NEWS:15382 msgid "" "`bpo-21099 `__: Switch applicable " "importlib tests to use :pep:`451` API." msgstr "" -#: ../../../build/NEWS:15161 +#: ../../../build/NEWS:15384 msgid "" "`bpo-26563 `__: Debug hooks on Python " "memory allocators now raise a fatal error if functions of the " ":c:func:`PyMem_Malloc` family are called without holding the GIL." msgstr "" -#: ../../../build/NEWS:15165 +#: ../../../build/NEWS:15388 msgid "" "`bpo-26564 `__: On error, the debug " "hooks on Python memory allocators now use the :mod:`tracemalloc` module to " "get the traceback where a memory block was allocated." msgstr "" -#: ../../../build/NEWS:15169 +#: ../../../build/NEWS:15392 msgid "" "`bpo-26558 `__: The debug hooks on " "Python memory allocator :c:func:`PyObject_Malloc` now detect when functions " "are called without holding the GIL." msgstr "" -#: ../../../build/NEWS:15173 +#: ../../../build/NEWS:15396 msgid "" "`bpo-26516 `__: Add " ":envvar:`PYTHONMALLOC` environment variable to set the Python memory " "allocators and/or install debug hooks." msgstr "" -#: ../../../build/NEWS:15176 +#: ../../../build/NEWS:15399 msgid "" "`bpo-26516 `__: The " ":c:func:`PyMem_SetupDebugHooks` function can now also be used on Python " "compiled in release mode." msgstr "" -#: ../../../build/NEWS:15179 +#: ../../../build/NEWS:15402 msgid "" "`bpo-26516 `__: The " ":envvar:`PYTHONMALLOCSTATS` environment variable can now also be used on " @@ -23274,14 +23697,14 @@ msgid "" "string." msgstr "" -#: ../../../build/NEWS:15183 +#: ../../../build/NEWS:15406 msgid "" "`bpo-26516 `__: In debug mode, debug " "hooks are now also installed on Python memory allocators when Python is " "configured without pymalloc." msgstr "" -#: ../../../build/NEWS:15186 ../../../build/NEWS:17635 +#: ../../../build/NEWS:15409 ../../../build/NEWS:17858 msgid "" "`bpo-26464 `__: Fix str.translate() when" " string is ASCII and first replacements removes character, but next " @@ -23289,7 +23712,7 @@ msgid "" "Regression introduced in Python 3.5.0." msgstr "" -#: ../../../build/NEWS:15190 ../../../build/NEWS:17639 +#: ../../../build/NEWS:15413 ../../../build/NEWS:17862 msgid "" "`bpo-22836 `__: Ensure exception reports" " from PyErr_Display() and PyErr_WriteUnraisable() are sensible even when " @@ -23297,20 +23720,20 @@ msgid "" "produced by sys.__excepthook__() and when __del__() raises an exception." msgstr "" -#: ../../../build/NEWS:15195 ../../../build/NEWS:17644 +#: ../../../build/NEWS:15418 ../../../build/NEWS:17867 msgid "" "`bpo-26302 `__: Correct behavior to " "reject comma as a legal character for cookie names." msgstr "" -#: ../../../build/NEWS:15198 +#: ../../../build/NEWS:15421 msgid "" "`bpo-26136 `__: Upgrade the warning when" " a generator raises StopIteration from PendingDeprecationWarning to " "DeprecationWarning. Patch by Anish Shah." msgstr "" -#: ../../../build/NEWS:15201 +#: ../../../build/NEWS:15424 msgid "" "`bpo-26204 `__: The compiler now ignores" " all constant statements: bytes, str, int, float, complex, name constants " @@ -23318,35 +23741,35 @@ msgid "" "example, ``1.0`` is now ignored in ``def f(): 1.0``." msgstr "" -#: ../../../build/NEWS:15206 ../../../build/NEWS:17647 +#: ../../../build/NEWS:15429 ../../../build/NEWS:17870 msgid "" "`bpo-4806 `__: Avoid masking the original" " TypeError exception when using star (``*``) unpacking in function calls. " "Based on patch by Hagen Fürstenau and Daniel Urban." msgstr "" -#: ../../../build/NEWS:15210 +#: ../../../build/NEWS:15433 msgid "" "`bpo-26146 `__: Add a new kind of AST " "node: ``ast.Constant``. It can be used by external AST optimizers, but the " "compiler does not emit directly such node." msgstr "" -#: ../../../build/NEWS:15214 +#: ../../../build/NEWS:15437 msgid "" "`bpo-23601 `__: Sped-up allocation of " "dict key objects by using Python's small object allocator. (Contributed by " "Julian Taylor.)" msgstr "" -#: ../../../build/NEWS:15217 +#: ../../../build/NEWS:15440 msgid "" "`bpo-18018 `__: Import raises " "ImportError instead of SystemError if a relative import is attempted without" " a known parent package." msgstr "" -#: ../../../build/NEWS:15220 +#: ../../../build/NEWS:15443 msgid "" "`bpo-25843 `__: When compiling code, " "don't merge constants if they are equal but have a different types. For " @@ -23355,14 +23778,14 @@ msgid "" "returns ``1.0`` (``float``), even if ``1`` and ``1.0`` are equal." msgstr "" -#: ../../../build/NEWS:15226 +#: ../../../build/NEWS:15449 msgid "" "`bpo-26107 `__: The format of the " "``co_lnotab`` attribute of code objects changes to support negative line " "number delta." msgstr "" -#: ../../../build/NEWS:15229 ../../../build/NEWS:17653 +#: ../../../build/NEWS:15452 ../../../build/NEWS:17876 msgid "" "`bpo-26154 `__: Add a new private " "_PyThreadState_UncheckedGet() function to get the current Python thread " @@ -23372,33 +23795,33 @@ msgid "" "implementation of atomic C types, to avoid compiler issues." msgstr "" -#: ../../../build/NEWS:15236 +#: ../../../build/NEWS:15459 msgid "" "`bpo-25791 `__: If __package__ != " "__spec__.parent or if neither __package__ or __spec__ are defined then " "ImportWarning is raised." msgstr "" -#: ../../../build/NEWS:15239 ../../../build/NEWS:17670 +#: ../../../build/NEWS:15462 ../../../build/NEWS:17893 msgid "" "`bpo-22995 `__: [UPDATE] Comment out the" " one of the pickleability tests in _PyObject_GetState() due to regressions " "observed in Cython-based projects." msgstr "" -#: ../../../build/NEWS:15242 ../../../build/NEWS:17673 +#: ../../../build/NEWS:15465 ../../../build/NEWS:17896 msgid "" "`bpo-25961 `__: Disallowed null " "characters in the type name." msgstr "" -#: ../../../build/NEWS:15244 ../../../build/NEWS:17675 +#: ../../../build/NEWS:15467 ../../../build/NEWS:17898 msgid "" "`bpo-25973 `__: Fix segfault when an " "invalid nonlocal statement binds a name starting with two underscores." msgstr "" -#: ../../../build/NEWS:15247 ../../../build/NEWS:17678 +#: ../../../build/NEWS:15470 ../../../build/NEWS:17901 msgid "" "`bpo-22995 `__: Instances of extension " "types with a state that aren't subclasses of list or dict and haven't " @@ -23407,52 +23830,52 @@ msgid "" "pickled. Including memoryview." msgstr "" -#: ../../../build/NEWS:15252 ../../../build/NEWS:17683 +#: ../../../build/NEWS:15475 ../../../build/NEWS:17906 msgid "" "`bpo-20440 `__: Massive replacing unsafe" " attribute setting code with special macro Py_SETREF." msgstr "" -#: ../../../build/NEWS:15255 ../../../build/NEWS:17686 +#: ../../../build/NEWS:15478 ../../../build/NEWS:17909 msgid "" "`bpo-25766 `__: Special method " "__bytes__() now works in str subclasses." msgstr "" -#: ../../../build/NEWS:15257 ../../../build/NEWS:17688 +#: ../../../build/NEWS:15480 ../../../build/NEWS:17911 msgid "" "`bpo-25421 `__: __sizeof__ methods of " "builtin types now use dynamic basic size. This allows sys.getsize() to work " "correctly with their subclasses with __slots__ defined." msgstr "" -#: ../../../build/NEWS:15261 ../../../build/NEWS:17692 -#: ../../../build/NEWS:18351 +#: ../../../build/NEWS:15484 ../../../build/NEWS:17915 +#: ../../../build/NEWS:18574 msgid "" "`bpo-25709 `__: Fixed problem with in-" "place string concatenation and utf-8 cache." msgstr "" -#: ../../../build/NEWS:15264 +#: ../../../build/NEWS:15487 msgid "" "`bpo-5319 `__: New Py_FinalizeEx() API " "allowing Python to set an exit status of 120 on failure to flush buffered " "streams." msgstr "" -#: ../../../build/NEWS:15267 +#: ../../../build/NEWS:15490 msgid "" "`bpo-25485 `__: telnetlib.Telnet is now " "a context manager." msgstr "" -#: ../../../build/NEWS:15269 ../../../build/NEWS:17697 +#: ../../../build/NEWS:15492 ../../../build/NEWS:17920 msgid "" "`bpo-24097 `__: Fixed crash in " "object.__reduce__() if slot name is freed inside __getattr__." msgstr "" -#: ../../../build/NEWS:15272 ../../../build/NEWS:17700 +#: ../../../build/NEWS:15495 ../../../build/NEWS:17923 msgid "" "`bpo-24731 `__: Fixed crash on " "converting objects with special methods __bytes__, __trunc__, and __float__ " @@ -23460,13 +23883,13 @@ msgid "" "bytes, int, and float correspondingly." msgstr "" -#: ../../../build/NEWS:15277 ../../../build/NEWS:18369 +#: ../../../build/NEWS:15500 ../../../build/NEWS:18592 msgid "" "`bpo-25630 `__: Fix a possible segfault " "during argument parsing in functions that accept filesystem paths." msgstr "" -#: ../../../build/NEWS:15280 ../../../build/NEWS:18372 +#: ../../../build/NEWS:15503 ../../../build/NEWS:18595 msgid "" "`bpo-23564 `__: Fixed a partially broken" " sanity check in the _posixsubprocess internals regarding how fds_to_pass " @@ -23474,27 +23897,27 @@ msgid "" "already avoided it." msgstr "" -#: ../../../build/NEWS:15284 ../../../build/NEWS:18376 +#: ../../../build/NEWS:15507 ../../../build/NEWS:18599 msgid "" "`bpo-25388 `__: Fixed tokenizer crash " "when processing undecodable source code with a null byte." msgstr "" -#: ../../../build/NEWS:15287 ../../../build/NEWS:18379 +#: ../../../build/NEWS:15510 ../../../build/NEWS:18602 msgid "" "`bpo-25462 `__: The hash of the key now " "is calculated only once in most operations in C implementation of " "OrderedDict." msgstr "" -#: ../../../build/NEWS:15290 ../../../build/NEWS:18382 +#: ../../../build/NEWS:15513 ../../../build/NEWS:18605 msgid "" "`bpo-22995 `__: Default implementation " "of __reduce__ and __reduce_ex__ now rejects builtin types with not defined " "__new__." msgstr "" -#: ../../../build/NEWS:15293 ../../../build/NEWS:18388 +#: ../../../build/NEWS:15516 ../../../build/NEWS:18611 msgid "" "`bpo-24802 `__: Avoid buffer overreads " "when int(), float(), compile(), exec() and eval() are passed bytes-like " @@ -23502,47 +23925,47 @@ msgid "" "the functions assumed they were." msgstr "" -#: ../../../build/NEWS:15298 ../../../build/NEWS:18385 +#: ../../../build/NEWS:15521 ../../../build/NEWS:18608 msgid "" "`bpo-25555 `__: Fix parser and AST: fill" " lineno and col_offset of \"arg\" node when compiling AST from Python " "objects." msgstr "" -#: ../../../build/NEWS:15301 ../../../build/NEWS:18393 +#: ../../../build/NEWS:15524 ../../../build/NEWS:18616 msgid "" "`bpo-24726 `__: Fixed a crash and " "leaking NULL in repr() of OrderedDict that was mutated by direct calls of " "dict methods." msgstr "" -#: ../../../build/NEWS:15304 ../../../build/NEWS:18396 +#: ../../../build/NEWS:15527 ../../../build/NEWS:18619 msgid "" "`bpo-25449 `__: Iterating OrderedDict " "with keys with unstable hash now raises KeyError in C implementations as " "well as in Python implementation." msgstr "" -#: ../../../build/NEWS:15307 ../../../build/NEWS:18399 +#: ../../../build/NEWS:15530 ../../../build/NEWS:18622 msgid "" "`bpo-25395 `__: Fixed crash when highly " "nested OrderedDict structures were garbage collected." msgstr "" -#: ../../../build/NEWS:15310 +#: ../../../build/NEWS:15533 msgid "" "`bpo-25401 `__: Optimize bytes.fromhex()" " and bytearray.fromhex(): they are now between 2x and 3.5x faster." msgstr "" -#: ../../../build/NEWS:15313 +#: ../../../build/NEWS:15536 msgid "" "`bpo-25399 `__: Optimize bytearray % " "args using the new private _PyBytesWriter API. Formatting is now between 2.5" " and 5 times faster." msgstr "" -#: ../../../build/NEWS:15316 ../../../build/NEWS:18402 +#: ../../../build/NEWS:15539 ../../../build/NEWS:18625 msgid "" "`bpo-25274 `__: sys.setrecursionlimit() " "now raises a RecursionError if the new recursion limit is too low depending " @@ -23551,40 +23974,40 @@ msgid "" "of the thread state is reset." msgstr "" -#: ../../../build/NEWS:15321 ../../../build/NEWS:18407 +#: ../../../build/NEWS:15544 ../../../build/NEWS:18630 msgid "" "`bpo-24402 `__: Fix input() to prompt to" " the redirected stdout when sys.stdout.fileno() fails." msgstr "" -#: ../../../build/NEWS:15324 +#: ../../../build/NEWS:15547 msgid "" "`bpo-25349 `__: Optimize bytes % args " "using the new private _PyBytesWriter API. Formatting is now up to 2 times " "faster." msgstr "" -#: ../../../build/NEWS:15327 ../../../build/NEWS:18410 +#: ../../../build/NEWS:15550 ../../../build/NEWS:18633 msgid "" "`bpo-24806 `__: Prevent builtin types " "that are not allowed to be subclassed from being subclassed through multiple" " inheritance." msgstr "" -#: ../../../build/NEWS:15330 +#: ../../../build/NEWS:15553 msgid "" "`bpo-25301 `__: The UTF-8 decoder is now" " up to 15 times as fast for error handlers: ``ignore``, ``replace`` and " "``surrogateescape``." msgstr "" -#: ../../../build/NEWS:15333 ../../../build/NEWS:18413 +#: ../../../build/NEWS:15556 ../../../build/NEWS:18636 msgid "" "`bpo-24848 `__: Fixed a number of bugs " "in UTF-7 decoding of misformed data." msgstr "" -#: ../../../build/NEWS:15335 +#: ../../../build/NEWS:15558 msgid "" "`bpo-25267 `__: The UTF-8 encoder is now" " up to 75 times as fast for error handlers: ``ignore``, ``replace``, " @@ -23592,20 +24015,20 @@ msgid "" "Storchaka." msgstr "" -#: ../../../build/NEWS:15339 ../../../build/NEWS:18415 +#: ../../../build/NEWS:15562 ../../../build/NEWS:18638 msgid "" "`bpo-25280 `__: Import trace messages " "emitted in verbose (-v) mode are no longer formatted twice." msgstr "" -#: ../../../build/NEWS:15342 +#: ../../../build/NEWS:15565 msgid "" "`bpo-25227 `__: Optimize ASCII and " "latin1 encoders with the ``surrogateescape`` error handler: the encoders are" " now up to 3 times as fast. Initial patch written by Serhiy Storchaka." msgstr "" -#: ../../../build/NEWS:15346 ../../../build/NEWS:18418 +#: ../../../build/NEWS:15569 ../../../build/NEWS:18641 msgid "" "`bpo-25003 `__: On Solaris 11.3 or " "newer, os.urandom() now uses the getrandom() function instead of the " @@ -23614,7 +24037,7 @@ msgid "" "entropy." msgstr "" -#: ../../../build/NEWS:15351 +#: ../../../build/NEWS:15574 msgid "" "`bpo-9232 `__: Modify Python's grammar to" " allow trailing commas in the argument list of a function declaration. For " @@ -23622,7 +24045,7 @@ msgid "" "Dickinson." msgstr "" -#: ../../../build/NEWS:15355 +#: ../../../build/NEWS:15578 msgid "" "`bpo-24965 `__: Implement :pep:`498` " "\"Literal String Interpolation\". This allows you to embed expressions " @@ -23630,31 +24053,31 @@ msgid "" "x=3, then f'value={x}' == 'value=3'. Patch by Eric V. Smith." msgstr "" -#: ../../../build/NEWS:15360 ../../../build/NEWS:17705 +#: ../../../build/NEWS:15583 ../../../build/NEWS:17928 msgid "" "`bpo-26478 `__: Fix semantic bugs when " "using binary operators with dictionary views and tuples." msgstr "" -#: ../../../build/NEWS:15363 ../../../build/NEWS:17708 +#: ../../../build/NEWS:15586 ../../../build/NEWS:17931 msgid "" "`bpo-26171 `__: Fix possible integer " "overflow and heap corruption in zipimporter.get_data()." msgstr "" -#: ../../../build/NEWS:15366 ../../../build/NEWS:17711 +#: ../../../build/NEWS:15589 ../../../build/NEWS:17934 msgid "" "`bpo-25660 `__: Fix TAB key behaviour in" " REPL with readline." msgstr "" -#: ../../../build/NEWS:15368 +#: ../../../build/NEWS:15591 msgid "" "`bpo-26288 `__: Optimize " "PyLong_AsDouble." msgstr "" -#: ../../../build/NEWS:15370 +#: ../../../build/NEWS:15593 msgid "" "`bpo-26289 `__: Optimize floor and " "modulo division for single-digit longs. Microbenchmarks show 2-2.5x " @@ -23662,39 +24085,39 @@ msgid "" " `bpo-26315 `__)" msgstr "" -#: ../../../build/NEWS:15374 ../../../build/NEWS:17713 +#: ../../../build/NEWS:15597 ../../../build/NEWS:17936 msgid "" "`bpo-25887 `__: Raise a RuntimeError " "when a coroutine object is awaited more than once." msgstr "" -#: ../../../build/NEWS:15380 ../../../build/NEWS:17787 +#: ../../../build/NEWS:15603 ../../../build/NEWS:18010 msgid "" "`bpo-27057 `__: Fix os.set_inheritable()" " on Android, ioctl() is blocked by SELinux and fails with EACCESS. The " "function now falls back to fcntl(). Patch written by Michał Bednarski." msgstr "" -#: ../../../build/NEWS:15384 ../../../build/NEWS:17791 +#: ../../../build/NEWS:15607 ../../../build/NEWS:18014 msgid "" "`bpo-27014 `__: Fix infinite recursion " "using typing.py. Thanks to Kalle Tuure!" msgstr "" -#: ../../../build/NEWS:15386 +#: ../../../build/NEWS:15609 msgid "" "`bpo-27031 `__: Removed dummy methods in" " Tkinter widget classes: tk_menuBar() and tk_bindForTraversal()." msgstr "" -#: ../../../build/NEWS:15389 ../../../build/NEWS:17793 +#: ../../../build/NEWS:15612 ../../../build/NEWS:18016 msgid "" "`bpo-14132 `__: Fix urllib.request " "redirect handling when the target only has a query string. Original fix by " "Ján Janech." msgstr "" -#: ../../../build/NEWS:15392 ../../../build/NEWS:17796 +#: ../../../build/NEWS:15615 ../../../build/NEWS:18019 msgid "" "`bpo-17214 `__: The \"urllib.request\" " "module now percent-encodes non-ASCII bytes found in redirect target URLs. " @@ -23703,109 +24126,109 @@ msgid "" " a UnicodeEncodeError is raised. Based on patch by Christian Heimes." msgstr "" -#: ../../../build/NEWS:15398 +#: ../../../build/NEWS:15621 msgid "" "`bpo-27033 `__: The default value of the" " decode_data parameter for smtpd.SMTPChannel and smtpd.SMTPServer " "constructors is changed to False." msgstr "" -#: ../../../build/NEWS:15401 +#: ../../../build/NEWS:15624 msgid "" "`bpo-27034 `__: Removed deprecated class" " asynchat.fifo." msgstr "" -#: ../../../build/NEWS:15403 +#: ../../../build/NEWS:15626 msgid "" "`bpo-26870 `__: Added " "readline.set_auto_history(), which can stop entries being automatically " "added to the history list. Based on patch by Tyler Crompton." msgstr "" -#: ../../../build/NEWS:15407 +#: ../../../build/NEWS:15630 msgid "" "`bpo-26039 `__: zipfile.ZipFile.open() " "can now be used to write data into a ZIP file, as well as for extracting " "data. Patch by Thomas Kluyver." msgstr "" -#: ../../../build/NEWS:15410 ../../../build/NEWS:17802 +#: ../../../build/NEWS:15633 ../../../build/NEWS:18025 msgid "" "`bpo-26892 `__: Honor debuglevel flag in" " urllib.request.HTTPHandler. Patch contributed by Chi Hsuan Yen." msgstr "" -#: ../../../build/NEWS:15413 ../../../build/NEWS:17805 +#: ../../../build/NEWS:15636 ../../../build/NEWS:18028 msgid "" "`bpo-22274 `__: In the subprocess " "module, allow stderr to be redirected to stdout even when stdout is not " "redirected. Patch by Akira Li." msgstr "" -#: ../../../build/NEWS:15416 ../../../build/NEWS:17808 +#: ../../../build/NEWS:15639 ../../../build/NEWS:18031 msgid "" "`bpo-26807 `__: mock_open 'files' no " "longer error on readline at end of file. Patch from Yolanda Robla." msgstr "" -#: ../../../build/NEWS:15419 ../../../build/NEWS:17811 +#: ../../../build/NEWS:15642 ../../../build/NEWS:18034 msgid "" "`bpo-25745 `__: Fixed leaking a userptr " "in curses panel destructor." msgstr "" -#: ../../../build/NEWS:15421 ../../../build/NEWS:17813 +#: ../../../build/NEWS:15644 ../../../build/NEWS:18036 msgid "" "`bpo-26977 `__: Removed unnecessary, and" " ignored, call to sum of squares helper in statistics.pvariance." msgstr "" -#: ../../../build/NEWS:15424 +#: ../../../build/NEWS:15647 msgid "" "`bpo-26002 `__: Use bisect in " "statistics.median instead of a linear search. Patch by Upendra Kuma." msgstr "" -#: ../../../build/NEWS:15427 +#: ../../../build/NEWS:15650 msgid "" "`bpo-25974 `__: Make use of new " "Decimal.as_integer_ratio() method in statistics module. Patch by Stefan " "Krah." msgstr "" -#: ../../../build/NEWS:15430 +#: ../../../build/NEWS:15653 msgid "" "`bpo-26996 `__: Add secrets module as " "described in :pep:`506`." msgstr "" -#: ../../../build/NEWS:15432 ../../../build/NEWS:17816 +#: ../../../build/NEWS:15655 ../../../build/NEWS:18039 msgid "" "`bpo-26881 `__: The modulefinder module " "now supports extended opcode arguments." msgstr "" -#: ../../../build/NEWS:15434 ../../../build/NEWS:17818 +#: ../../../build/NEWS:15657 ../../../build/NEWS:18041 msgid "" "`bpo-23815 `__: Fixed crashes related to" " directly created instances of types in _tkinter and curses.panel modules." msgstr "" -#: ../../../build/NEWS:15437 ../../../build/NEWS:17821 +#: ../../../build/NEWS:15660 ../../../build/NEWS:18044 msgid "" "`bpo-17765 `__: weakref.ref() no longer " "silently ignores keyword arguments. Patch by Georg Brandl." msgstr "" -#: ../../../build/NEWS:15440 ../../../build/NEWS:17824 +#: ../../../build/NEWS:15663 ../../../build/NEWS:18047 msgid "" "`bpo-26873 `__: xmlrpc now raises " "ResponseError on unsupported type tags instead of silently return incorrect " "result." msgstr "" -#: ../../../build/NEWS:15443 +#: ../../../build/NEWS:15666 msgid "" "`bpo-26915 `__: The __contains__ methods" " in the collections ABCs now check for identity before checking equality. " @@ -23813,13 +24236,13 @@ msgid "" "handling of NaNs, and makes it easier to reason about container invariants." msgstr "" -#: ../../../build/NEWS:15448 ../../../build/NEWS:17827 +#: ../../../build/NEWS:15671 ../../../build/NEWS:18050 msgid "" "`bpo-26711 `__: Fixed the comparison of " "plistlib.Data with other types." msgstr "" -#: ../../../build/NEWS:15450 ../../../build/NEWS:17829 +#: ../../../build/NEWS:15673 ../../../build/NEWS:18052 msgid "" "`bpo-24114 `__: Fix an uninitialized " "variable in `ctypes.util`. The bug only occurs on SunOS when the ctypes " @@ -23827,7 +24250,7 @@ msgid "" "Tested on SunOS by Kees Bos." msgstr "" -#: ../../../build/NEWS:15454 ../../../build/NEWS:17833 +#: ../../../build/NEWS:15677 ../../../build/NEWS:18056 msgid "" "`bpo-26864 `__: In urllib.request, " "change the proxy bypass host checking against no_proxy to be case-" @@ -23835,73 +24258,73 @@ msgid "" "bypassed hostname as a suffix. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:15459 +#: ../../../build/NEWS:15682 msgid "" "`bpo-24902 `__: Print server URL on " "http.server startup. Initial patch by Felix Kaiser." msgstr "" -#: ../../../build/NEWS:15462 +#: ../../../build/NEWS:15685 msgid "" "`bpo-25788 `__: fileinput.hook_encoded()" " now supports an \"errors\" argument for passing to open. Original patch by" " Joseph Hackman." msgstr "" -#: ../../../build/NEWS:15465 ../../../build/NEWS:17838 +#: ../../../build/NEWS:15688 ../../../build/NEWS:18061 msgid "" "`bpo-26634 `__: recursive_repr() now " "sets __qualname__ of wrapper. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:15468 ../../../build/NEWS:17841 +#: ../../../build/NEWS:15691 ../../../build/NEWS:18064 msgid "" "`bpo-26804 `__: urllib.request will " "prefer lower_case proxy environment variables over UPPER_CASE or Mixed_Case " "ones. Patch contributed by Hans-Peter Jansen." msgstr "" -#: ../../../build/NEWS:15472 ../../../build/NEWS:17845 +#: ../../../build/NEWS:15695 ../../../build/NEWS:18068 msgid "" "`bpo-26837 `__: assertSequenceEqual() " "now correctly outputs non-stringified differing items (like bytes in the -b " "mode). This affects assertListEqual() and assertTupleEqual()." msgstr "" -#: ../../../build/NEWS:15476 ../../../build/NEWS:17849 +#: ../../../build/NEWS:15699 ../../../build/NEWS:18072 msgid "" "`bpo-26041 `__: Remove \"will be removed" " in Python 3.7\" from deprecation messages of platform.dist() and " "platform.linux_distribution(). Patch by Kumaripaba Miyurusara Athukorala." msgstr "" -#: ../../../build/NEWS:15480 ../../../build/NEWS:17853 +#: ../../../build/NEWS:15703 ../../../build/NEWS:18076 msgid "" "`bpo-26822 `__: itemgetter, attrgetter " "and methodcaller objects no longer silently ignore keyword arguments." msgstr "" -#: ../../../build/NEWS:15483 ../../../build/NEWS:17856 +#: ../../../build/NEWS:15706 ../../../build/NEWS:18079 msgid "" "`bpo-26733 `__: Disassembling a class " "now disassembles class and static methods. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:15486 ../../../build/NEWS:17859 +#: ../../../build/NEWS:15709 ../../../build/NEWS:18082 msgid "" "`bpo-26801 `__: Fix error handling in " ":func:`shutil.get_terminal_size`, catch :exc:`AttributeError` instead of " ":exc:`NameError`. Patch written by Emanuel Barry." msgstr "" -#: ../../../build/NEWS:15490 ../../../build/NEWS:17863 +#: ../../../build/NEWS:15713 ../../../build/NEWS:18086 msgid "" "`bpo-24838 `__: tarfile's ustar and gnu " "formats now correctly calculate name and link field limits for multibyte " "character encodings like utf-8." msgstr "" -#: ../../../build/NEWS:15496 ../../../build/NEWS:17869 +#: ../../../build/NEWS:15719 ../../../build/NEWS:18092 msgid "" "`bpo-26657 `__: Fix directory traversal " "vulnerability with http.server on Windows. This fixes a regression that was" @@ -23909,89 +24332,89 @@ msgid "" "Hagemeister." msgstr "" -#: ../../../build/NEWS:15503 ../../../build/NEWS:17876 +#: ../../../build/NEWS:15726 ../../../build/NEWS:18099 msgid "" "`bpo-26717 `__: Stop encoding " "Latin-1-ized WSGI paths with UTF-8. Patch by Anthony Sottile." msgstr "" -#: ../../../build/NEWS:15506 +#: ../../../build/NEWS:15729 msgid "" "`bpo-26782 `__: Add STARTUPINFO to " "subprocess.__all__ on Windows." msgstr "" -#: ../../../build/NEWS:15508 +#: ../../../build/NEWS:15731 msgid "" "`bpo-26404 `__: Add context manager to " "socketserver. Patch by Aviv Palivoda." msgstr "" -#: ../../../build/NEWS:15510 ../../../build/NEWS:17879 +#: ../../../build/NEWS:15733 ../../../build/NEWS:18102 msgid "" "`bpo-26735 `__: Fix :func:`os.urandom` " "on Solaris 11.3 and newer when reading more than 1,024 bytes: call " "``getrandom()`` multiple times with a limit of 1024 bytes per call." msgstr "" -#: ../../../build/NEWS:15514 +#: ../../../build/NEWS:15737 msgid "" "`bpo-26585 `__: Eliminate " "http.server._quote_html() and use html.escape(quote=False). Patch by Xiang " "Zhang." msgstr "" -#: ../../../build/NEWS:15517 +#: ../../../build/NEWS:15740 msgid "" "`bpo-26685 `__: Raise OSError if closing" " a socket fails." msgstr "" -#: ../../../build/NEWS:15519 ../../../build/NEWS:17883 +#: ../../../build/NEWS:15742 ../../../build/NEWS:18106 msgid "" "`bpo-16329 `__: Add .webm to " "mimetypes.types_map. Patch by Giampaolo Rodola'." msgstr "" -#: ../../../build/NEWS:15521 ../../../build/NEWS:17885 +#: ../../../build/NEWS:15744 ../../../build/NEWS:18108 msgid "" "`bpo-13952 `__: Add .csv to " "mimetypes.types_map. Patch by Geoff Wilson." msgstr "" -#: ../../../build/NEWS:15523 +#: ../../../build/NEWS:15746 msgid "" "`bpo-26587 `__: the site module now " "allows .pth files to specify files to be added to sys.path (e.g. zip files)." msgstr "" -#: ../../../build/NEWS:15526 +#: ../../../build/NEWS:15749 msgid "" "`bpo-25609 `__: Introduce " "contextlib.AbstractContextManager and typing.ContextManager." msgstr "" -#: ../../../build/NEWS:15529 ../../../build/NEWS:17887 +#: ../../../build/NEWS:15752 ../../../build/NEWS:18110 msgid "" "`bpo-26709 `__: Fixed Y2038 problem in " "loading binary PLists." msgstr "" -#: ../../../build/NEWS:15531 ../../../build/NEWS:17889 +#: ../../../build/NEWS:15754 ../../../build/NEWS:18112 msgid "" "`bpo-23735 `__: Handle terminal resizing" " with Readline 6.3+ by installing our own SIGWINCH handler. Patch by Eric " "Price." msgstr "" -#: ../../../build/NEWS:15534 +#: ../../../build/NEWS:15757 msgid "" "`bpo-25951 `__: Change " "SSLSocket.sendall() to return None, as explicitly documented for plain " "socket objects. Patch by Aviv Palivoda." msgstr "" -#: ../../../build/NEWS:15537 ../../../build/NEWS:17892 +#: ../../../build/NEWS:15760 ../../../build/NEWS:18115 msgid "" "`bpo-26586 `__: In http.server, respond " "with \"413 Request header fields too large\" if there are too many header " @@ -23999,34 +24422,34 @@ msgid "" " exception. Patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:15541 +#: ../../../build/NEWS:15764 msgid "" "`bpo-26676 `__: Added missing " "XMLPullParser to ElementTree.__all__." msgstr "" -#: ../../../build/NEWS:15543 ../../../build/NEWS:17896 +#: ../../../build/NEWS:15766 ../../../build/NEWS:18119 msgid "" "`bpo-22854 `__: Change " "BufferedReader.writable() and BufferedWriter.readable() to always return " "False." msgstr "" -#: ../../../build/NEWS:15546 +#: ../../../build/NEWS:15769 msgid "" "`bpo-26492 `__: Exhausted iterator of " "array.array now conforms with the behavior of iterators of other mutable " "sequences: it lefts exhausted even if iterated array is extended." msgstr "" -#: ../../../build/NEWS:15550 +#: ../../../build/NEWS:15773 msgid "" "`bpo-26641 `__: doctest.DocFileTest and " "doctest.testfile() now support packages (module splitted into multiple " "directories) for the package parameter." msgstr "" -#: ../../../build/NEWS:15553 ../../../build/NEWS:17899 +#: ../../../build/NEWS:15776 ../../../build/NEWS:18122 msgid "" "`bpo-25195 `__: Fix a regression in " "mock.MagicMock. _Call is a subclass of tuple (changeset 3603bae63c13 only " @@ -24034,26 +24457,26 @@ msgid "" "Andrew Plummer." msgstr "" -#: ../../../build/NEWS:15557 ../../../build/NEWS:17903 +#: ../../../build/NEWS:15780 ../../../build/NEWS:18126 msgid "" "`bpo-26644 `__: Raise ValueError rather " "than SystemError when a negative length is passed to SSLSocket.recv() or " "read()." msgstr "" -#: ../../../build/NEWS:15560 ../../../build/NEWS:17906 +#: ../../../build/NEWS:15783 ../../../build/NEWS:18129 msgid "" "`bpo-23804 `__: Fix SSL recv(0) and " "read(0) methods to return zero bytes instead of up to 1024." msgstr "" -#: ../../../build/NEWS:15563 ../../../build/NEWS:17909 +#: ../../../build/NEWS:15786 ../../../build/NEWS:18132 msgid "" "`bpo-26616 `__: Fixed a bug in " "datetime.astimezone() method." msgstr "" -#: ../../../build/NEWS:15565 +#: ../../../build/NEWS:15788 msgid "" "`bpo-26637 `__: The :mod:`importlib` " "module now emits an :exc:`ImportError` rather than a :exc:`TypeError` if " @@ -24061,7 +24484,7 @@ msgid "" ":data:`sys.path` is already cleared (set to ``None``)." msgstr "" -#: ../../../build/NEWS:15570 +#: ../../../build/NEWS:15793 msgid "" "`bpo-21925 `__: " ":func:`warnings.formatwarning` now catches exceptions when calling " @@ -24070,7 +24493,7 @@ msgid "" "process." msgstr "" -#: ../../../build/NEWS:15575 +#: ../../../build/NEWS:15798 msgid "" "`bpo-23848 `__: On Windows, " "faulthandler.enable() now also installs an exception handler to dump the " @@ -24078,7 +24501,7 @@ msgid "" "signals (SIGSEGV, SIGFPE, SIGABRT)." msgstr "" -#: ../../../build/NEWS:15579 +#: ../../../build/NEWS:15802 msgid "" "`bpo-26530 `__: Add C functions " ":c:func:`_PyTraceMalloc_Track` and :c:func:`_PyTraceMalloc_Untrack` to track" @@ -24086,38 +24509,38 @@ msgid "" ":c:func:`_PyTraceMalloc_GetTraceback` to get the traceback of an object." msgstr "" -#: ../../../build/NEWS:15584 +#: ../../../build/NEWS:15807 msgid "" "`bpo-26588 `__: The _tracemalloc now " "supports tracing memory allocations of multiple address spaces (domains)." msgstr "" -#: ../../../build/NEWS:15587 ../../../build/NEWS:17915 +#: ../../../build/NEWS:15810 ../../../build/NEWS:18138 msgid "" "`bpo-24266 `__: Ctrl+C during Readline " "history search now cancels the search mode when compiled with Readline 7." msgstr "" -#: ../../../build/NEWS:15590 +#: ../../../build/NEWS:15813 msgid "" "`bpo-26590 `__: Implement a safe " "finalizer for the _socket.socket type. It now releases the GIL to close the " "socket." msgstr "" -#: ../../../build/NEWS:15593 +#: ../../../build/NEWS:15816 msgid "" "`bpo-18787 `__: spwd.getspnam() now " "raises a PermissionError if the user doesn't have privileges." msgstr "" -#: ../../../build/NEWS:15596 ../../../build/NEWS:17918 +#: ../../../build/NEWS:15819 ../../../build/NEWS:18141 msgid "" "`bpo-26560 `__: Avoid potential " "ValueError in BaseHandler.start_response. Initial patch by Peter Inglesby." msgstr "" -#: ../../../build/NEWS:15599 +#: ../../../build/NEWS:15822 msgid "" "`bpo-26567 `__: Add a new function " ":c:func:`PyErr_ResourceWarning` function to pass the destroyed object. Add a" @@ -24126,137 +24549,137 @@ msgid "" "source object was allocated." msgstr "" -#: ../../../build/NEWS:15607 ../../../build/NEWS:17924 +#: ../../../build/NEWS:15830 ../../../build/NEWS:18147 msgid "" "`bpo-26313 `__: ssl.py " "_load_windows_store_certs fails if windows cert store is empty. Patch by " "Baji." msgstr "" -#: ../../../build/NEWS:15613 ../../../build/NEWS:17930 +#: ../../../build/NEWS:15836 ../../../build/NEWS:18153 msgid "" "`bpo-26569 `__: Fix " ":func:`pyclbr.readmodule` and :func:`pyclbr.readmodule_ex` to support " "importing packages." msgstr "" -#: ../../../build/NEWS:15616 ../../../build/NEWS:17933 +#: ../../../build/NEWS:15839 ../../../build/NEWS:18156 msgid "" "`bpo-26499 `__: Account for remaining " "Content-Length in HTTPResponse.readline() and read1(). Based on patch by " "Silent Ghost. Also document that HTTPResponse now supports these methods." msgstr "" -#: ../../../build/NEWS:15620 ../../../build/NEWS:17937 +#: ../../../build/NEWS:15843 ../../../build/NEWS:18160 msgid "" "`bpo-25320 `__: Handle sockets in " "directories unittest discovery is scanning. Patch from Victor van den Elzen." msgstr "" -#: ../../../build/NEWS:15623 ../../../build/NEWS:17940 +#: ../../../build/NEWS:15846 ../../../build/NEWS:18163 msgid "" "`bpo-16181 `__: cookiejar.http2time() " "now returns None if year is higher than datetime.MAXYEAR." msgstr "" -#: ../../../build/NEWS:15626 ../../../build/NEWS:17943 +#: ../../../build/NEWS:15849 ../../../build/NEWS:18166 msgid "" "`bpo-26513 `__: Fixes platform module " "detection of Windows Server" msgstr "" -#: ../../../build/NEWS:15628 ../../../build/NEWS:17945 +#: ../../../build/NEWS:15851 ../../../build/NEWS:18168 msgid "" "`bpo-23718 `__: Fixed parsing time in " "week 0 before Jan 1. Original patch by Tamás Bence Gedai." msgstr "" -#: ../../../build/NEWS:15631 +#: ../../../build/NEWS:15854 msgid "" "`bpo-26323 `__: Add Mock.assert_called()" " and Mock.assert_called_once() methods to unittest.mock. Patch written by " "Amit Saha." msgstr "" -#: ../../../build/NEWS:15634 ../../../build/NEWS:17948 +#: ../../../build/NEWS:15857 ../../../build/NEWS:18171 msgid "" "`bpo-20589 `__: Invoking Path.owner() " "and Path.group() on Windows now raise NotImplementedError instead of " "ImportError." msgstr "" -#: ../../../build/NEWS:15637 ../../../build/NEWS:17951 +#: ../../../build/NEWS:15860 ../../../build/NEWS:18174 msgid "" "`bpo-26177 `__: Fixed the keys() method " "for Canvas and Scrollbar widgets." msgstr "" -#: ../../../build/NEWS:15639 +#: ../../../build/NEWS:15862 msgid "" "`bpo-15068 `__: Got rid of excessive " "buffering in fileinput. The bufsize parameter is now deprecated and ignored." msgstr "" -#: ../../../build/NEWS:15642 +#: ../../../build/NEWS:15865 msgid "" "`bpo-19475 `__: Added an optional " "argument timespec to the datetime isoformat() method to choose the precision" " of the time component." msgstr "" -#: ../../../build/NEWS:15645 ../../../build/NEWS:17956 +#: ../../../build/NEWS:15868 ../../../build/NEWS:18179 msgid "" "`bpo-2202 `__: Fix UnboundLocalError in " "AbstractDigestAuthHandler.get_algorithm_impls. Initial patch by Mathieu " "Dupuy." msgstr "" -#: ../../../build/NEWS:15649 +#: ../../../build/NEWS:15872 msgid "" "`bpo-26167 `__: Minimized overhead in " "copy.copy() and copy.deepcopy(). Optimized copying and deepcopying " "bytearrays, NotImplemented, slices, short lists, tuples, dicts, sets." msgstr "" -#: ../../../build/NEWS:15653 ../../../build/NEWS:17960 +#: ../../../build/NEWS:15876 ../../../build/NEWS:18183 msgid "" "`bpo-25718 `__: Fixed pickling and " "copying the accumulate() iterator with total is None." msgstr "" -#: ../../../build/NEWS:15656 ../../../build/NEWS:17963 +#: ../../../build/NEWS:15879 ../../../build/NEWS:18186 msgid "" "`bpo-26475 `__: Fixed debugging output " "for regular expressions with the (?x) flag." msgstr "" -#: ../../../build/NEWS:15659 +#: ../../../build/NEWS:15882 msgid "" "`bpo-26482 `__: Allowed pickling " "recursive dequeues." msgstr "" -#: ../../../build/NEWS:15661 +#: ../../../build/NEWS:15884 msgid "" "`bpo-26335 `__: Make mmap.write() return" " the number of bytes written like other write methods. Patch by Jakub " "Stasiak." msgstr "" -#: ../../../build/NEWS:15664 ../../../build/NEWS:17966 +#: ../../../build/NEWS:15887 ../../../build/NEWS:18189 msgid "" "`bpo-26457 `__: Fixed the subnets() " "methods in IP network classes for the case when resulting prefix length is " "equal to maximal prefix length. Based on patch by Xiang Zhang." msgstr "" -#: ../../../build/NEWS:15668 ../../../build/NEWS:17970 +#: ../../../build/NEWS:15891 ../../../build/NEWS:18193 msgid "" "`bpo-26385 `__: Remove the file if the " "internal open() call in NamedTemporaryFile() fails. Patch by Silent Ghost." msgstr "" -#: ../../../build/NEWS:15671 ../../../build/NEWS:17973 +#: ../../../build/NEWS:15894 ../../../build/NEWS:18196 msgid "" "`bpo-26402 `__: Fix XML-RPC client to " "retry when the server shuts down a persistent connection. This was a " @@ -24264,33 +24687,33 @@ msgid "" "3.5.0a4." msgstr "" -#: ../../../build/NEWS:15675 ../../../build/NEWS:17977 +#: ../../../build/NEWS:15898 ../../../build/NEWS:18200 msgid "" "`bpo-25913 `__: Leading ``<~`` is " "optional now in base64.a85decode() with adobe=True. Patch by Swati Jaiswal." msgstr "" -#: ../../../build/NEWS:15678 ../../../build/NEWS:17980 +#: ../../../build/NEWS:15901 ../../../build/NEWS:18203 msgid "" "`bpo-26186 `__: Remove an invalid type " "check in importlib.util.LazyLoader." msgstr "" -#: ../../../build/NEWS:15680 +#: ../../../build/NEWS:15903 msgid "" "`bpo-26367 `__: importlib.__import__() " "raises ImportError like builtins.__import__() when ``level`` is specified " "but without an accompanying package specified." msgstr "" -#: ../../../build/NEWS:15684 ../../../build/NEWS:17986 +#: ../../../build/NEWS:15907 ../../../build/NEWS:18209 msgid "" "`bpo-26309 `__: In the \"socketserver\" " "module, shut down the request (closing the connected socket) when " "verify_request() returns false. Patch by Aviv Palivoda." msgstr "" -#: ../../../build/NEWS:15688 +#: ../../../build/NEWS:15911 msgid "" "`bpo-23430 `__: Change the socketserver " "module to only catch exceptions raised from a request handler that are " @@ -24299,77 +24722,77 @@ msgid "" "to stop a single-threaded server." msgstr "" -#: ../../../build/NEWS:15697 ../../../build/NEWS:17993 +#: ../../../build/NEWS:15920 ../../../build/NEWS:18216 msgid "" "`bpo-25939 `__: On Windows open the cert" " store readonly in ssl.enum_certificates." msgstr "" -#: ../../../build/NEWS:15703 ../../../build/NEWS:17999 +#: ../../../build/NEWS:15926 ../../../build/NEWS:18222 msgid "" "`bpo-25995 `__: os.walk() no longer uses" " FDs proportional to the tree depth." msgstr "" -#: ../../../build/NEWS:15705 +#: ../../../build/NEWS:15928 msgid "" "`bpo-25994 `__: Added the close() method" " and the support of the context manager protocol for the os.scandir() " "iterator." msgstr "" -#: ../../../build/NEWS:15708 +#: ../../../build/NEWS:15931 msgid "" "`bpo-23992 `__: multiprocessing: make " "MapResult not fail-fast upon exception." msgstr "" -#: ../../../build/NEWS:15710 +#: ../../../build/NEWS:15933 msgid "" "`bpo-26243 `__: Support keyword " "arguments to zlib.compress(). Patch by Aviv Palivoda." msgstr "" -#: ../../../build/NEWS:15713 ../../../build/NEWS:18001 +#: ../../../build/NEWS:15936 ../../../build/NEWS:18224 msgid "" "`bpo-26117 `__: The os.scandir() " "iterator now closes file descriptor not only when the iteration is finished," " but when it was failed with error." msgstr "" -#: ../../../build/NEWS:15716 +#: ../../../build/NEWS:15939 msgid "" "`bpo-25949 `__: __dict__ for an " "OrderedDict instance is now created only when needed." msgstr "" -#: ../../../build/NEWS:15719 ../../../build/NEWS:18004 +#: ../../../build/NEWS:15942 ../../../build/NEWS:18227 msgid "" "`bpo-25911 `__: Restored support of " "bytes paths in os.walk() on Windows." msgstr "" -#: ../../../build/NEWS:15721 ../../../build/NEWS:18006 +#: ../../../build/NEWS:15944 ../../../build/NEWS:18229 msgid "" "`bpo-26045 `__: Add UTF-8 suggestion to " "error message when posting a non-Latin-1 string with http.client." msgstr "" -#: ../../../build/NEWS:15724 +#: ../../../build/NEWS:15947 msgid "" "`bpo-26039 `__: Added " "zipfile.ZipInfo.from_file() and zipinfo.ZipInfo.is_dir(). Patch by Thomas " "Kluyver." msgstr "" -#: ../../../build/NEWS:15727 ../../../build/NEWS:18009 +#: ../../../build/NEWS:15950 ../../../build/NEWS:18232 msgid "" "`bpo-12923 `__: Reset FancyURLopener's " "redirect counter even if there is an exception. Based on patches by Brian " "Brazil and Daniel Rocco." msgstr "" -#: ../../../build/NEWS:15730 ../../../build/NEWS:18012 +#: ../../../build/NEWS:15953 ../../../build/NEWS:18235 msgid "" "`bpo-25945 `__: Fixed a crash when " "unpickle the functools.partial object with wrong state. Fixed a leak in " @@ -24377,25 +24800,25 @@ msgid "" "of functools.partial have now always types tuple and dict correspondingly." msgstr "" -#: ../../../build/NEWS:15735 ../../../build/NEWS:18017 +#: ../../../build/NEWS:15958 ../../../build/NEWS:18240 msgid "" "`bpo-26202 `__: copy.deepcopy() now " "correctly copies range() objects with non-atomic attributes." msgstr "" -#: ../../../build/NEWS:15738 ../../../build/NEWS:18020 +#: ../../../build/NEWS:15961 ../../../build/NEWS:18243 msgid "" "`bpo-23076 `__: Path.glob() now raises a" " ValueError if it's called with an invalid pattern. Patch by Thomas Nyberg." msgstr "" -#: ../../../build/NEWS:15741 ../../../build/NEWS:18023 +#: ../../../build/NEWS:15964 ../../../build/NEWS:18246 msgid "" "`bpo-19883 `__: Fixed possible integer " "overflows in zipimport." msgstr "" -#: ../../../build/NEWS:15743 ../../../build/NEWS:18025 +#: ../../../build/NEWS:15966 ../../../build/NEWS:18248 msgid "" "`bpo-26227 `__: On Windows, " "getnameinfo(), gethostbyaddr() and gethostbyname_ex() functions of the " @@ -24403,203 +24826,203 @@ msgid "" "UTF-8." msgstr "" -#: ../../../build/NEWS:15747 +#: ../../../build/NEWS:15970 msgid "" "`bpo-26099 `__: The site module now " "writes an error into stderr if sitecustomize module can be imported but " "executing the module raise an ImportError. Same change for usercustomize." msgstr "" -#: ../../../build/NEWS:15751 ../../../build/NEWS:18029 +#: ../../../build/NEWS:15974 ../../../build/NEWS:18252 msgid "" "`bpo-26147 `__: xmlrpc now works with " "strings not encodable with used non-UTF-8 encoding." msgstr "" -#: ../../../build/NEWS:15754 ../../../build/NEWS:18032 +#: ../../../build/NEWS:15977 ../../../build/NEWS:18255 msgid "" "`bpo-25935 `__: Garbage collector now " "breaks reference loops with OrderedDict." msgstr "" -#: ../../../build/NEWS:15756 ../../../build/NEWS:18034 +#: ../../../build/NEWS:15979 ../../../build/NEWS:18257 msgid "" "`bpo-16620 `__: Fixed AttributeError in " "msilib.Directory.glob()." msgstr "" -#: ../../../build/NEWS:15758 ../../../build/NEWS:18036 +#: ../../../build/NEWS:15981 ../../../build/NEWS:18259 msgid "" "`bpo-26013 `__: Added compatibility with" " broken protocol 2 pickles created in old Python 3 versions (3.4.3 and " "lower)." msgstr "" -#: ../../../build/NEWS:15761 +#: ../../../build/NEWS:15984 msgid "" "`bpo-26129 `__: Deprecated accepting " "non-integers in grp.getgrgid()." msgstr "" -#: ../../../build/NEWS:15763 ../../../build/NEWS:18039 +#: ../../../build/NEWS:15986 ../../../build/NEWS:18262 msgid "" "`bpo-25850 `__: Use cross-compilation by" " default for 64-bit Windows." msgstr "" -#: ../../../build/NEWS:15765 +#: ../../../build/NEWS:15988 msgid "" "`bpo-25822 `__: Add docstrings to the " "fields of urllib.parse results. Patch contributed by Swati Jaiswal." msgstr "" -#: ../../../build/NEWS:15768 +#: ../../../build/NEWS:15991 msgid "" "`bpo-22642 `__: Convert trace module " "option parsing mechanism to argparse. Patch contributed by SilentGhost." msgstr "" -#: ../../../build/NEWS:15771 ../../../build/NEWS:18043 +#: ../../../build/NEWS:15994 ../../../build/NEWS:18266 msgid "" "`bpo-24705 `__: Fix " "sysconfig._parse_makefile not expanding ${} vars appearing before $() vars." msgstr "" -#: ../../../build/NEWS:15774 +#: ../../../build/NEWS:15997 msgid "" "`bpo-26069 `__: Remove the deprecated " "apis in the trace module." msgstr "" -#: ../../../build/NEWS:15776 ../../../build/NEWS:18046 +#: ../../../build/NEWS:15999 ../../../build/NEWS:18269 msgid "" "`bpo-22138 `__: Fix mock.patch behavior " "when patching descriptors. Restore original values after patching. Patch " "contributed by Sean McCully." msgstr "" -#: ../../../build/NEWS:15779 ../../../build/NEWS:18049 +#: ../../../build/NEWS:16002 ../../../build/NEWS:18272 msgid "" "`bpo-25672 `__: In the ssl module, " "enable the SSL_MODE_RELEASE_BUFFERS mode option if it is safe to do so." msgstr "" -#: ../../../build/NEWS:15782 ../../../build/NEWS:18052 +#: ../../../build/NEWS:16005 ../../../build/NEWS:18275 msgid "" "`bpo-26012 `__: Don't traverse into " "symlinks for ``**`` pattern in pathlib.Path.[r]glob()." msgstr "" -#: ../../../build/NEWS:15785 ../../../build/NEWS:18055 +#: ../../../build/NEWS:16008 ../../../build/NEWS:18278 msgid "" "`bpo-24120 `__: Ignore PermissionError " "when traversing a tree with pathlib.Path.[r]glob(). Patch by Ulrich Petri." msgstr "" -#: ../../../build/NEWS:15788 +#: ../../../build/NEWS:16011 msgid "" "`bpo-21815 `__: Accept ] characters in " "the data portion of imap responses, in order to handle the flags with square" " brackets accepted and produced by servers such as gmail." msgstr "" -#: ../../../build/NEWS:15792 ../../../build/NEWS:18058 +#: ../../../build/NEWS:16015 ../../../build/NEWS:18281 msgid "" "`bpo-25447 `__: fileinput now uses " "sys.stdin as-is if it does not have a buffer attribute (restores backward " "compatibility)." msgstr "" -#: ../../../build/NEWS:15795 +#: ../../../build/NEWS:16018 msgid "" "`bpo-25971 `__: Optimized creating " "Fractions from floats by 2 times and from Decimals by 3 times." msgstr "" -#: ../../../build/NEWS:15798 +#: ../../../build/NEWS:16021 msgid "" "`bpo-25802 `__: Document as deprecated " "the remaining implementations of importlib.abc.Loader.load_module()." msgstr "" -#: ../../../build/NEWS:15801 +#: ../../../build/NEWS:16024 msgid "" "`bpo-25928 `__: Add " "Decimal.as_integer_ratio()." msgstr "" -#: ../../../build/NEWS:15803 ../../../build/NEWS:18061 +#: ../../../build/NEWS:16026 ../../../build/NEWS:18284 msgid "" "`bpo-25447 `__: Copying the lru_cache() " "wrapper object now always works, independently from the type of the wrapped " "object (by returning the original object unchanged)." msgstr "" -#: ../../../build/NEWS:15807 +#: ../../../build/NEWS:16030 msgid "" "`bpo-25768 `__: Have the functions in " "compileall return booleans instead of ints and add proper documentation and " "tests for the return values." msgstr "" -#: ../../../build/NEWS:15810 ../../../build/NEWS:18065 +#: ../../../build/NEWS:16033 ../../../build/NEWS:18288 msgid "" "`bpo-24103 `__: Fixed possible use after" " free in ElementTree.XMLPullParser." msgstr "" -#: ../../../build/NEWS:15812 ../../../build/NEWS:18067 +#: ../../../build/NEWS:16035 ../../../build/NEWS:18290 msgid "" "`bpo-25860 `__: os.fwalk() no longer " "skips remaining directories when error occurs. Original patch by Samson Lee." msgstr "" -#: ../../../build/NEWS:15815 ../../../build/NEWS:18070 +#: ../../../build/NEWS:16038 ../../../build/NEWS:18293 msgid "" "`bpo-25914 `__: Fixed and simplified " "OrderedDict.__sizeof__." msgstr "" -#: ../../../build/NEWS:15817 +#: ../../../build/NEWS:16040 msgid "" "`bpo-25869 `__: Optimized deepcopying " "ElementTree; it is now 20 times faster." msgstr "" -#: ../../../build/NEWS:15819 +#: ../../../build/NEWS:16042 msgid "" "`bpo-25873 `__: Optimized iterating " "ElementTree. Iterating elements Element.iter() is now 40% faster, iterating" " text Element.itertext() is now up to 2.5 times faster." msgstr "" -#: ../../../build/NEWS:15823 ../../../build/NEWS:18072 +#: ../../../build/NEWS:16046 ../../../build/NEWS:18295 msgid "" "`bpo-25902 `__: Fixed various refcount " "issues in ElementTree iteration." msgstr "" -#: ../../../build/NEWS:15825 +#: ../../../build/NEWS:16048 msgid "" "`bpo-22227 `__: The TarFile iterator is " "reimplemented using generator. This implementation is simpler that using " "class." msgstr "" -#: ../../../build/NEWS:15828 +#: ../../../build/NEWS:16051 msgid "" "`bpo-25638 `__: Optimized " "ElementTree.iterparse(); it is now 2x faster. Optimized ElementTree parsing;" " it is now 10% faster." msgstr "" -#: ../../../build/NEWS:15831 +#: ../../../build/NEWS:16054 msgid "" "`bpo-25761 `__: Improved detecting " "errors in broken pickle data." msgstr "" -#: ../../../build/NEWS:15833 ../../../build/NEWS:18074 +#: ../../../build/NEWS:16056 ../../../build/NEWS:18297 msgid "" "`bpo-25717 `__: Restore the previous " "behaviour of tolerating most fstat() errors when opening files. This was a " @@ -24607,7 +25030,7 @@ msgid "" "special cases." msgstr "" -#: ../../../build/NEWS:15837 ../../../build/NEWS:18078 +#: ../../../build/NEWS:16060 ../../../build/NEWS:18301 msgid "" "`bpo-24903 `__: Fix regression in number" " of arguments compileall accepts when '-d' is specified. The check on the " @@ -24615,27 +25038,27 @@ msgid "" " anyway." msgstr "" -#: ../../../build/NEWS:15841 ../../../build/NEWS:18082 +#: ../../../build/NEWS:16064 ../../../build/NEWS:18305 msgid "" "`bpo-25764 `__: In the subprocess " "module, preserve any exception caused by fork() failure when preexec_fn is " "used." msgstr "" -#: ../../../build/NEWS:15844 +#: ../../../build/NEWS:16067 msgid "" "`bpo-25771 `__: Tweak the exception " "message for importlib.util.resolve_name() when 'package' isn't specified but" " necessary." msgstr "" -#: ../../../build/NEWS:15847 ../../../build/NEWS:18085 +#: ../../../build/NEWS:16070 ../../../build/NEWS:18308 msgid "" "`bpo-6478 `__: _strptime's regexp cache " "now is reset after changing timezone with time.tzset()." msgstr "" -#: ../../../build/NEWS:15850 ../../../build/NEWS:18088 +#: ../../../build/NEWS:16073 ../../../build/NEWS:18311 msgid "" "`bpo-14285 `__: When executing a package" " with the \"python -m package\" option, and package initialization fails, a " @@ -24644,7 +25067,7 @@ msgid "" "ImportError." msgstr "" -#: ../../../build/NEWS:15855 ../../../build/NEWS:18093 +#: ../../../build/NEWS:16078 ../../../build/NEWS:18316 msgid "" "`bpo-19771 `__: Also in runpy and the " "\"-m\" option, omit the irrelevant message \". . . is a package and cannot " @@ -24652,70 +25075,70 @@ msgid "" "due to a bad ``*.pyc`` file)." msgstr "" -#: ../../../build/NEWS:15859 ../../../build/NEWS:18097 +#: ../../../build/NEWS:16082 ../../../build/NEWS:18320 msgid "" "`bpo-25177 `__: Fixed problem with the " "mean of very small and very large numbers. As a side effect, statistics.mean" " and statistics.variance should be significantly faster." msgstr "" -#: ../../../build/NEWS:15863 ../../../build/NEWS:18101 +#: ../../../build/NEWS:16086 ../../../build/NEWS:18324 msgid "" "`bpo-25718 `__: Fixed copying object " "with state with boolean value is false." msgstr "" -#: ../../../build/NEWS:15865 ../../../build/NEWS:18103 +#: ../../../build/NEWS:16088 ../../../build/NEWS:18326 msgid "" "`bpo-10131 `__: Fixed deep copying of " "minidom documents. Based on patch by Marian Ganisin." msgstr "" -#: ../../../build/NEWS:15868 +#: ../../../build/NEWS:16091 msgid "" "`bpo-7990 `__: dir() on " "ElementTree.Element now lists properties: \"tag\", \"text\", \"tail\" and " "\"attrib\". Original patch by Santoso Wijaya." msgstr "" -#: ../../../build/NEWS:15871 ../../../build/NEWS:18106 +#: ../../../build/NEWS:16094 ../../../build/NEWS:18329 msgid "" "`bpo-25725 `__: Fixed a reference leak " "in pickle.loads() when unpickling invalid data including tuple instructions." msgstr "" -#: ../../../build/NEWS:15874 ../../../build/NEWS:18109 +#: ../../../build/NEWS:16097 ../../../build/NEWS:18332 msgid "" "`bpo-25663 `__: In the Readline " "completer, avoid listing duplicate global names, and search the global " "namespace before searching builtins." msgstr "" -#: ../../../build/NEWS:15877 ../../../build/NEWS:18112 +#: ../../../build/NEWS:16100 ../../../build/NEWS:18335 msgid "" "`bpo-25688 `__: Fixed file leak in " "ElementTree.iterparse() raising an error." msgstr "" -#: ../../../build/NEWS:15879 ../../../build/NEWS:18114 +#: ../../../build/NEWS:16102 ../../../build/NEWS:18337 msgid "" "`bpo-23914 `__: Fixed SystemError raised" " by unpickler on broken pickle data." msgstr "" -#: ../../../build/NEWS:15881 ../../../build/NEWS:18116 +#: ../../../build/NEWS:16104 ../../../build/NEWS:18339 msgid "" "`bpo-25691 `__: Fixed crash on deleting " "ElementTree.Element attributes." msgstr "" -#: ../../../build/NEWS:15883 ../../../build/NEWS:18118 +#: ../../../build/NEWS:16106 ../../../build/NEWS:18341 msgid "" "`bpo-25624 `__: ZipFile now always " "writes a ZIP_STORED header for directory entries. Patch by Dingyuan Wang." msgstr "" -#: ../../../build/NEWS:15886 ../../../build/NEWS:18437 +#: ../../../build/NEWS:16109 ../../../build/NEWS:18660 msgid "" "`bpo-25626 `__: Change three zlib " "functions to accept sizes that fit in Py_ssize_t, but internally cap those " @@ -24725,20 +25148,20 @@ msgid "" "bufsize parameter, and the zlib.Decompress.flush() length parameter." msgstr "" -#: ../../../build/NEWS:15893 ../../../build/NEWS:18444 +#: ../../../build/NEWS:16116 ../../../build/NEWS:18667 msgid "" "`bpo-25583 `__: Avoid incorrect errors " "raised by os.makedirs(exist_ok=True) when the OS gives priority to errors " "such as EACCES over EEXIST." msgstr "" -#: ../../../build/NEWS:15896 ../../../build/NEWS:18447 +#: ../../../build/NEWS:16119 ../../../build/NEWS:18670 msgid "" "`bpo-25593 `__: Change semantics of " "EventLoop.stop() in asyncio." msgstr "" -#: ../../../build/NEWS:15898 ../../../build/NEWS:18449 +#: ../../../build/NEWS:16121 ../../../build/NEWS:18672 msgid "" "`bpo-6973 `__: When we know a " "subprocess.Popen process has died, do not allow the send_signal(), " @@ -24746,7 +25169,7 @@ msgid "" "signal a different process." msgstr "" -#: ../../../build/NEWS:15902 +#: ../../../build/NEWS:16125 msgid "" "`bpo-23883 `__: Added missing APIs to " "__all__ to match the documented APIs for the following modules: calendar, " @@ -24755,7 +25178,7 @@ msgid "" "Kołodziej, Mauro S. M. Rodrigues and Joel Taddei." msgstr "" -#: ../../../build/NEWS:15908 +#: ../../../build/NEWS:16131 msgid "" "`bpo-25590 `__: In the Readline " "completer, only call getattr() once per attribute. Also complete names of " @@ -24763,121 +25186,121 @@ msgid "" "yet created on an instance." msgstr "" -#: ../../../build/NEWS:15912 ../../../build/NEWS:18456 +#: ../../../build/NEWS:16135 ../../../build/NEWS:18679 msgid "" "`bpo-25498 `__: Fix a crash when " "garbage-collecting ctypes objects created by wrapping a memoryview. This " "was a regression made in 3.5a1. Based on patch by Eryksun." msgstr "" -#: ../../../build/NEWS:15916 ../../../build/NEWS:18460 +#: ../../../build/NEWS:16139 ../../../build/NEWS:18683 msgid "" "`bpo-25584 `__: Added \"escape\" to the " "__all__ list in the glob module." msgstr "" -#: ../../../build/NEWS:15918 ../../../build/NEWS:18462 +#: ../../../build/NEWS:16141 ../../../build/NEWS:18685 msgid "" "`bpo-25584 `__: Fixed recursive glob() " "with patterns starting with ``**``." msgstr "" -#: ../../../build/NEWS:15920 ../../../build/NEWS:18464 +#: ../../../build/NEWS:16143 ../../../build/NEWS:18687 msgid "" "`bpo-25446 `__: Fix regression in " "smtplib's AUTH LOGIN support." msgstr "" -#: ../../../build/NEWS:15922 ../../../build/NEWS:18466 +#: ../../../build/NEWS:16145 ../../../build/NEWS:18689 msgid "" "`bpo-18010 `__: Fix the pydoc web " "server's module search function to handle exceptions from importing " "packages." msgstr "" -#: ../../../build/NEWS:15925 ../../../build/NEWS:18469 +#: ../../../build/NEWS:16148 ../../../build/NEWS:18692 msgid "" "`bpo-25554 `__: Got rid of circular " "references in regular expression parsing." msgstr "" -#: ../../../build/NEWS:15927 +#: ../../../build/NEWS:16150 msgid "" "`bpo-18973 `__: Command-line interface " "of the calendar module now uses argparse instead of optparse." msgstr "" -#: ../../../build/NEWS:15930 ../../../build/NEWS:18471 +#: ../../../build/NEWS:16153 ../../../build/NEWS:18694 msgid "" "`bpo-25510 `__: " "fileinput.FileInput.readline() now returns b'' instead of '' at the end if " "the FileInput was opened with binary mode. Patch by Ryosuke Ito." msgstr "" -#: ../../../build/NEWS:15934 ../../../build/NEWS:18475 +#: ../../../build/NEWS:16157 ../../../build/NEWS:18698 msgid "" "`bpo-25503 `__: Fixed inspect.getdoc() " "for inherited docstrings of properties. Original patch by John Mark " "Vandenberg." msgstr "" -#: ../../../build/NEWS:15937 ../../../build/NEWS:18478 +#: ../../../build/NEWS:16160 ../../../build/NEWS:18701 msgid "" "`bpo-25515 `__: Always use os.urandom as" " a source of randomness in uuid.uuid4." msgstr "" -#: ../../../build/NEWS:15939 ../../../build/NEWS:18480 +#: ../../../build/NEWS:16162 ../../../build/NEWS:18703 msgid "" "`bpo-21827 `__: Fixed textwrap.dedent() " "for the case when largest common whitespace is a substring of smallest " "leading whitespace. Based on patch by Robert Li." msgstr "" -#: ../../../build/NEWS:15943 ../../../build/NEWS:18484 +#: ../../../build/NEWS:16166 ../../../build/NEWS:18707 msgid "" "`bpo-25447 `__: The lru_cache() wrapper " "objects now can be copied and pickled (by returning the original object " "unchanged)." msgstr "" -#: ../../../build/NEWS:15946 ../../../build/NEWS:18487 +#: ../../../build/NEWS:16169 ../../../build/NEWS:18710 msgid "" "`bpo-25390 `__: typing: Don't crash on " "Union[str, Pattern]." msgstr "" -#: ../../../build/NEWS:15948 ../../../build/NEWS:18489 +#: ../../../build/NEWS:16171 ../../../build/NEWS:18712 msgid "" "`bpo-25441 `__: asyncio: Raise error " "from drain() when socket is closed." msgstr "" -#: ../../../build/NEWS:15950 ../../../build/NEWS:18491 +#: ../../../build/NEWS:16173 ../../../build/NEWS:18714 msgid "" "`bpo-25410 `__: Cleaned up and fixed " "minor bugs in C implementation of OrderedDict." msgstr "" -#: ../../../build/NEWS:15953 ../../../build/NEWS:18494 +#: ../../../build/NEWS:16176 ../../../build/NEWS:18717 msgid "" "`bpo-25411 `__: Improved Unicode support" " in SMTPHandler through better use of the email package. Thanks to user " "simon04 for the patch." msgstr "" -#: ../../../build/NEWS:15956 +#: ../../../build/NEWS:16179 msgid "" "Move the imp module from a PendingDeprecationWarning to DeprecationWarning." msgstr "" -#: ../../../build/NEWS:15959 ../../../build/NEWS:18497 +#: ../../../build/NEWS:16182 ../../../build/NEWS:18720 msgid "" "`bpo-25407 `__: Remove mentions of the " "formatter module being removed in Python 3.6." msgstr "" -#: ../../../build/NEWS:15962 ../../../build/NEWS:18500 +#: ../../../build/NEWS:16185 ../../../build/NEWS:18723 msgid "" "`bpo-25406 `__: Fixed a bug in C " "implementation of OrderedDict.move_to_end() that caused segmentation fault " @@ -24885,59 +25308,59 @@ msgid "" "dict." msgstr "" -#: ../../../build/NEWS:15966 +#: ../../../build/NEWS:16189 msgid "" "`bpo-25382 `__: pickletools.dis() now " "outputs implicit memo index for the MEMOIZE opcode." msgstr "" -#: ../../../build/NEWS:15969 +#: ../../../build/NEWS:16192 msgid "" "`bpo-25357 `__: Add an optional newline " "parameter to binascii.b2a_base64(). base64.b64encode() uses it to avoid a " "memory copy." msgstr "" -#: ../../../build/NEWS:15972 +#: ../../../build/NEWS:16195 msgid "" "`bpo-24164 `__: Objects that need " "calling ``__new__`` with keyword arguments, can now be pickled using pickle " "protocols older than protocol version 4." msgstr "" -#: ../../../build/NEWS:15975 ../../../build/NEWS:18504 +#: ../../../build/NEWS:16198 ../../../build/NEWS:18727 msgid "" "`bpo-25364 `__: zipfile now works in " "threads disabled builds." msgstr "" -#: ../../../build/NEWS:15977 ../../../build/NEWS:18506 +#: ../../../build/NEWS:16200 ../../../build/NEWS:18729 msgid "" "`bpo-25328 `__: smtpd's SMTPChannel now " "correctly raises a ValueError if both decode_data and enable_SMTPUTF8 are " "set to true." msgstr "" -#: ../../../build/NEWS:15980 +#: ../../../build/NEWS:16203 msgid "" "`bpo-16099 `__: RobotFileParser now " "supports Crawl-delay and Request-rate extensions. Patch by Nikolay " "Bogoychev." msgstr "" -#: ../../../build/NEWS:15983 ../../../build/NEWS:18509 +#: ../../../build/NEWS:16206 ../../../build/NEWS:18732 msgid "" "`bpo-25316 `__: distutils raises OSError" " instead of DistutilsPlatformError when MSVC is not installed." msgstr "" -#: ../../../build/NEWS:15986 ../../../build/NEWS:18512 +#: ../../../build/NEWS:16209 ../../../build/NEWS:18735 msgid "" "`bpo-25380 `__: Fixed protocol for the " "STACK_GLOBAL opcode in pickletools.opcodes." msgstr "" -#: ../../../build/NEWS:15989 ../../../build/NEWS:18515 +#: ../../../build/NEWS:16212 ../../../build/NEWS:18738 msgid "" "`bpo-23972 `__: Updates asyncio datagram" " create method allowing reuseport and reuseaddr socket options to be set " @@ -24946,7 +25369,7 @@ msgid "" " is 'posix' (except if the platform is Cygwin). Patch by Chris Laws." msgstr "" -#: ../../../build/NEWS:15995 ../../../build/NEWS:18521 +#: ../../../build/NEWS:16218 ../../../build/NEWS:18744 msgid "" "`bpo-25304 `__: Add " "asyncio.run_coroutine_threadsafe(). This lets you submit a coroutine to a " @@ -24954,60 +25377,60 @@ msgid "" " Michel." msgstr "" -#: ../../../build/NEWS:15999 ../../../build/NEWS:18525 +#: ../../../build/NEWS:16222 ../../../build/NEWS:18748 msgid "" "`bpo-25232 `__: Fix CGIRequestHandler to" " split the query from the URL at the first question mark (?) rather than the" " last. Patch from Xiang Zhang." msgstr "" -#: ../../../build/NEWS:16002 ../../../build/NEWS:18528 +#: ../../../build/NEWS:16225 ../../../build/NEWS:18751 msgid "" "`bpo-24657 `__: Prevent " "CGIRequestHandler from collapsing slashes in the query part of the URL as if" " it were a path. Patch from Xiang Zhang." msgstr "" -#: ../../../build/NEWS:16005 +#: ../../../build/NEWS:16228 msgid "" "`bpo-25287 `__: Don't add " "crypt.METHOD_CRYPT to crypt.methods if it's not supported. Check if it is " "supported, it may not be supported on OpenBSD for example." msgstr "" -#: ../../../build/NEWS:16009 ../../../build/NEWS:18556 +#: ../../../build/NEWS:16232 ../../../build/NEWS:18779 msgid "" "`bpo-23600 `__: Default implementation " "of tzinfo.fromutc() was returning wrong results in some cases." msgstr "" -#: ../../../build/NEWS:16012 ../../../build/NEWS:18553 +#: ../../../build/NEWS:16235 ../../../build/NEWS:18776 msgid "" "`bpo-25203 `__: Failed " "readline.set_completer_delims() no longer left the module in inconsistent " "state." msgstr "" -#: ../../../build/NEWS:16015 +#: ../../../build/NEWS:16238 msgid "" "`bpo-25011 `__: rlcompleter now omits " "private and special attribute names unless the prefix starts with " "underscores." msgstr "" -#: ../../../build/NEWS:16018 +#: ../../../build/NEWS:16241 msgid "" "`bpo-25209 `__: rlcompleter now can add " "a space or a colon after completed keyword." msgstr "" -#: ../../../build/NEWS:16021 +#: ../../../build/NEWS:16244 msgid "" "`bpo-22241 `__: timezone.utc name is now" " plain 'UTC', not 'UTC-00:00'." msgstr "" -#: ../../../build/NEWS:16023 +#: ../../../build/NEWS:16246 msgid "" "`bpo-23517 `__: fromtimestamp() and " "utcfromtimestamp() methods of datetime.datetime now round microseconds to " @@ -25015,20 +25438,20 @@ msgid "" "round(float), instead of rounding towards -Infinity (ROUND_FLOOR)." msgstr "" -#: ../../../build/NEWS:16028 +#: ../../../build/NEWS:16251 msgid "" "`bpo-23552 `__: Timeit now warns when " "there is substantial (4x) variance between best and worst times. Patch from " "Serhiy Storchaka." msgstr "" -#: ../../../build/NEWS:16031 +#: ../../../build/NEWS:16254 msgid "" "`bpo-24633 `__: site-packages/README -> " "README.txt." msgstr "" -#: ../../../build/NEWS:16033 +#: ../../../build/NEWS:16256 msgid "" "`bpo-24879 `__: help() and pydoc can now" " list named tuple fields in the order they were defined rather than " @@ -25036,63 +25459,63 @@ msgid "" "present." msgstr "" -#: ../../../build/NEWS:16037 +#: ../../../build/NEWS:16260 msgid "" "`bpo-24874 `__: Improve speed of " "itertools.cycle() and make its pickle more compact." msgstr "" -#: ../../../build/NEWS:16040 +#: ../../../build/NEWS:16263 msgid "" "Fix crash in itertools.cycle.__setstate__() when the first argument wasn't a" " list." msgstr "" -#: ../../../build/NEWS:16043 +#: ../../../build/NEWS:16266 msgid "" "`bpo-20059 `__: urllib.parse raises " "ValueError on all invalid ports. Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:16046 +#: ../../../build/NEWS:16269 msgid "" "`bpo-24360 `__: Improve __repr__ of " "argparse.Namespace() for invalid identifiers. Patch by Matthias Bussonnier." msgstr "" -#: ../../../build/NEWS:16049 +#: ../../../build/NEWS:16272 msgid "" "`bpo-23426 `__: run_setup was broken in " "distutils. Patch from Alexander Belopolsky." msgstr "" -#: ../../../build/NEWS:16052 +#: ../../../build/NEWS:16275 msgid "" "`bpo-13938 `__: 2to3 converts " "StringTypes to a tuple. Patch from Mark Hammond." msgstr "" -#: ../../../build/NEWS:16054 +#: ../../../build/NEWS:16277 msgid "" "`bpo-2091 `__: open() accepted a 'U' mode" " string containing '+', but 'U' can only be used with 'r'. Patch from Jeff " "Balogh and John O'Connor." msgstr "" -#: ../../../build/NEWS:16057 +#: ../../../build/NEWS:16280 msgid "" "`bpo-8585 `__: improved tests for " "zipimporter2. Patch from Mark Lawrence." msgstr "" -#: ../../../build/NEWS:16059 ../../../build/NEWS:19098 +#: ../../../build/NEWS:16282 ../../../build/NEWS:19321 msgid "" "`bpo-18622 `__: " "unittest.mock.mock_open().reset_mock would recurse infinitely. Patch from " "Nicola Palumbo and Laurent De Buyst." msgstr "" -#: ../../../build/NEWS:16062 +#: ../../../build/NEWS:16285 msgid "" "`bpo-24426 `__: Fast searching " "optimization in regular expressions now works for patterns that starts with " @@ -25100,114 +25523,114 @@ msgid "" "compile time." msgstr "" -#: ../../../build/NEWS:16066 ../../../build/NEWS:19101 +#: ../../../build/NEWS:16289 ../../../build/NEWS:19324 msgid "" "`bpo-23661 `__: unittest.mock " "side_effects can now be exceptions again. This was a regression vs Python " "3.4. Patch from Ignacio Rossi" msgstr "" -#: ../../../build/NEWS:16069 +#: ../../../build/NEWS:16292 msgid "" "`bpo-13248 `__: Remove deprecated " "inspect.getmoduleinfo function." msgstr "" -#: ../../../build/NEWS:16071 ../../../build/NEWS:18630 +#: ../../../build/NEWS:16294 ../../../build/NEWS:18853 msgid "" "`bpo-25578 `__: Fix (another) memory " "leak in SSLSocket.getpeercer()." msgstr "" -#: ../../../build/NEWS:16073 ../../../build/NEWS:18632 +#: ../../../build/NEWS:16296 ../../../build/NEWS:18855 msgid "" "`bpo-25530 `__: Disable the vulnerable " "SSLv3 protocol by default when creating ssl.SSLContext." msgstr "" -#: ../../../build/NEWS:16076 ../../../build/NEWS:18635 +#: ../../../build/NEWS:16299 ../../../build/NEWS:18858 msgid "" "`bpo-25569 `__: Fix memory leak in " "SSLSocket.getpeercert()." msgstr "" -#: ../../../build/NEWS:16078 ../../../build/NEWS:18637 +#: ../../../build/NEWS:16301 ../../../build/NEWS:18860 msgid "" "`bpo-25471 `__: Sockets returned from " "accept() shouldn't appear to be nonblocking." msgstr "" -#: ../../../build/NEWS:16081 ../../../build/NEWS:18640 +#: ../../../build/NEWS:16304 ../../../build/NEWS:18863 msgid "" "`bpo-25319 `__: When threading.Event is " "reinitialized, the underlying condition should use a regular lock rather " "than a recursive lock." msgstr "" -#: ../../../build/NEWS:16084 ../../../build/NEWS:18121 +#: ../../../build/NEWS:16307 ../../../build/NEWS:18344 msgid "" "Skip getaddrinfo if host is already resolved. Patch by A. Jesse Jiryu Davis." msgstr "" -#: ../../../build/NEWS:16087 ../../../build/NEWS:18124 +#: ../../../build/NEWS:16310 ../../../build/NEWS:18347 msgid "" "`bpo-26050 `__: Add " "asyncio.StreamReader.readuntil() method. Patch by Марк Коренберг." msgstr "" -#: ../../../build/NEWS:16090 ../../../build/NEWS:18127 +#: ../../../build/NEWS:16313 ../../../build/NEWS:18350 msgid "" "`bpo-25924 `__: Avoid unnecessary " "serialization of getaddrinfo(3) calls on OS X versions 10.5 or higher. " "Original patch by A. Jesse Jiryu Davis." msgstr "" -#: ../../../build/NEWS:16093 ../../../build/NEWS:18130 +#: ../../../build/NEWS:16316 ../../../build/NEWS:18353 msgid "" "`bpo-26406 `__: Avoid unnecessary " "serialization of getaddrinfo(3) calls on current versions of OpenBSD and " "NetBSD. Patch by A. Jesse Jiryu Davis." msgstr "" -#: ../../../build/NEWS:16096 ../../../build/NEWS:18133 +#: ../../../build/NEWS:16319 ../../../build/NEWS:18356 msgid "" "`bpo-26848 `__: Fix " "asyncio/subprocess.communicate() to handle empty input. Patch by Jack " "O'Connor." msgstr "" -#: ../../../build/NEWS:16099 ../../../build/NEWS:18136 +#: ../../../build/NEWS:16322 ../../../build/NEWS:18359 msgid "" "`bpo-27040 `__: Add " "loop.get_exception_handler method" msgstr "" -#: ../../../build/NEWS:16101 ../../../build/NEWS:18138 +#: ../../../build/NEWS:16324 ../../../build/NEWS:18361 msgid "" "`bpo-27041 `__: asyncio: Add " "loop.create_future method" msgstr "" -#: ../../../build/NEWS:16106 ../../../build/NEWS:18186 +#: ../../../build/NEWS:16329 ../../../build/NEWS:18409 msgid "" "`bpo-20640 `__: Add tests for " "idlelib.configHelpSourceEdit. Patch by Saimadhav Heblikar." msgstr "" -#: ../../../build/NEWS:16109 ../../../build/NEWS:18189 +#: ../../../build/NEWS:16332 ../../../build/NEWS:18412 msgid "" "In the 'IDLE-console differences' section of the IDLE doc, clarify how " "running with IDLE affects sys.modules and the standard streams." msgstr "" -#: ../../../build/NEWS:16112 ../../../build/NEWS:18192 +#: ../../../build/NEWS:16335 ../../../build/NEWS:18415 msgid "" "`bpo-25507 `__: fix incorrect change in " "IOBinding that prevented printing. Augment IOBinding htest to include all " "major IOBinding functions." msgstr "" -#: ../../../build/NEWS:16115 ../../../build/NEWS:18195 +#: ../../../build/NEWS:16338 ../../../build/NEWS:18418 msgid "" "`bpo-25905 `__: Revert unwanted " "conversion of ' to ’ RIGHT SINGLE QUOTATION MARK in README.txt and open this" @@ -25215,7 +25638,7 @@ msgid "" "'utf-8'." msgstr "" -#: ../../../build/NEWS:16119 ../../../build/NEWS:18669 +#: ../../../build/NEWS:16342 ../../../build/NEWS:18892 msgid "" "`bpo-15348 `__: Stop the debugger engine" " (normally in a user process) before closing the debugger window (running in" @@ -25223,7 +25646,7 @@ msgid "" "and ignored." msgstr "" -#: ../../../build/NEWS:16123 ../../../build/NEWS:18673 +#: ../../../build/NEWS:16346 ../../../build/NEWS:18896 msgid "" "`bpo-24455 `__: Prevent IDLE from " "hanging when a) closing the shell while the debugger is active (15347); b) " @@ -25234,20 +25657,20 @@ msgid "" "& .quit). 2. In gui.run, allow any existing interaction to terminate first." msgstr "" -#: ../../../build/NEWS:16131 ../../../build/NEWS:18681 +#: ../../../build/NEWS:16354 ../../../build/NEWS:18904 msgid "" "Change 'The program' to 'Your program' in an IDLE 'kill program?' message to" " make it clearer that the program referred to is the currently running user " "program, not IDLE itself." msgstr "" -#: ../../../build/NEWS:16135 ../../../build/NEWS:18685 +#: ../../../build/NEWS:16358 ../../../build/NEWS:18908 msgid "" "`bpo-24750 `__: Improve the appearance " "of the IDLE editor window status bar. Patch by Mark Roseman." msgstr "" -#: ../../../build/NEWS:16138 ../../../build/NEWS:18688 +#: ../../../build/NEWS:16361 ../../../build/NEWS:18911 msgid "" "`bpo-25313 `__: Change the handling of " "new built-in text color themes to better address the compatibility problem " @@ -25255,21 +25678,21 @@ msgid "" "idleConf.CurrentTheme everywhere in idlelib." msgstr "" -#: ../../../build/NEWS:16142 ../../../build/NEWS:18692 +#: ../../../build/NEWS:16365 ../../../build/NEWS:18915 msgid "" "`bpo-24782 `__: Extension configuration " "is now a tab in the IDLE Preferences dialog rather than a separate dialog. " "The former tabs are now a sorted list. Patch by Mark Roseman." msgstr "" -#: ../../../build/NEWS:16146 ../../../build/NEWS:18696 +#: ../../../build/NEWS:16369 ../../../build/NEWS:18919 msgid "" "`bpo-22726 `__: Re-activate the config " "dialog help button with some content about the other buttons and the new " "IDLE Dark theme." msgstr "" -#: ../../../build/NEWS:16149 ../../../build/NEWS:18699 +#: ../../../build/NEWS:16372 ../../../build/NEWS:18922 msgid "" "`bpo-24820 `__: IDLE now has an 'IDLE " "Dark' built-in text color theme. It is more or less IDLE Classic inverted, " @@ -25280,7 +25703,7 @@ msgid "" " be modified." msgstr "" -#: ../../../build/NEWS:16156 ../../../build/NEWS:18706 +#: ../../../build/NEWS:16379 ../../../build/NEWS:18929 msgid "" "`bpo-25224 `__: README.txt is now an " "idlelib index for IDLE developers and curious users. The previous user " @@ -25288,14 +25711,14 @@ msgid "" "Development and Learning Environment'." msgstr "" -#: ../../../build/NEWS:16160 ../../../build/NEWS:18710 +#: ../../../build/NEWS:16383 ../../../build/NEWS:18933 msgid "" "`bpo-24820 `__: Users can now set " "breakpoint colors in Settings -> Custom Highlighting. Original patch by Mark" " Roseman." msgstr "" -#: ../../../build/NEWS:16163 ../../../build/NEWS:18713 +#: ../../../build/NEWS:16386 ../../../build/NEWS:18936 msgid "" "`bpo-24972 `__: Inactive selection " "background now matches active selection background, as configured by users, " @@ -25303,34 +25726,34 @@ msgid "" " patch by Mark Roseman." msgstr "" -#: ../../../build/NEWS:16167 ../../../build/NEWS:18717 +#: ../../../build/NEWS:16390 ../../../build/NEWS:18940 msgid "" "`bpo-24570 `__: Idle: make calltip and " "completion boxes appear on Macs affected by a tk regression. Initial patch " "by Mark Roseman." msgstr "" -#: ../../../build/NEWS:16170 ../../../build/NEWS:18720 +#: ../../../build/NEWS:16393 ../../../build/NEWS:18943 msgid "" "`bpo-24988 `__: Idle ScrolledList " "context menus (used in debugger) now work on Mac Aqua. Patch by Mark " "Roseman." msgstr "" -#: ../../../build/NEWS:16173 ../../../build/NEWS:18723 +#: ../../../build/NEWS:16396 ../../../build/NEWS:18946 msgid "" "`bpo-24801 `__: Make right-click for " "context menu work on Mac Aqua. Patch by Mark Roseman." msgstr "" -#: ../../../build/NEWS:16176 ../../../build/NEWS:18726 +#: ../../../build/NEWS:16399 ../../../build/NEWS:18949 msgid "" "`bpo-25173 `__: Associate tkinter " "messageboxes with a specific widget. For Mac OSX, make them a 'sheet'. " "Patch by Mark Roseman." msgstr "" -#: ../../../build/NEWS:16179 ../../../build/NEWS:18729 +#: ../../../build/NEWS:16402 ../../../build/NEWS:18952 msgid "" "`bpo-25198 `__: Enhance the initial html" " viewer now used for Idle Help. Properly indent fixed-pitch text (patch by " @@ -25340,50 +25763,50 @@ msgid "" "header at the top of the screen." msgstr "" -#: ../../../build/NEWS:16186 ../../../build/NEWS:18736 +#: ../../../build/NEWS:16409 ../../../build/NEWS:18959 msgid "" "`bpo-25225 `__: Condense and rewrite " "Idle doc section on text colors." msgstr "" -#: ../../../build/NEWS:16188 ../../../build/NEWS:18738 +#: ../../../build/NEWS:16411 ../../../build/NEWS:18961 msgid "" "`bpo-21995 `__: Explain some differences" " between IDLE and console Python." msgstr "" -#: ../../../build/NEWS:16190 ../../../build/NEWS:18740 +#: ../../../build/NEWS:16413 ../../../build/NEWS:18963 msgid "" "`bpo-22820 `__: Explain need for *print*" " when running file from Idle editor." msgstr "" -#: ../../../build/NEWS:16192 ../../../build/NEWS:18742 +#: ../../../build/NEWS:16415 ../../../build/NEWS:18965 msgid "" "`bpo-25224 `__: Doc: augment Idle " "feature list and no-subprocess section." msgstr "" -#: ../../../build/NEWS:16194 ../../../build/NEWS:18744 +#: ../../../build/NEWS:16417 ../../../build/NEWS:18967 msgid "" "`bpo-25219 `__: Update doc for Idle " "command line options. Some were missing and notes were not correct." msgstr "" -#: ../../../build/NEWS:16197 ../../../build/NEWS:18747 +#: ../../../build/NEWS:16420 ../../../build/NEWS:18970 msgid "" "`bpo-24861 `__: Most of idlelib is " "private and subject to change. Use idleib.idle.* to start Idle. See " "idlelib.__init__.__doc__." msgstr "" -#: ../../../build/NEWS:16200 ../../../build/NEWS:18750 +#: ../../../build/NEWS:16423 ../../../build/NEWS:18973 msgid "" "`bpo-25199 `__: Idle: add " "synchronization comments for future maintainers." msgstr "" -#: ../../../build/NEWS:16202 +#: ../../../build/NEWS:16425 msgid "" "`bpo-16893 `__: Replace help.txt with " "help.html for Idle doc display. The new idlelib/help.html is rstripped " @@ -25393,160 +25816,160 @@ msgid "" "EditorWindow.HelpDialog class and helt.txt file are deprecated." msgstr "" -#: ../../../build/NEWS:16209 ../../../build/NEWS:18759 +#: ../../../build/NEWS:16432 ../../../build/NEWS:18982 msgid "" "`bpo-24199 `__: Deprecate unused " "idlelib.idlever with possible removal in 3.6." msgstr "" -#: ../../../build/NEWS:16211 ../../../build/NEWS:18761 +#: ../../../build/NEWS:16434 ../../../build/NEWS:18984 msgid "" "`bpo-24790 `__: Remove extraneous code " "(which also create 2 & 3 conflicts)." msgstr "" -#: ../../../build/NEWS:16216 ../../../build/NEWS:18207 +#: ../../../build/NEWS:16439 ../../../build/NEWS:18430 msgid "" "`bpo-26736 `__: Used HTTPS for external " "links in the documentation if possible." msgstr "" -#: ../../../build/NEWS:16218 ../../../build/NEWS:18209 +#: ../../../build/NEWS:16441 ../../../build/NEWS:18432 msgid "" "`bpo-6953 `__: Rework the Readline module" " documentation to group related functions together, and add more details " "such as what underlying Readline functions and variables are accessed." msgstr "" -#: ../../../build/NEWS:16222 ../../../build/NEWS:18213 +#: ../../../build/NEWS:16445 ../../../build/NEWS:18436 msgid "" "`bpo-23606 `__: Adds note to ctypes " "documentation regarding cdll.msvcrt." msgstr "" -#: ../../../build/NEWS:16224 ../../../build/NEWS:18776 +#: ../../../build/NEWS:16447 ../../../build/NEWS:18999 msgid "" "`bpo-24952 `__: Clarify the default size" " argument of stack_size() in the \"threading\" and \"_thread\" modules. " "Patch from Mattip." msgstr "" -#: ../../../build/NEWS:16227 ../../../build/NEWS:18218 +#: ../../../build/NEWS:16450 ../../../build/NEWS:18441 msgid "" "`bpo-26014 `__: Update 3.x packaging " "documentation: * \"See also\" links to the new docs are now provided in the " "legacy pages * links to setuptools documentation have been updated" msgstr "" -#: ../../../build/NEWS:16234 ../../../build/NEWS:18225 +#: ../../../build/NEWS:16457 ../../../build/NEWS:18448 msgid "" "`bpo-21916 `__: Added tests for the " "turtle module. Patch by ingrid, Gregory Loyse and Jelle Zijlstra." msgstr "" -#: ../../../build/NEWS:16237 +#: ../../../build/NEWS:16460 msgid "" "`bpo-26295 `__: When using \"python3 -m " "test --testdir=TESTDIR\", regrtest doesn't add \"test.\" prefix to test " "module names." msgstr "" -#: ../../../build/NEWS:16240 ../../../build/NEWS:18228 +#: ../../../build/NEWS:16463 ../../../build/NEWS:18451 msgid "" "`bpo-26523 `__: The multiprocessing " "thread pool (multiprocessing.dummy.Pool) was untested." msgstr "" -#: ../../../build/NEWS:16243 ../../../build/NEWS:18231 +#: ../../../build/NEWS:16466 ../../../build/NEWS:18454 msgid "" "`bpo-26015 `__: Added new tests for " "pickling iterators of mutable sequences." msgstr "" -#: ../../../build/NEWS:16245 ../../../build/NEWS:18233 +#: ../../../build/NEWS:16468 ../../../build/NEWS:18456 msgid "" "`bpo-26325 `__: Added " "test.support.check_no_resource_warning() to check that no ResourceWarning is" " emitted." msgstr "" -#: ../../../build/NEWS:16248 +#: ../../../build/NEWS:16471 msgid "" "`bpo-25940 `__: Changed test_ssl to use " "its internal local server more. This avoids relying on svn.python.org, " "which recently changed root certificate." msgstr "" -#: ../../../build/NEWS:16251 ../../../build/NEWS:18239 +#: ../../../build/NEWS:16474 ../../../build/NEWS:18462 msgid "" "`bpo-25616 `__: Tests for OrderedDict " "are extracted from test_collections into separate file test_ordered_dict." msgstr "" -#: ../../../build/NEWS:16254 ../../../build/NEWS:18790 +#: ../../../build/NEWS:16477 ../../../build/NEWS:19013 msgid "" "`bpo-25449 `__: Added tests for " "OrderedDict subclasses." msgstr "" -#: ../../../build/NEWS:16256 +#: ../../../build/NEWS:16479 msgid "" "`bpo-25188 `__: Add -P/--pgo to " "test.regrtest to suppress error output when running the test suite for the " "purposes of a PGO build. Initial patch by Alecsandru Patrascu." msgstr "" -#: ../../../build/NEWS:16260 +#: ../../../build/NEWS:16483 msgid "" "`bpo-22806 `__: Add ``python -m test " "--list-tests`` command to list tests." msgstr "" -#: ../../../build/NEWS:16262 +#: ../../../build/NEWS:16485 msgid "" "`bpo-18174 `__: ``python -m test " "--huntrleaks ...`` now also checks for leak of file descriptors. Patch " "written by Richard Oudkerk." msgstr "" -#: ../../../build/NEWS:16265 +#: ../../../build/NEWS:16488 msgid "" "`bpo-25260 `__: Fix ``python -m test " "--coverage`` on Windows. Remove the list of ignored directories." msgstr "" -#: ../../../build/NEWS:16268 ../../../build/NEWS:18797 +#: ../../../build/NEWS:16491 ../../../build/NEWS:19020 msgid "" "``PCbuild\\rt.bat`` now accepts an unlimited number of arguments to pass " "along to regrtest.py. Previously there was a limit of 9." msgstr "" -#: ../../../build/NEWS:16271 ../../../build/NEWS:18242 +#: ../../../build/NEWS:16494 ../../../build/NEWS:18465 msgid "" "`bpo-26583 `__: Skip " "test_timestamp_overflow in test_import if bytecode files cannot be written." msgstr "" -#: ../../../build/NEWS:16277 +#: ../../../build/NEWS:16500 msgid "" "`bpo-21277 `__: Don't try to link " "_ctypes with a ffi_convenience library." msgstr "" -#: ../../../build/NEWS:16279 ../../../build/NEWS:18248 +#: ../../../build/NEWS:16502 ../../../build/NEWS:18471 msgid "" "`bpo-26884 `__: Fix linking extension " "modules for cross builds. Patch by Xavier de Gaye." msgstr "" -#: ../../../build/NEWS:16282 +#: ../../../build/NEWS:16505 msgid "" "`bpo-26932 `__: Fixed support of RTLD_* " "constants defined as enum values, not via macros (in particular on Android)." " Patch by Chi Hsuan Yen." msgstr "" -#: ../../../build/NEWS:16285 ../../../build/NEWS:18251 +#: ../../../build/NEWS:16508 ../../../build/NEWS:18474 msgid "" "`bpo-22359 `__: Disable the rules for " "running _freeze_importlib and pgen when cross-compiling. The output of " @@ -25554,14 +25977,14 @@ msgid "" "regenerated when doing a native build. Patch by Xavier de Gaye." msgstr "" -#: ../../../build/NEWS:16290 +#: ../../../build/NEWS:16513 msgid "" "`bpo-21668 `__: Link audioop, _datetime," " _ctypes_test modules to libm, except on Mac OS X. Patch written by Chi " "Hsuan Yen." msgstr "" -#: ../../../build/NEWS:16293 ../../../build/NEWS:18262 +#: ../../../build/NEWS:16516 ../../../build/NEWS:18485 msgid "" "`bpo-25702 `__: A --with-lto configure " "option has been added that will enable link time optimizations at build time" @@ -25570,83 +25993,83 @@ msgid "" " relying on it. It can provide a few % speed up over profile-opt alone." msgstr "" -#: ../../../build/NEWS:16299 ../../../build/NEWS:18268 +#: ../../../build/NEWS:16522 ../../../build/NEWS:18491 msgid "" "`bpo-26624 `__: Adds validation of " "ucrtbase[d].dll version with warning for old versions." msgstr "" -#: ../../../build/NEWS:16302 ../../../build/NEWS:18271 +#: ../../../build/NEWS:16525 ../../../build/NEWS:18494 msgid "" "`bpo-17603 `__: Avoid error about " "nonexistent fileblocks.o file by using a lower-level check for st_blocks in " "struct stat." msgstr "" -#: ../../../build/NEWS:16305 ../../../build/NEWS:18274 +#: ../../../build/NEWS:16528 ../../../build/NEWS:18497 msgid "" "`bpo-26079 `__: Fixing the build output " "folder for tix-8.4.3.6. Patch by Bjoern Thiel." msgstr "" -#: ../../../build/NEWS:16308 ../../../build/NEWS:18277 +#: ../../../build/NEWS:16531 ../../../build/NEWS:18500 msgid "" "`bpo-26465 `__: Update Windows builds to" " use OpenSSL 1.0.2g." msgstr "" -#: ../../../build/NEWS:16310 +#: ../../../build/NEWS:16533 msgid "" "`bpo-25348 `__: Added ``--pgo`` and " "``--pgo-job`` arguments to ``PCbuild\\build.bat`` for building with Profile-" "Guided Optimization. The old ``PCbuild\\build_pgo.bat`` script is removed." msgstr "" -#: ../../../build/NEWS:16314 ../../../build/NEWS:18288 +#: ../../../build/NEWS:16537 ../../../build/NEWS:18511 msgid "" "`bpo-25827 `__: Add support for building" " with ICC to ``configure``, including a new ``--with-icc`` flag." msgstr "" -#: ../../../build/NEWS:16317 ../../../build/NEWS:18291 +#: ../../../build/NEWS:16540 ../../../build/NEWS:18514 msgid "" "`bpo-25696 `__: Fix installation of " "Python on UNIX with make -j9." msgstr "" -#: ../../../build/NEWS:16319 ../../../build/NEWS:18808 +#: ../../../build/NEWS:16542 ../../../build/NEWS:19031 msgid "" "`bpo-24986 `__: It is now possible to " "build Python on Windows without errors when external libraries are not " "available." msgstr "" -#: ../../../build/NEWS:16322 ../../../build/NEWS:18279 +#: ../../../build/NEWS:16545 ../../../build/NEWS:18502 msgid "" "`bpo-24421 `__: Compile Modules/_math.c " "once, before building extensions. Previously it could fail to compile " "properly if the math and cmath builds were concurrent." msgstr "" -#: ../../../build/NEWS:16326 +#: ../../../build/NEWS:16549 msgid "" "`bpo-26465 `__: Update OS X 10.5+ 32" "-bit-only installer to build and link with OpenSSL 1.0.2g." msgstr "" -#: ../../../build/NEWS:16329 ../../../build/NEWS:18296 +#: ../../../build/NEWS:16552 ../../../build/NEWS:18519 msgid "" "`bpo-26268 `__: Update Windows builds to" " use OpenSSL 1.0.2f." msgstr "" -#: ../../../build/NEWS:16331 ../../../build/NEWS:18298 +#: ../../../build/NEWS:16554 ../../../build/NEWS:18521 msgid "" "`bpo-25136 `__: Support Apple Xcode 7's " "new textual SDK stub libraries." msgstr "" -#: ../../../build/NEWS:16333 ../../../build/NEWS:18300 +#: ../../../build/NEWS:16556 ../../../build/NEWS:18523 msgid "" "`bpo-24324 `__: Do not enable " "unreachable code warnings when using gcc as the option does not work " @@ -25654,44 +26077,44 @@ msgid "" "gcc-4.5." msgstr "" -#: ../../../build/NEWS:16340 ../../../build/NEWS:18307 +#: ../../../build/NEWS:16563 ../../../build/NEWS:18530 msgid "" "`bpo-27053 `__: Updates make_zip.py to " "correctly generate library ZIP file." msgstr "" -#: ../../../build/NEWS:16342 ../../../build/NEWS:18309 +#: ../../../build/NEWS:16565 ../../../build/NEWS:18532 msgid "" "`bpo-26268 `__: Update the " "prepare_ssl.py script to handle OpenSSL releases that don't include the " "contents of the include directory (that is, 1.0.2e and later)." msgstr "" -#: ../../../build/NEWS:16346 ../../../build/NEWS:18313 +#: ../../../build/NEWS:16569 ../../../build/NEWS:18536 msgid "" "`bpo-26071 `__: bdist_wininst created " "binaries fail to start and find 32bit Python" msgstr "" -#: ../../../build/NEWS:16349 ../../../build/NEWS:18316 +#: ../../../build/NEWS:16572 ../../../build/NEWS:18539 msgid "" "`bpo-26073 `__: Update the list of magic" " numbers in launcher" msgstr "" -#: ../../../build/NEWS:16351 ../../../build/NEWS:18318 +#: ../../../build/NEWS:16574 ../../../build/NEWS:18541 msgid "" "`bpo-26065 `__: Excludes venv from " "library when generating embeddable distro." msgstr "" -#: ../../../build/NEWS:16353 ../../../build/NEWS:18847 +#: ../../../build/NEWS:16576 ../../../build/NEWS:19070 msgid "" "`bpo-25022 `__: Removed very outdated " "PC/example_nt/ directory." msgstr "" -#: ../../../build/NEWS:16358 ../../../build/NEWS:18323 +#: ../../../build/NEWS:16581 ../../../build/NEWS:18546 msgid "" "`bpo-26799 `__: Fix python-gdb.py: don't" " get C types once when the Python code is loaded, but get C types on demand." @@ -25699,44 +26122,44 @@ msgid "" "executable. Patch written by Thomas Ilsche." msgstr "" -#: ../../../build/NEWS:16363 ../../../build/NEWS:18328 +#: ../../../build/NEWS:16586 ../../../build/NEWS:18551 msgid "" "`bpo-26271 `__: Fix the Freeze tool to " "properly use flags passed through configure. Patch by Daniel Shaulov." msgstr "" -#: ../../../build/NEWS:16366 ../../../build/NEWS:18331 +#: ../../../build/NEWS:16589 ../../../build/NEWS:18554 msgid "" "`bpo-26489 `__: Add dictionary unpacking" " support to Tools/parser/unparse.py. Patch by Guo Ci Teo." msgstr "" -#: ../../../build/NEWS:16369 ../../../build/NEWS:18334 +#: ../../../build/NEWS:16592 ../../../build/NEWS:18557 msgid "" "`bpo-26316 `__: Fix variable name typo " "in Argument Clinic." msgstr "" -#: ../../../build/NEWS:16371 ../../../build/NEWS:18852 +#: ../../../build/NEWS:16594 ../../../build/NEWS:19075 msgid "" "`bpo-25440 `__: Fix output of python-" "config --extension-suffix." msgstr "" -#: ../../../build/NEWS:16373 +#: ../../../build/NEWS:16596 msgid "" "`bpo-25154 `__: The pyvenv script has " "been deprecated in favour of `python3 -m venv`." msgstr "" -#: ../../../build/NEWS:16379 +#: ../../../build/NEWS:16602 msgid "" "`bpo-26312 `__: SystemError is now " "raised in all programming bugs with using PyArg_ParseTupleAndKeywords(). " "RuntimeError did raised before in some programming bugs." msgstr "" -#: ../../../build/NEWS:16383 +#: ../../../build/NEWS:16606 msgid "" "`bpo-26198 `__: ValueError is now raised" " instead of TypeError on buffer overflow in parsing \"es#\" and \"et#\" " @@ -25744,27 +26167,27 @@ msgid "" "programmatical error in parsing format string." msgstr "" -#: ../../../build/NEWS:16390 +#: ../../../build/NEWS:16613 msgid "Python 3.5.5 final" msgstr "Python 3.5.5 final" -#: ../../../build/NEWS:16392 +#: ../../../build/NEWS:16615 msgid "*Release date: 2018-02-04*" msgstr "*Tanggal rilis: 2018-02-04*" -#: ../../../build/NEWS:16394 +#: ../../../build/NEWS:16617 msgid "There were no new changes in version 3.5.5." msgstr "Tidak ada perubahan baru di versi 3.5.5." -#: ../../../build/NEWS:16399 +#: ../../../build/NEWS:16622 msgid "Python 3.5.5 release candidate 1" msgstr "Python 3.5.5 kandidat rilis 1" -#: ../../../build/NEWS:16401 +#: ../../../build/NEWS:16624 msgid "*Release date: 2018-01-23*" msgstr "*Tanggal rilis: 2018-01-23*" -#: ../../../build/NEWS:16406 +#: ../../../build/NEWS:16629 msgid "" "`bpo-32551 `__: The ``sys.path[0]`` " "initialization change for `bpo-29139 `__" @@ -25782,30 +26205,30 @@ msgid "" " affected)" msgstr "" -#: ../../../build/NEWS:16419 +#: ../../../build/NEWS:16642 msgid "" "`bpo-30657 `__: Fixed possible integer " "overflow in PyBytes_DecodeEscape, CVE-2017-1000158. Original patch by Jay " "Bosamiya; rebased to Python 3 by Miro Hrončok." msgstr "" -#: ../../../build/NEWS:16446 +#: ../../../build/NEWS:16669 msgid "Python 3.5.4 final" msgstr "Python 3.5.4 final" -#: ../../../build/NEWS:16448 +#: ../../../build/NEWS:16671 msgid "*Release date: 2017-08-07*" msgstr "*Tanggal rilis: 2017-08-07*" -#: ../../../build/NEWS:16458 +#: ../../../build/NEWS:16681 msgid "Python 3.5.4 release candidate 1" msgstr "Python 3.5.4 kandidat rilis 1" -#: ../../../build/NEWS:16460 +#: ../../../build/NEWS:16683 msgid "*Release date: 2017-07-23*" msgstr "*Tanggal rilis: 2017-07-23*" -#: ../../../build/NEWS:16512 +#: ../../../build/NEWS:16735 msgid "" "`bpo-29537 `__: Restore runtime " "compatibility with bytecode files generated by CPython 3.5.0 to 3.5.2, and " @@ -25814,13 +26237,13 @@ msgid "" "contain. Patch by Petr Viktorin, Serhiy Storchaka, and Nick Coghlan." msgstr "" -#: ../../../build/NEWS:16794 +#: ../../../build/NEWS:17017 msgid "" "`bpo-30822 `__: Fix regrtest command " "line parser to allow passing -u extralargefile to run test_zipfile64." msgstr "" -#: ../../../build/NEWS:16797 +#: ../../../build/NEWS:17020 msgid "" "`bpo-30383 `__: regrtest: Enhance " "regrtest and backport features from the master branch. Add options: " @@ -25835,7 +26258,7 @@ msgid "" "(:issue:`30675`)." msgstr "" -#: ../../../build/NEWS:16854 +#: ../../../build/NEWS:17077 msgid "" "`bpo-27867 `__: Function " "PySlice_GetIndicesEx() is replaced with a macro if Py_LIMITED_API is set to " @@ -25843,65 +26266,65 @@ msgid "" " higher." msgstr "" -#: ../../../build/NEWS:16866 +#: ../../../build/NEWS:17089 msgid "Python 3.5.3 final" msgstr "Python 3.5.3 final" -#: ../../../build/NEWS:16868 +#: ../../../build/NEWS:17091 msgid "*Release date: 2017-01-17*" msgstr "*Tanggal rilis: 2017-01-17*" -#: ../../../build/NEWS:16870 +#: ../../../build/NEWS:17093 msgid "There were no code changes between 3.5.3rc1 and 3.5.3 final." msgstr "Tidak ada perubahan kode antara 3.5.3rc1 dan 3.5.3 final." -#: ../../../build/NEWS:16875 +#: ../../../build/NEWS:17098 msgid "Python 3.5.3 release candidate 1" msgstr "Python 3.5.3 kandidat rilis 1" -#: ../../../build/NEWS:16877 +#: ../../../build/NEWS:17100 msgid "*Release date: 2017-01-02*" msgstr "*Tanggal rilis: 2017-01-02*" -#: ../../../build/NEWS:16882 +#: ../../../build/NEWS:17105 msgid "" "`bpo-29073 `__: bytearray formatting no " "longer truncates on first null byte." msgstr "" -#: ../../../build/NEWS:16886 +#: ../../../build/NEWS:17109 msgid "" "`bpo-28147 `__: Fix a memory leak in " "split-table dictionaries: setattr() must not convert combined table into " "split table." msgstr "" -#: ../../../build/NEWS:16898 +#: ../../../build/NEWS:17121 msgid "" "`bpo-28991 `__: functools.lru_cache() " "was susceptible to an obscure reentrancy bug caused by a monkey-patched " "len() function." msgstr "" -#: ../../../build/NEWS:16941 +#: ../../../build/NEWS:17164 msgid "" "`bpo-28203 `__: Fix incorrect type in " "error message from ``complex(1.0, {2:3})``. Patch by Soumya Sharma." msgstr "" -#: ../../../build/NEWS:16956 +#: ../../../build/NEWS:17179 msgid "" "`bpo-28189 `__: dictitems_contains no " "longer swallows compare errors. (Patch by Xiang Zhang)" msgstr "" -#: ../../../build/NEWS:16968 +#: ../../../build/NEWS:17191 msgid "" "`bpo-26020 `__: set literal evaluation " "order did not match documented behaviour." msgstr "" -#: ../../../build/NEWS:16987 +#: ../../../build/NEWS:17210 msgid "" "`bpo-27419 `__: Standard __import__() no" " longer look up \"__import__\" in globals or builtins for importing " @@ -25909,33 +26332,33 @@ msgid "" "package name." msgstr "" -#: ../../../build/NEWS:17039 +#: ../../../build/NEWS:17262 msgid "" "`bpo-20191 `__: Fixed a crash in " "resource.prlimit() when pass a sequence that doesn't own its elements as " "limits." msgstr "" -#: ../../../build/NEWS:17090 +#: ../../../build/NEWS:17313 msgid "" "`bpo-28488 `__: shutil.make_archive() no" " longer add entry \"./\" to ZIP archive." msgstr "" -#: ../../../build/NEWS:17128 +#: ../../../build/NEWS:17351 msgid "" "`bpo-27611 `__: Fixed support of default" " root window in the tkinter.tix module." msgstr "" -#: ../../../build/NEWS:17154 +#: ../../../build/NEWS:17377 msgid "" "`bpo-19003 `__: m email.generator now " "replaces only ``\\r`` and/or ``\\n`` line endings, per the RFC, instead of " "all unicode line endings." msgstr "" -#: ../../../build/NEWS:17226 +#: ../../../build/NEWS:17449 msgid "" "A new version of typing.py from https://github.com/python/typing: Collection" " (only for 3.6) (`bpo-27598 `__). Add " @@ -25944,20 +26367,20 @@ msgid "" "(upstream #252)." msgstr "" -#: ../../../build/NEWS:17242 +#: ../../../build/NEWS:17465 msgid "" "`bpo-26750 `__: " "unittest.mock.create_autospec() now works properly for subclasses of " "property() and other data descriptors." msgstr "" -#: ../../../build/NEWS:17286 +#: ../../../build/NEWS:17509 msgid "" "`bpo-26664 `__: Fix activate.fish by " "removing mis-use of ``$``." msgstr "" -#: ../../../build/NEWS:17288 +#: ../../../build/NEWS:17511 msgid "" "`bpo-22115 `__: Fixed tracing Tkinter " "variables: trace_vdelete() with wrong mode no longer break tracing, " @@ -25965,51 +26388,51 @@ msgid "" "\"u\" mode now works." msgstr "" -#: ../../../build/NEWS:17292 +#: ../../../build/NEWS:17515 msgid "" "Fix a scoping issue in importlib.util.LazyLoader which triggered an " "UnboundLocalError when lazy-loading a module that was already put into " "sys.modules." msgstr "" -#: ../../../build/NEWS:17392 +#: ../../../build/NEWS:17615 msgid "" "`bpo-28600 `__: Optimize " "loop.call_soon()." msgstr "" -#: ../../../build/NEWS:17406 +#: ../../../build/NEWS:17629 msgid "" "`bpo-24142 `__: Reading a corrupt config" " file left the parser in an invalid state. Original patch by Florian Höch." msgstr "" -#: ../../../build/NEWS:17409 +#: ../../../build/NEWS:17632 msgid "" "`bpo-28990 `__: Fix SSL hanging if " "connection is closed before handshake completed. (Patch by HoHo-Ho)" msgstr "" -#: ../../../build/NEWS:17445 +#: ../../../build/NEWS:17668 msgid "" "`bpo-26754 `__: PyUnicode_FSDecoder() " "accepted a filename argument encoded as an iterable of integers. Now only " "strings and bytes-like objects are accepted." msgstr "" -#: ../../../build/NEWS:17457 +#: ../../../build/NEWS:17680 msgid "" "`bpo-28950 `__: Disallow -j0 to be " "combined with -T/-l/-M in regrtest command line arguments." msgstr "" -#: ../../../build/NEWS:17498 +#: ../../../build/NEWS:17721 msgid "" "`bpo-27309 `__: Enabled proper Windows " "styles in python[w].exe manifest." msgstr "" -#: ../../../build/NEWS:17531 +#: ../../../build/NEWS:17754 msgid "" "`bpo-27983 `__: Cause lack of llvm-" "profdata tool when using clang as required for PGO linking to be a configure" @@ -26018,13 +26441,13 @@ msgid "" "Linuxes." msgstr "" -#: ../../../build/NEWS:17538 +#: ../../../build/NEWS:17761 msgid "" "`bpo-26359 `__: Add the --with-" "optimizations configure flag." msgstr "" -#: ../../../build/NEWS:17543 +#: ../../../build/NEWS:17766 msgid "" "`bpo-25825 `__: Correct the references " "to Modules/python.exp and ld_so_aix, which are required on AIX. This " @@ -26032,48 +26455,48 @@ msgid "" "undoes changed references to the build tree that were made in 3.5.0a1." msgstr "" -#: ../../../build/NEWS:17566 +#: ../../../build/NEWS:17789 msgid "Python 3.5.2 final" msgstr "Python 3.5.2 final" -#: ../../../build/NEWS:17568 +#: ../../../build/NEWS:17791 msgid "*Release date: 2016-06-26*" msgstr "*Tanggal rilis: 2016-06-26*" -#: ../../../build/NEWS:17578 +#: ../../../build/NEWS:17801 msgid "" "`bpo-26867 `__: Ubuntu's openssl " "OP_NO_SSLv3 is forced on by default; fix test." msgstr "" -#: ../../../build/NEWS:17583 +#: ../../../build/NEWS:17806 msgid "" "`bpo-27365 `__: Allow non-ascii in " "idlelib/NEWS.txt - minimal part for 3.5.2." msgstr "" -#: ../../../build/NEWS:17587 +#: ../../../build/NEWS:17810 msgid "Python 3.5.2 release candidate 1" msgstr "Python 3.5.2 kandidat rilis 1" -#: ../../../build/NEWS:17589 +#: ../../../build/NEWS:17812 msgid "*Release date: 2016-06-12*" msgstr "*Tanggal rilis: 2016-06-12*" -#: ../../../build/NEWS:17605 +#: ../../../build/NEWS:17828 msgid "" "`bpo-27039 `__: Fixed bytearray.remove()" " for values greater than 127. Patch by Joe Jevnik." msgstr "" -#: ../../../build/NEWS:17660 +#: ../../../build/NEWS:17883 msgid "" "`bpo-26194 `__: Deque.insert() gave odd " "results for bounded deques that had reached their maximum size. Now an " "IndexError will be raised when attempting to insert into a full deque." msgstr "" -#: ../../../build/NEWS:17664 +#: ../../../build/NEWS:17887 msgid "" "`bpo-25843 `__: When compiling code, " "don't merge constants if they are equal but have a different types. For " @@ -26082,13 +26505,13 @@ msgid "" "returns ``1.0`` (``int``), even if ``1`` and ``1.0`` are equal." msgstr "" -#: ../../../build/NEWS:17726 +#: ../../../build/NEWS:17949 msgid "" "Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. Reported by Team " "Oststrom" msgstr "" -#: ../../../build/NEWS:17911 +#: ../../../build/NEWS:18134 msgid "" "`bpo-21925 `__: " ":func:`warnings.formatwarning` now catches exceptions on " @@ -26096,64 +26519,64 @@ msgid "" "late during the Python shutdown process." msgstr "" -#: ../../../build/NEWS:17953 +#: ../../../build/NEWS:18176 msgid "" "`bpo-15068 `__: Got rid of excessive " "buffering in the fileinput module. The bufsize parameter is no longer used." msgstr "" -#: ../../../build/NEWS:17982 +#: ../../../build/NEWS:18205 msgid "" "`bpo-26367 `__: importlib.__import__() " "raises SystemError like builtins.__import__() when ``level`` is specified " "but without an accompanying package specified." msgstr "" -#: ../../../build/NEWS:18041 +#: ../../../build/NEWS:18264 msgid "" "`bpo-17633 `__: Improve zipimport's " "support for namespace packages." msgstr "" -#: ../../../build/NEWS:18140 +#: ../../../build/NEWS:18363 msgid "" "`bpo-27223 `__: asyncio: Fix _read_ready" " and _write_ready to respect _conn_lost. Patch by Łukasz Langa." msgstr "" -#: ../../../build/NEWS:18143 +#: ../../../build/NEWS:18366 msgid "" "`bpo-22970 `__: asyncio: Fix " "inconsistency cancelling Condition.wait. Patch by David Coles." msgstr "" -#: ../../../build/NEWS:18179 +#: ../../../build/NEWS:18402 msgid "" "`bpo-21703 `__: Add test for IDLE's undo" " delegator. Original patch by Saimadhav Heblikar ." msgstr "" -#: ../../../build/NEWS:18215 +#: ../../../build/NEWS:18438 msgid "" "`bpo-25500 `__: Fix documentation to not" " claim that __import__ is searched for in the global scope." msgstr "" -#: ../../../build/NEWS:18236 +#: ../../../build/NEWS:18459 msgid "" "`bpo-25940 `__: Changed test_ssl to use " "self-signed.pythontest.net. This avoids relying on svn.python.org, which " "recently changed root certificate." msgstr "" -#: ../../../build/NEWS:18259 +#: ../../../build/NEWS:18482 msgid "" "`bpo-21668 `__: Link audioop, _datetime," " _ctypes_test modules to libm, except on Mac OS X. Patch written by Xavier " "de Gaye." msgstr "" -#: ../../../build/NEWS:18283 +#: ../../../build/NEWS:18506 msgid "" "`bpo-25348 `__: Added ``--pgo`` and " "``--pgo-job`` arguments to ``PCbuild\\build.bat`` for building with Profile-" @@ -26161,43 +26584,43 @@ msgid "" "deprecated, and simply calls ``PCbuild\\build.bat --pgo %*``." msgstr "" -#: ../../../build/NEWS:18344 +#: ../../../build/NEWS:18567 msgid "Python 3.5.1 final" msgstr "Python 3.5.1 final" -#: ../../../build/NEWS:18346 +#: ../../../build/NEWS:18569 msgid "*Release date: 2015-12-06*" msgstr "*Tanggal rilis: 2015-12-06*" -#: ../../../build/NEWS:18357 +#: ../../../build/NEWS:18580 msgid "" "`bpo-25715 `__: Python 3.5.1 installer " "shows wrong upgrade path and incorrect logic for launcher detection." msgstr "" -#: ../../../build/NEWS:18362 +#: ../../../build/NEWS:18585 msgid "Python 3.5.1 release candidate 1" msgstr "Python 3.5.1 kandidat rilis 1" -#: ../../../build/NEWS:18364 +#: ../../../build/NEWS:18587 msgid "*Release date: 2015-11-22*" msgstr "*Tanggal rilis: 2015-11-22*" -#: ../../../build/NEWS:18423 +#: ../../../build/NEWS:18646 msgid "" "`bpo-25182 `__: The stdprinter (used as " "sys.stderr before the io module is imported at startup) now uses the " "backslashreplace error handler." msgstr "" -#: ../../../build/NEWS:18426 +#: ../../../build/NEWS:18649 msgid "" "`bpo-25131 `__: Make the line number and" " column offset of set/dict literals and comprehensions correspond to the " "opening brace." msgstr "" -#: ../../../build/NEWS:18429 +#: ../../../build/NEWS:18652 msgid "" "`bpo-25150 `__: Hide the private " "_Py_atomic_xxx symbols from the public Python.h header to fix a compilation " @@ -26205,38 +26628,38 @@ msgid "" "PyThreadState_Get() to avoid ABI incompatibilities." msgstr "" -#: ../../../build/NEWS:18453 +#: ../../../build/NEWS:18676 msgid "" "`bpo-25590 `__: In the Readline " "completer, only call getattr() once per attribute." msgstr "" -#: ../../../build/NEWS:18531 +#: ../../../build/NEWS:18754 msgid "" "`bpo-24483 `__: C implementation of " "functools.lru_cache() now calculates key's hash only once." msgstr "" -#: ../../../build/NEWS:18534 +#: ../../../build/NEWS:18757 msgid "" "`bpo-22958 `__: Constructor and update " "method of weakref.WeakValueDictionary now accept the self and the dict " "keyword arguments." msgstr "" -#: ../../../build/NEWS:18537 +#: ../../../build/NEWS:18760 msgid "" "`bpo-22609 `__: Constructor of " "collections.UserDict now accepts the self keyword argument." msgstr "" -#: ../../../build/NEWS:18540 +#: ../../../build/NEWS:18763 msgid "" "`bpo-25111 `__: Fixed comparison of " "traceback.FrameSummary." msgstr "" -#: ../../../build/NEWS:18542 +#: ../../../build/NEWS:18765 msgid "" "`bpo-25262 `__: Added support for " "BINBYTES8 opcode in Python implementation of unpickler. Highest 32 bits of " @@ -26244,30 +26667,30 @@ msgid "" " on 32-bit platforms in C implementation." msgstr "" -#: ../../../build/NEWS:18547 +#: ../../../build/NEWS:18770 msgid "" "`bpo-25034 `__: Fix string.Formatter " "problem with auto-numbering and nested format_specs. Patch by Anthon van der" " Neut." msgstr "" -#: ../../../build/NEWS:18550 +#: ../../../build/NEWS:18773 msgid "" "`bpo-25233 `__: Rewrite the guts of " "asyncio.Queue and asyncio.Semaphore to be more understandable and correct." msgstr "" -#: ../../../build/NEWS:18559 +#: ../../../build/NEWS:18782 msgid "" "`bpo-23329 `__: Allow the ssl module to " "be built with older versions of LibreSSL." msgstr "" -#: ../../../build/NEWS:18562 +#: ../../../build/NEWS:18785 msgid "Prevent overflow in _Unpickler_Read." msgstr "Cegah *overflow* di _Unpickler_Read." -#: ../../../build/NEWS:18564 +#: ../../../build/NEWS:18787 msgid "" "`bpo-25047 `__: The XML encoding " "declaration written by Element Tree now respects the letter case given by " @@ -26275,26 +26698,26 @@ msgid "" "like \"UTF-8\", which worked in Python 2." msgstr "" -#: ../../../build/NEWS:18568 +#: ../../../build/NEWS:18791 msgid "" "`bpo-25135 `__: Make deque_clear() safer" " by emptying the deque before clearing. This helps avoid possible reentrancy" " issues." msgstr "" -#: ../../../build/NEWS:18571 +#: ../../../build/NEWS:18794 msgid "" "`bpo-19143 `__: platform module now " "reads Windows version from kernel32.dll to avoid compatibility shims." msgstr "" -#: ../../../build/NEWS:18574 +#: ../../../build/NEWS:18797 msgid "" "`bpo-25092 `__: Fix datetime.strftime() " "failure when errno was already set to EINVAL." msgstr "" -#: ../../../build/NEWS:18577 +#: ../../../build/NEWS:18800 msgid "" "`bpo-23517 `__: Fix rounding in " "fromtimestamp() and utcfromtimestamp() methods of datetime.datetime: " @@ -26306,27 +26729,27 @@ msgid "" "mode used by round(float) for example." msgstr "" -#: ../../../build/NEWS:18586 +#: ../../../build/NEWS:18809 msgid "" "`bpo-25155 `__: Fix " "datetime.datetime.now() and datetime.datetime.utcnow() on Windows to support" " date after year 2038. It was a regression introduced in Python 3.5.0." msgstr "" -#: ../../../build/NEWS:18590 +#: ../../../build/NEWS:18813 msgid "" "`bpo-25108 `__: Omitted internal frames " "in traceback functions print_stack(), format_stack(), and extract_stack() " "called without arguments." msgstr "" -#: ../../../build/NEWS:18593 +#: ../../../build/NEWS:18816 msgid "" "`bpo-25118 `__: Fix a regression of " "Python 3.5.0 in os.waitpid() on Windows." msgstr "" -#: ../../../build/NEWS:18595 +#: ../../../build/NEWS:18818 msgid "" "`bpo-24684 `__: " "socket.socket.getaddrinfo() now calls PyUnicode_AsEncodedString() instead of" @@ -26336,46 +26759,46 @@ msgid "" " of the string." msgstr "" -#: ../../../build/NEWS:18601 +#: ../../../build/NEWS:18824 msgid "" "`bpo-25060 `__: Correctly compute stack " "usage of the BUILD_MAP opcode." msgstr "" -#: ../../../build/NEWS:18603 +#: ../../../build/NEWS:18826 msgid "" "`bpo-24857 `__: Comparing call_args to a" " long sequence now correctly returns a boolean result instead of raising an " "exception. Patch by A Kaptur." msgstr "" -#: ../../../build/NEWS:18606 +#: ../../../build/NEWS:18829 msgid "" "`bpo-23144 `__: Make sure that " "HTMLParser.feed() returns all the data, even when convert_charrefs is True." msgstr "" -#: ../../../build/NEWS:18609 +#: ../../../build/NEWS:18832 msgid "" "`bpo-24982 `__: shutil.make_archive() " "with the \"zip\" format now adds entries for directories (including empty " "directories) in ZIP file." msgstr "" -#: ../../../build/NEWS:18612 +#: ../../../build/NEWS:18835 msgid "" "`bpo-25019 `__: Fixed a crash caused by " "setting non-string key of expat parser. Based on patch by John Leitch." msgstr "" -#: ../../../build/NEWS:18615 +#: ../../../build/NEWS:18838 msgid "" "`bpo-16180 `__: Exit pdb if file has " "syntax error, instead of trapping user in an infinite loop. Patch by Xavier" " de Gaye." msgstr "" -#: ../../../build/NEWS:18618 +#: ../../../build/NEWS:18841 msgid "" "`bpo-24891 `__: Fix a race condition at " "Python startup if the file descriptor of stdin (0), stdout (1) or stderr (2)" @@ -26385,69 +26808,69 @@ msgid "" "Marco Paolini." msgstr "" -#: ../../../build/NEWS:18624 +#: ../../../build/NEWS:18847 msgid "" "`bpo-24992 `__: Fix error handling and a" " race condition (related to garbage collection) in collections.OrderedDict " "constructor." msgstr "" -#: ../../../build/NEWS:18627 +#: ../../../build/NEWS:18850 msgid "" "`bpo-24881 `__: Fixed setting binary " "mode in Python implementation of FileIO on Windows and Cygwin. Patch from " "Akira Li." msgstr "" -#: ../../../build/NEWS:18643 +#: ../../../build/NEWS:18866 msgid "" "`bpo-21112 `__: Fix regression in " "unittest.expectedFailure on subclasses. Patch from Berker Peksag." msgstr "" -#: ../../../build/NEWS:18646 +#: ../../../build/NEWS:18869 msgid "" "`bpo-24764 `__: " "cgi.FieldStorage.read_multi() now ignores the Content-Length header in part " "headers. Patch written by Peter Landry and reviewed by Pierre Quentel." msgstr "" -#: ../../../build/NEWS:18650 ../../../build/NEWS:18915 +#: ../../../build/NEWS:18873 ../../../build/NEWS:19138 msgid "" "`bpo-24913 `__: Fix overrun error in " "deque.index(). Found by John Leitch and Bryce Darling." msgstr "" -#: ../../../build/NEWS:18653 +#: ../../../build/NEWS:18876 msgid "" "`bpo-24774 `__: Fix docstring in " "http.server.test. Patch from Chiu-Hsiang Hsu." msgstr "" -#: ../../../build/NEWS:18655 +#: ../../../build/NEWS:18878 msgid "" "`bpo-21159 `__: Improve message in " "configparser.InterpolationMissingOptionError. Patch from Łukasz Langa." msgstr "" -#: ../../../build/NEWS:18658 +#: ../../../build/NEWS:18881 msgid "" "`bpo-20362 `__: Honour " "TestCase.longMessage correctly in assertRegex. Patch from Ilia Kurenkov." msgstr "" -#: ../../../build/NEWS:18661 +#: ../../../build/NEWS:18884 msgid "" "`bpo-23572 `__: Fixed " "functools.singledispatch on classes with falsy metaclasses. Patch by Ethan " "Furman." msgstr "" -#: ../../../build/NEWS:18664 +#: ../../../build/NEWS:18887 msgid "asyncio: ensure_future() now accepts awaitable objects." msgstr "" -#: ../../../build/NEWS:18752 +#: ../../../build/NEWS:18975 msgid "" "`bpo-16893 `__: Replace help.txt with " "help.html for Idle doc display. The new idlelib/help.html is rstripped " @@ -26457,7 +26880,7 @@ msgid "" "EditorWindow.HelpDialog class and helt.txt file are deprecated." msgstr "" -#: ../../../build/NEWS:18769 +#: ../../../build/NEWS:18992 msgid "" "`bpo-12067 `__: Rewrite Comparisons " "section in the Expressions chapter of the language reference. Some of the " @@ -26467,196 +26890,196 @@ msgid "" "suggestions for user-defined classes. Patch from Andy Maier." msgstr "" -#: ../../../build/NEWS:18779 +#: ../../../build/NEWS:19002 msgid "" "`bpo-23725 `__: Overhaul tempfile docs. " "Note deprecated status of mktemp. Patch from Zbigniew Jędrzejewski-Szmek." msgstr "" -#: ../../../build/NEWS:18782 +#: ../../../build/NEWS:19005 msgid "" "`bpo-24808 `__: Update the types of some" " PyTypeObject fields. Patch by Joseph Weston." msgstr "" -#: ../../../build/NEWS:18785 +#: ../../../build/NEWS:19008 msgid "" "`bpo-22812 `__: Fix unittest discovery " "examples. Patch from Pam McA'Nulty." msgstr "" -#: ../../../build/NEWS:18792 +#: ../../../build/NEWS:19015 msgid "" "`bpo-25099 `__: Make test_compileall not" " fail when an entry on sys.path cannot be written to (commonly seen in " "administrative installs on Windows)." msgstr "" -#: ../../../build/NEWS:18795 +#: ../../../build/NEWS:19018 msgid "" "`bpo-23919 `__: Prevents assert dialogs " "appearing in the test suite." msgstr "" -#: ../../../build/NEWS:18803 +#: ../../../build/NEWS:19026 msgid "" "`bpo-24915 `__: Add LLVM support for PGO" " builds and use the test suite to generate the profile data. Initial patch " "by Alecsandru Patrascu of Intel." msgstr "" -#: ../../../build/NEWS:18806 +#: ../../../build/NEWS:19029 msgid "" "`bpo-24910 `__: Windows MSIs now have " "unique display names." msgstr "" -#: ../../../build/NEWS:18814 +#: ../../../build/NEWS:19037 msgid "" "`bpo-25450 `__: Updates shortcuts to " "start Python in installation directory." msgstr "" -#: ../../../build/NEWS:18816 +#: ../../../build/NEWS:19039 msgid "" "`bpo-25164 `__: Changes default all-" "users install directory to match per-user directory." msgstr "" -#: ../../../build/NEWS:18819 +#: ../../../build/NEWS:19042 msgid "" "`bpo-25143 `__: Improves installer error" " messages for unsupported platforms." msgstr "" -#: ../../../build/NEWS:18821 +#: ../../../build/NEWS:19044 msgid "" "`bpo-25163 `__: Display correct " "directory in installer when using non-default settings." msgstr "" -#: ../../../build/NEWS:18824 +#: ../../../build/NEWS:19047 msgid "" "`bpo-25361 `__: Disables use of SSE2 " "instructions in Windows 32-bit build" msgstr "" -#: ../../../build/NEWS:18826 +#: ../../../build/NEWS:19049 msgid "" "`bpo-25089 `__: Adds logging to " "installer for case where launcher is not selected on upgrade." msgstr "" -#: ../../../build/NEWS:18829 +#: ../../../build/NEWS:19052 msgid "" "`bpo-25165 `__: Windows uninstallation " "should not remove launcher if other versions remain" msgstr "" -#: ../../../build/NEWS:18832 +#: ../../../build/NEWS:19055 msgid "" "`bpo-25112 `__: py.exe launcher is " "missing icons" msgstr "" -#: ../../../build/NEWS:18834 +#: ../../../build/NEWS:19057 msgid "" "`bpo-25102 `__: Windows installer does " "not precompile for -O or -OO." msgstr "" -#: ../../../build/NEWS:18836 +#: ../../../build/NEWS:19059 msgid "" "`bpo-25081 `__: Makes Back button in " "installer go back to upgrade page when upgrading." msgstr "" -#: ../../../build/NEWS:18839 +#: ../../../build/NEWS:19062 msgid "" "`bpo-25091 `__: Increases font size of " "the installer." msgstr "" -#: ../../../build/NEWS:18841 +#: ../../../build/NEWS:19064 msgid "" "`bpo-25126 `__: Clarifies that the non-" "web installer will download some components." msgstr "" -#: ../../../build/NEWS:18844 +#: ../../../build/NEWS:19067 msgid "" "`bpo-25213 `__: Restores " "requestedExecutionLevel to manifest to disable UAC virtualization." msgstr "" -#: ../../../build/NEWS:18856 +#: ../../../build/NEWS:19079 msgid "Python 3.5.0 final" msgstr "Python 3.5.0 final" -#: ../../../build/NEWS:18858 +#: ../../../build/NEWS:19081 msgid "*Release date: 2015-09-13*" msgstr "*Tanggal rilis: 2015-09-13*" -#: ../../../build/NEWS:18863 +#: ../../../build/NEWS:19086 msgid "" "`bpo-25071 `__: Windows installer should" " not require TargetDir parameter when installing quietly." msgstr "" -#: ../../../build/NEWS:18868 +#: ../../../build/NEWS:19091 msgid "Python 3.5.0 release candidate 4" msgstr "Python 3.5.0 kandidat rilis 4" -#: ../../../build/NEWS:18870 +#: ../../../build/NEWS:19093 msgid "*Release date: 2015-09-09*" msgstr "*Tanggal rilis: 2015-09-09*" -#: ../../../build/NEWS:18875 +#: ../../../build/NEWS:19098 msgid "" "`bpo-25029 `__: Fixes MemoryError in " "test_strptime." msgstr "" -#: ../../../build/NEWS:18880 +#: ../../../build/NEWS:19103 msgid "" "`bpo-25027 `__: Reverts partial-static " "build options and adds vcruntime140.dll to Windows installation." msgstr "" -#: ../../../build/NEWS:18885 +#: ../../../build/NEWS:19108 msgid "Python 3.5.0 release candidate 3" msgstr "Python 3.5.0 kandidat rilis 3" -#: ../../../build/NEWS:18887 +#: ../../../build/NEWS:19110 msgid "*Release date: 2015-09-07*" msgstr "*Tanggal rilis: 2015-09-07*" -#: ../../../build/NEWS:18892 +#: ../../../build/NEWS:19115 msgid "" "`bpo-24305 `__: Prevent import subsystem" " stack frames from being counted by the warnings.warn(stacklevel=) " "parameter." msgstr "" -#: ../../../build/NEWS:18895 +#: ../../../build/NEWS:19118 msgid "" "`bpo-24912 `__: Prevent __class__ " "assignment to immutable built-in objects." msgstr "" -#: ../../../build/NEWS:18897 +#: ../../../build/NEWS:19120 msgid "" "`bpo-24975 `__: Fix AST compilation for " ":pep:`448` syntax." msgstr "" -#: ../../../build/NEWS:18902 +#: ../../../build/NEWS:19125 msgid "" "`bpo-24917 `__: time_strftime() buffer " "over-read." msgstr "" -#: ../../../build/NEWS:18904 +#: ../../../build/NEWS:19127 msgid "" "`bpo-24748 `__: To resolve a " "compatibility problem found with py2exe and pywin32, imp.load_dynamic() once" @@ -26664,180 +27087,180 @@ msgid "" " themselves with extension modules. Patch by Petr Viktorin." msgstr "" -#: ../../../build/NEWS:18909 +#: ../../../build/NEWS:19132 msgid "" "`bpo-24635 `__: Fixed a bug in typing.py" " where isinstance([], typing.Iterable) would return True once, then False on" " subsequent calls." msgstr "" -#: ../../../build/NEWS:18912 +#: ../../../build/NEWS:19135 msgid "" "`bpo-24989 `__: Fixed buffer overread in" " BytesIO.readline() if a position is set beyond size. Based on patch by " "John Leitch." msgstr "" -#: ../../../build/NEWS:18920 +#: ../../../build/NEWS:19143 msgid "Python 3.5.0 release candidate 2" msgstr "Python 3.5.0 kandidat rilis 2" -#: ../../../build/NEWS:18922 +#: ../../../build/NEWS:19145 msgid "*Release date: 2015-08-25*" msgstr "*Tanggal rilis: 2015-08-25*" -#: ../../../build/NEWS:18927 +#: ../../../build/NEWS:19150 msgid "" "`bpo-24769 `__: Interpreter now starts " "properly when dynamic loading is disabled. Patch by Petr Viktorin." msgstr "" -#: ../../../build/NEWS:18930 +#: ../../../build/NEWS:19153 msgid "" "`bpo-21167 `__: NAN operations are now " "handled correctly when python is compiled with ICC even if -fp-model strict " "is not specified." msgstr "" -#: ../../../build/NEWS:18933 +#: ../../../build/NEWS:19156 msgid "" "`bpo-24492 `__: A \"package\" lacking a " "__name__ attribute when trying to perform a ``from .. import ...`` statement" " will trigger an ImportError instead of an AttributeError." msgstr "" -#: ../../../build/NEWS:18940 +#: ../../../build/NEWS:19163 msgid "" "`bpo-24847 `__: Removes vcruntime140.dll" " dependency from Tcl/Tk." msgstr "" -#: ../../../build/NEWS:18942 +#: ../../../build/NEWS:19165 msgid "" "`bpo-24839 `__: platform._syscmd_ver " "raises DeprecationWarning" msgstr "" -#: ../../../build/NEWS:18944 +#: ../../../build/NEWS:19167 msgid "" "`bpo-24867 `__: Fix Task.get_stack() for" " 'async def' coroutines" msgstr "" -#: ../../../build/NEWS:18948 +#: ../../../build/NEWS:19171 msgid "Python 3.5.0 release candidate 1" msgstr "Python 3.5.0 kandidat rilis 1" -#: ../../../build/NEWS:18950 +#: ../../../build/NEWS:19173 msgid "*Release date: 2015-08-09*" msgstr "*Tanggal rilis: 2015-08-09*" -#: ../../../build/NEWS:18955 +#: ../../../build/NEWS:19178 msgid "" "`bpo-24667 `__: Resize odict in all " "cases that the underlying dict resizes." msgstr "" -#: ../../../build/NEWS:18960 +#: ../../../build/NEWS:19183 msgid "" "`bpo-24824 `__: Signatures of " "codecs.encode() and codecs.decode() now are compatible with pydoc." msgstr "" -#: ../../../build/NEWS:18963 +#: ../../../build/NEWS:19186 msgid "" "`bpo-24634 `__: Importing uuid should " "not try to load libc on Windows" msgstr "" -#: ../../../build/NEWS:18965 +#: ../../../build/NEWS:19188 msgid "" "`bpo-24798 `__: _msvccompiler.py doesn't" " properly support manifests" msgstr "" -#: ../../../build/NEWS:18967 +#: ../../../build/NEWS:19190 msgid "" "`bpo-4395 `__: Better testing and " "documentation of binary operators. Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:18970 +#: ../../../build/NEWS:19193 msgid "" "`bpo-23973 `__: Update typing.py from " "GitHub repo." msgstr "" -#: ../../../build/NEWS:18972 +#: ../../../build/NEWS:19195 msgid "" "`bpo-23004 `__: mock_open() now reads " "binary data correctly when the type of read_data is bytes. Initial patch by" " Aaron Hill." msgstr "" -#: ../../../build/NEWS:18975 +#: ../../../build/NEWS:19198 msgid "" "`bpo-23888 `__: Handle fractional time " "in cookie expiry. Patch by ssh." msgstr "" -#: ../../../build/NEWS:18977 +#: ../../../build/NEWS:19200 msgid "" "`bpo-23652 `__: Make it possible to " "compile the select module against the libc headers from the Linux Standard " "Base, which do not include some EPOLL macros. Patch by Matt Frank." msgstr "" -#: ../../../build/NEWS:18981 +#: ../../../build/NEWS:19204 msgid "" "`bpo-22932 `__: Fix timezones in " "email.utils.formatdate. Patch from Dmitry Shachnev." msgstr "" -#: ../../../build/NEWS:18984 +#: ../../../build/NEWS:19207 msgid "" "`bpo-23779 `__: imaplib raises TypeError" " if authenticator tries to abort. Patch from Craig Holmquist." msgstr "" -#: ../../../build/NEWS:18987 +#: ../../../build/NEWS:19210 msgid "" "`bpo-23319 `__: Fix " "ctypes.BigEndianStructure, swap correctly bytes. Patch written by Matthieu " "Gautier." msgstr "" -#: ../../../build/NEWS:18990 +#: ../../../build/NEWS:19213 msgid "" "`bpo-23254 `__: Document how to close " "the TCPServer listening socket. Patch from Martin Panter." msgstr "" -#: ../../../build/NEWS:18993 +#: ../../../build/NEWS:19216 msgid "" "`bpo-19450 `__: Update Windows and OS X " "installer builds to use SQLite 3.8.11." msgstr "" -#: ../../../build/NEWS:18995 +#: ../../../build/NEWS:19218 msgid "" "`bpo-17527 `__: Add PATCH to " "wsgiref.validator. Patch from Luca Sbardella." msgstr "" -#: ../../../build/NEWS:18997 +#: ../../../build/NEWS:19220 msgid "" "`bpo-24791 `__: Fix grammar regression " "for call syntax: 'g(\\*a or b)'." msgstr "" -#: ../../../build/NEWS:19002 +#: ../../../build/NEWS:19225 msgid "" "`bpo-23672 `__: Allow Idle to edit and " "run files with astral chars in name. Patch by Mohd Sanad Zaki Rizvi." msgstr "" -#: ../../../build/NEWS:19005 +#: ../../../build/NEWS:19228 msgid "" "`bpo-24745 `__: Idle editor default " "font. Switch from Courier to platform-sensitive TkFixedFont. This should " @@ -26846,20 +27269,20 @@ msgid "" "Window]. Patch by Mark Roseman." msgstr "" -#: ../../../build/NEWS:19011 +#: ../../../build/NEWS:19234 msgid "" "`bpo-21192 `__: Idle editor. When a file" " is run, put its name in the restart bar. Do not print false prompts. " "Original patch by Adnan Umer." msgstr "" -#: ../../../build/NEWS:19014 +#: ../../../build/NEWS:19237 msgid "" "`bpo-13884 `__: Idle menus. Remove " "tearoff lines. Patch by Roger Serwy." msgstr "" -#: ../../../build/NEWS:19019 +#: ../../../build/NEWS:19242 msgid "" "`bpo-24129 `__: Clarify the reference " "documentation for name resolution. This includes removing the assumption " @@ -26868,222 +27291,222 @@ msgid "" "by Ivan Levkivskyi." msgstr "" -#: ../../../build/NEWS:19024 +#: ../../../build/NEWS:19247 msgid "" "`bpo-20769 `__: Improve reload() docs. " "Patch by Dorian Pula." msgstr "" -#: ../../../build/NEWS:19026 +#: ../../../build/NEWS:19249 msgid "" "`bpo-23589 `__: Remove duplicate " "sentence from the FAQ. Patch by Yongzhi Pan." msgstr "" -#: ../../../build/NEWS:19028 +#: ../../../build/NEWS:19251 msgid "" "`bpo-24729 `__: Correct IO tutorial to " "match implementation regarding encoding parameter to open function." msgstr "" -#: ../../../build/NEWS:19034 +#: ../../../build/NEWS:19257 msgid "" "`bpo-24751 `__: When running regrtest " "with the ``-w`` command line option, a test run is no longer marked as a " "failure if all tests succeed when re-run." msgstr "" -#: ../../../build/NEWS:19040 +#: ../../../build/NEWS:19263 msgid "Python 3.5.0 beta 4" msgstr "Python 3.5.0 beta 4" -#: ../../../build/NEWS:19042 +#: ../../../build/NEWS:19265 msgid "*Release date: 2015-07-26*" msgstr "*Tanggal rilis: 2015-07-26*" -#: ../../../build/NEWS:19047 +#: ../../../build/NEWS:19270 msgid "" "`bpo-23573 `__: Restored optimization of" " bytes.rfind() and bytearray.rfind() for single-byte argument on Linux." msgstr "" -#: ../../../build/NEWS:19050 +#: ../../../build/NEWS:19273 msgid "" "`bpo-24569 `__: Make :pep:`448` " "dictionary evaluation more consistent." msgstr "" -#: ../../../build/NEWS:19052 +#: ../../../build/NEWS:19275 msgid "" "`bpo-24583 `__: Fix crash when set is " "mutated while being updated." msgstr "" -#: ../../../build/NEWS:19054 +#: ../../../build/NEWS:19277 msgid "" "`bpo-24407 `__: Fix crash when dict is " "mutated while being updated." msgstr "" -#: ../../../build/NEWS:19056 +#: ../../../build/NEWS:19279 msgid "" "`bpo-24619 `__: New approach for " "tokenizing async/await. As a consequence, it is now possible to have one-" "line 'async def foo(): await ..' functions." msgstr "" -#: ../../../build/NEWS:19059 +#: ../../../build/NEWS:19282 msgid "" "`bpo-24687 `__: Plug refleak on " "SyntaxError in function parameters annotations." msgstr "" -#: ../../../build/NEWS:19061 +#: ../../../build/NEWS:19284 msgid "" "`bpo-15944 `__: memoryview: Allow " "arbitrary formats when casting to bytes. Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:19067 +#: ../../../build/NEWS:19290 msgid "" "`bpo-23441 `__: rcompleter now prints a " "tab character instead of displaying possible completions for an empty word." " Initial patch by Martin Sekera." msgstr "" -#: ../../../build/NEWS:19070 +#: ../../../build/NEWS:19293 msgid "" "`bpo-24683 `__: Fixed crashes in _json " "functions called with arguments of inappropriate type." msgstr "" -#: ../../../build/NEWS:19073 +#: ../../../build/NEWS:19296 msgid "" "`bpo-21697 `__: shutil.copytree() now " "correctly handles symbolic links that point to directories. Patch by " "Eduardo Seabra and Thomas Kluyver." msgstr "" -#: ../../../build/NEWS:19076 +#: ../../../build/NEWS:19299 msgid "" "`bpo-14373 `__: Fixed segmentation fault" " when gc.collect() is called during constructing lru_cache (C " "implementation)." msgstr "" -#: ../../../build/NEWS:19079 +#: ../../../build/NEWS:19302 msgid "" "`bpo-24695 `__: Fix a regression in " "traceback.print_exception(). If exc_traceback is None we shouldn't print a " "traceback header like described in the documentation." msgstr "" -#: ../../../build/NEWS:19083 +#: ../../../build/NEWS:19306 msgid "" "`bpo-24620 `__: Random.setstate() now " "validates the value of state last element." msgstr "" -#: ../../../build/NEWS:19086 +#: ../../../build/NEWS:19309 msgid "" "`bpo-22485 `__: Fixed an issue that " "caused `inspect.getsource` to return incorrect results on nested functions." msgstr "" -#: ../../../build/NEWS:19089 +#: ../../../build/NEWS:19312 msgid "" "`bpo-22153 `__: Improve unittest docs. " "Patch from Martin Panter and evilzero." msgstr "" -#: ../../../build/NEWS:19091 +#: ../../../build/NEWS:19314 msgid "" "`bpo-24580 `__: Symbolic group " "references to open group in re patterns now are explicitly forbidden as well" " as numeric group references." msgstr "" -#: ../../../build/NEWS:19094 +#: ../../../build/NEWS:19317 msgid "" "`bpo-24206 `__: Fixed __eq__ and __ne__ " "methods of inspect classes." msgstr "" -#: ../../../build/NEWS:19096 +#: ../../../build/NEWS:19319 msgid "" "`bpo-24631 `__: Fixed regression in the " "timeit module with multiline setup." msgstr "" -#: ../../../build/NEWS:19104 +#: ../../../build/NEWS:19327 msgid "" "`bpo-24608 `__: chunk.Chunk.read() now " "always returns bytes, not str." msgstr "" -#: ../../../build/NEWS:19106 +#: ../../../build/NEWS:19329 msgid "" "`bpo-18684 `__: Fixed reading out of the" " buffer in the re module." msgstr "" -#: ../../../build/NEWS:19108 +#: ../../../build/NEWS:19331 msgid "" "`bpo-24259 `__: tarfile now raises a " "ReadError if an archive is truncated inside a data segment." msgstr "" -#: ../../../build/NEWS:19111 +#: ../../../build/NEWS:19334 msgid "" "`bpo-15014 `__: SMTP.auth() and " "SMTP.login() now support RFC 4954's optional initial-response argument to " "the SMTP AUTH command." msgstr "" -#: ../../../build/NEWS:19114 +#: ../../../build/NEWS:19337 msgid "" "`bpo-24669 `__: Fix inspect.getsource() " "for 'async def' functions. Patch by Kai Groner." msgstr "" -#: ../../../build/NEWS:19117 +#: ../../../build/NEWS:19340 msgid "" "`bpo-24688 `__: ast.get_docstring() for " "'async def' functions." msgstr "" -#: ../../../build/NEWS:19122 +#: ../../../build/NEWS:19345 msgid "" "`bpo-24603 `__: Update Windows builds " "and OS X 10.5 installer to use OpenSSL 1.0.2d." msgstr "" -#: ../../../build/NEWS:19127 +#: ../../../build/NEWS:19350 msgid "Python 3.5.0 beta 3" msgstr "Python 3.5.0 beta 3" -#: ../../../build/NEWS:19129 +#: ../../../build/NEWS:19352 msgid "*Release date: 2015-07-05*" msgstr "*Tanggal rilis: 2015-07-05*" -#: ../../../build/NEWS:19134 +#: ../../../build/NEWS:19357 msgid "" "`bpo-24467 `__: Fixed possible buffer " "over-read in bytearray. The bytearray object now always allocates place for " "trailing null byte and it's buffer now is always null-terminated." msgstr "" -#: ../../../build/NEWS:19138 +#: ../../../build/NEWS:19361 msgid "Upgrade to Unicode 8.0.0." msgstr "Pembaruan ke Unicode 8.0.0." -#: ../../../build/NEWS:19140 +#: ../../../build/NEWS:19363 msgid "" "`bpo-24345 `__: Add Py_tp_finalize slot " "for the stable ABI." msgstr "" -#: ../../../build/NEWS:19142 +#: ../../../build/NEWS:19365 msgid "" "`bpo-24400 `__: Introduce a distinct " "type for :pep:`492` coroutines; add types.CoroutineType, " @@ -27097,38 +27520,38 @@ msgid "" "coroutines--use inspect.isawaitable instead." msgstr "" -#: ../../../build/NEWS:19153 +#: ../../../build/NEWS:19376 msgid "" "`bpo-24450 `__: Add gi_yieldfrom to " "generators and cr_await to coroutines. Contributed by Benno Leslie and Yury " "Selivanov." msgstr "" -#: ../../../build/NEWS:19156 +#: ../../../build/NEWS:19379 msgid "" "`bpo-19235 `__: Add new RecursionError " "exception. Patch by Georg Brandl." msgstr "" -#: ../../../build/NEWS:19161 +#: ../../../build/NEWS:19384 msgid "" "`bpo-21750 `__: mock_open.read_data can " "now be read from each instance, as it could in Python 3.3." msgstr "" -#: ../../../build/NEWS:19164 +#: ../../../build/NEWS:19387 msgid "" "`bpo-24552 `__: Fix use after free in an" " error case of the _pickle module." msgstr "" -#: ../../../build/NEWS:19166 +#: ../../../build/NEWS:19389 msgid "" "`bpo-24514 `__: tarfile now tolerates " "number fields consisting of only whitespace." msgstr "" -#: ../../../build/NEWS:19169 +#: ../../../build/NEWS:19392 msgid "" "`bpo-19176 `__: Fixed doctype() related " "bugs in C implementation of ElementTree. A deprecation warning no longer " @@ -27137,92 +27560,92 @@ msgid "" "target's doctype() is called. Based on patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:19175 +#: ../../../build/NEWS:19398 msgid "" "`bpo-20387 `__: Restore semantic round-" "trip correctness in tokenize/untokenize for tab-indented blocks." msgstr "" -#: ../../../build/NEWS:19178 +#: ../../../build/NEWS:19401 msgid "" "`bpo-24456 `__: Fixed possible buffer " "over-read in adpcm2lin() and lin2adpcm() functions of the audioop module." msgstr "" -#: ../../../build/NEWS:19181 +#: ../../../build/NEWS:19404 msgid "" "`bpo-24336 `__: The contextmanager " "decorator now works with functions with keyword arguments called \"func\" " "and \"self\". Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:19184 +#: ../../../build/NEWS:19407 msgid "" "`bpo-24522 `__: Fix possible integer " "overflow in json accelerator module." msgstr "" -#: ../../../build/NEWS:19186 +#: ../../../build/NEWS:19409 msgid "" "`bpo-24489 `__: ensure a previously set " "C errno doesn't disturb cmath.polar()." msgstr "" -#: ../../../build/NEWS:19188 +#: ../../../build/NEWS:19411 msgid "" "`bpo-24408 `__: Fixed AttributeError in " "measure() and metrics() methods of tkinter.Font." msgstr "" -#: ../../../build/NEWS:19191 +#: ../../../build/NEWS:19414 msgid "" "`bpo-14373 `__: C implementation of " "functools.lru_cache() now can be used with methods." msgstr "" -#: ../../../build/NEWS:19194 +#: ../../../build/NEWS:19417 msgid "" "`bpo-24347 `__: Set KeyError if " "PyDict_GetItemWithError returns NULL." msgstr "" -#: ../../../build/NEWS:19196 +#: ../../../build/NEWS:19419 msgid "" "`bpo-24348 `__: Drop superfluous " "incref/decref." msgstr "" -#: ../../../build/NEWS:19198 +#: ../../../build/NEWS:19421 msgid "" "`bpo-24359 `__: Check for changed " "OrderedDict size during iteration." msgstr "" -#: ../../../build/NEWS:19200 +#: ../../../build/NEWS:19423 msgid "" "`bpo-24368 `__: Support keyword " "arguments in OrderedDict methods." msgstr "" -#: ../../../build/NEWS:19202 +#: ../../../build/NEWS:19425 msgid "" "`bpo-24362 `__: Simplify the C " "OrderedDict fast nodes resize logic." msgstr "" -#: ../../../build/NEWS:19204 +#: ../../../build/NEWS:19427 msgid "" "`bpo-24377 `__: Fix a ref leak in " "OrderedDict.__repr__." msgstr "" -#: ../../../build/NEWS:19206 +#: ../../../build/NEWS:19429 msgid "" "`bpo-24369 `__: Defend against key-" "changes during iteration." msgstr "" -#: ../../../build/NEWS:19211 +#: ../../../build/NEWS:19434 msgid "" "`bpo-24373 `__: _testmultiphase and " "xxlimited now use tp_traverse and tp_finalize to avoid reference leaks " @@ -27230,41 +27653,41 @@ msgid "" "`__ for details)" msgstr "" -#: ../../../build/NEWS:19218 +#: ../../../build/NEWS:19441 msgid "" "`bpo-24458 `__: Update documentation to " "cover multi-phase initialization for extension modules (PEP 489). Patch by " "Petr Viktorin." msgstr "" -#: ../../../build/NEWS:19221 +#: ../../../build/NEWS:19444 msgid "" "`bpo-24351 `__: Clarify what is meant by" " \"identifier\" in the context of string.Template instances." msgstr "" -#: ../../../build/NEWS:19227 +#: ../../../build/NEWS:19450 msgid "" "`bpo-24432 `__: Update Windows builds " "and OS X 10.5 installer to use OpenSSL 1.0.2c." msgstr "" -#: ../../../build/NEWS:19232 +#: ../../../build/NEWS:19455 msgid "Python 3.5.0 beta 2" msgstr "Python 3.5.0 beta 2" -#: ../../../build/NEWS:19234 +#: ../../../build/NEWS:19457 msgid "*Release date: 2015-05-31*" msgstr "*Tanggal rilis: 2015-05-31*" -#: ../../../build/NEWS:19239 +#: ../../../build/NEWS:19462 msgid "" "`bpo-24284 `__: The startswith and " "endswith methods of the str class no longer return True when finding the " "empty string and the indexes are completely out of range." msgstr "" -#: ../../../build/NEWS:19243 +#: ../../../build/NEWS:19466 msgid "" "`bpo-24115 `__: Update uses of " "PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(), " @@ -27272,229 +27695,229 @@ msgid "" "errors correctly." msgstr "" -#: ../../../build/NEWS:19247 +#: ../../../build/NEWS:19470 msgid "" "`bpo-24328 `__: Fix importing one " "character extension modules." msgstr "" -#: ../../../build/NEWS:19249 +#: ../../../build/NEWS:19472 msgid "" "`bpo-11205 `__: In dictionary displays, " "evaluate the key before the value." msgstr "" -#: ../../../build/NEWS:19251 +#: ../../../build/NEWS:19474 msgid "" "`bpo-24285 `__: Fixed regression that " "prevented importing extension modules from inside packages. Patch by Petr " "Viktorin." msgstr "" -#: ../../../build/NEWS:19257 +#: ../../../build/NEWS:19480 msgid "" "`bpo-23247 `__: Fix a crash in the " "StreamWriter.reset() of CJK codecs." msgstr "" -#: ../../../build/NEWS:19259 +#: ../../../build/NEWS:19482 msgid "" "`bpo-24270 `__: Add math.isclose() and " "cmath.isclose() functions as per :pep:`485`. Contributed by Chris Barker and" " Tal Einat." msgstr "" -#: ../../../build/NEWS:19262 +#: ../../../build/NEWS:19485 msgid "" "`bpo-5633 `__: Fixed timeit when the " "statement is a string and the setup is not." msgstr "" -#: ../../../build/NEWS:19265 +#: ../../../build/NEWS:19488 msgid "" "`bpo-24326 `__: Fixed audioop.ratecv() " "with non-default weightB argument. Original patch by David Moore." msgstr "" -#: ../../../build/NEWS:19268 +#: ../../../build/NEWS:19491 msgid "" "`bpo-16991 `__: Add a C implementation " "of OrderedDict." msgstr "" -#: ../../../build/NEWS:19270 +#: ../../../build/NEWS:19493 msgid "" "`bpo-23934 `__: Fix inspect.signature to" " fail correctly for builtin types lacking signature information. Initial " "patch by James Powell." msgstr "" -#: ../../../build/NEWS:19275 +#: ../../../build/NEWS:19498 msgid "Python 3.5.0 beta 1" msgstr "Python 3.5.0 beta 1" -#: ../../../build/NEWS:19277 +#: ../../../build/NEWS:19500 msgid "*Release date: 2015-05-24*" msgstr "*Tanggal rilis: 2015-05-24*" -#: ../../../build/NEWS:19282 +#: ../../../build/NEWS:19505 msgid "" "`bpo-24276 `__: Fixed optimization of " "property descriptor getter." msgstr "" -#: ../../../build/NEWS:19284 +#: ../../../build/NEWS:19507 msgid "" "`bpo-24268 `__: PEP 489: Multi-phase " "extension module initialization. Patch by Petr Viktorin." msgstr "" -#: ../../../build/NEWS:19287 +#: ../../../build/NEWS:19510 msgid "" "`bpo-23955 `__: Add pyvenv.cfg option to" " suppress registry/environment lookup for generating sys.path on Windows." msgstr "" -#: ../../../build/NEWS:19290 +#: ../../../build/NEWS:19513 msgid "" "`bpo-24257 `__: Fixed system error in " "the comparison of faked types.SimpleNamespace." msgstr "" -#: ../../../build/NEWS:19293 +#: ../../../build/NEWS:19516 msgid "" "`bpo-22939 `__: Fixed integer overflow " "in iterator object. Patch by Clement Rouault." msgstr "" -#: ../../../build/NEWS:19296 +#: ../../../build/NEWS:19519 msgid "" "`bpo-23985 `__: Fix a possible buffer " "overrun when deleting a slice from the front of a bytearray and then " "appending some other bytes data." msgstr "" -#: ../../../build/NEWS:19299 +#: ../../../build/NEWS:19522 msgid "" "`bpo-24102 `__: Fixed exception type " "checking in standard error handlers." msgstr "" -#: ../../../build/NEWS:19301 +#: ../../../build/NEWS:19524 msgid "" "`bpo-15027 `__: The UTF-32 encoder is " "now 3x to 7x faster." msgstr "" -#: ../../../build/NEWS:19303 +#: ../../../build/NEWS:19526 msgid "" "`bpo-23290 `__: Optimize set_merge() for" " cases where the target is empty. (Contributed by Serhiy Storchaka.)" msgstr "" -#: ../../../build/NEWS:19306 +#: ../../../build/NEWS:19529 msgid "" "`bpo-2292 `__: PEP 448: Additional " "Unpacking Generalizations." msgstr "" -#: ../../../build/NEWS:19308 +#: ../../../build/NEWS:19531 msgid "" "`bpo-24096 `__: Make " "warnings.warn_explicit more robust against mutation of the warnings.filters " "list." msgstr "" -#: ../../../build/NEWS:19311 +#: ../../../build/NEWS:19534 msgid "" "`bpo-23996 `__: Avoid a crash when a " "delegated generator raises an unnormalized StopIteration exception. Patch " "by Stefan Behnel." msgstr "" -#: ../../../build/NEWS:19314 +#: ../../../build/NEWS:19537 msgid "" "`bpo-23910 `__: Optimize property() " "getter calls. Patch by Joe Jevnik." msgstr "" -#: ../../../build/NEWS:19316 +#: ../../../build/NEWS:19539 msgid "" "`bpo-23911 `__: Move path-based " "importlib bootstrap code to a separate frozen module." msgstr "" -#: ../../../build/NEWS:19319 +#: ../../../build/NEWS:19542 msgid "" "`bpo-24192 `__: Fix namespace package " "imports." msgstr "" -#: ../../../build/NEWS:19321 +#: ../../../build/NEWS:19544 msgid "" "`bpo-24022 `__: Fix tokenizer crash when" " processing undecodable source code." msgstr "" -#: ../../../build/NEWS:19323 +#: ../../../build/NEWS:19546 msgid "" "`bpo-9951 `__: Added a hex() method to " "bytes, bytearray, and memoryview." msgstr "" -#: ../../../build/NEWS:19325 +#: ../../../build/NEWS:19548 msgid "" "`bpo-22906 `__: PEP 479: Change " "StopIteration handling inside generators." msgstr "" -#: ../../../build/NEWS:19327 +#: ../../../build/NEWS:19550 msgid "" "`bpo-24017 `__: PEP 492: Coroutines with" " async and await syntax." msgstr "" -#: ../../../build/NEWS:19332 +#: ../../../build/NEWS:19555 msgid "" "`bpo-14373 `__: Added C implementation " "of functools.lru_cache(). Based on patches by Matt Joiner and Alexey " "Kachayev." msgstr "" -#: ../../../build/NEWS:19335 +#: ../../../build/NEWS:19558 msgid "" "`bpo-24230 `__: The tempfile module now " "accepts bytes for prefix, suffix and dir parameters and returns bytes in " "such situations (matching the os module APIs)." msgstr "" -#: ../../../build/NEWS:19339 +#: ../../../build/NEWS:19562 msgid "" "`bpo-22189 `__: collections.UserString " "now supports __getnewargs__(), __rmod__(), casefold(), format_map(), " "isprintable(), and maketrans(). Patch by Joe Jevnik." msgstr "" -#: ../../../build/NEWS:19343 +#: ../../../build/NEWS:19566 msgid "" "`bpo-24244 `__: Prevents termination " "when an invalid format string is encountered on Windows in strftime." msgstr "" -#: ../../../build/NEWS:19346 +#: ../../../build/NEWS:19569 msgid "" "`bpo-23973 `__: PEP 484: Add the typing " "module." msgstr "" -#: ../../../build/NEWS:19348 +#: ../../../build/NEWS:19571 msgid "" "`bpo-23086 `__: The " "collections.abc.Sequence() abstract base class added *start* and *stop* " "parameters to the index() mixin. Patch by Devin Jeanpierre." msgstr "" -#: ../../../build/NEWS:19352 +#: ../../../build/NEWS:19575 msgid "" "`bpo-20035 `__: Replaced the " "``tkinter._fix`` module used for setting up the Tcl/Tk environment on " @@ -27502,13 +27925,13 @@ msgid "" "permanent changes to the environment." msgstr "" -#: ../../../build/NEWS:19356 +#: ../../../build/NEWS:19579 msgid "" "`bpo-24257 `__: Fixed segmentation fault" " in sqlite3.Row constructor with faked cursor type." msgstr "" -#: ../../../build/NEWS:19359 +#: ../../../build/NEWS:19582 msgid "" "`bpo-15836 `__: assertRaises(), " "assertRaisesRegex(), assertWarns() and assertWarnsRegex() assertments now " @@ -27516,13 +27939,13 @@ msgid "" "on patch by Daniel Wagner-Hall." msgstr "" -#: ../../../build/NEWS:19363 +#: ../../../build/NEWS:19586 msgid "" "`bpo-9858 `__: Add missing method stubs " "to _io.RawIOBase. Patch by Laura Rupprecht." msgstr "" -#: ../../../build/NEWS:19366 +#: ../../../build/NEWS:19589 msgid "" "`bpo-22955 `__: attrgetter, itemgetter " "and methodcaller objects in the operator module now support pickling. Added" @@ -27530,7 +27953,7 @@ msgid "" "Rosenberg." msgstr "" -#: ../../../build/NEWS:19370 +#: ../../../build/NEWS:19593 msgid "" "`bpo-22107 `__: tempfile.gettempdir() " "and tempfile.mkdtemp() now try again when a directory with the chosen name " @@ -27538,156 +27961,156 @@ msgid "" "early if parent directory is not valid (not exists or is a file) on Windows." msgstr "" -#: ../../../build/NEWS:19375 +#: ../../../build/NEWS:19598 msgid "" "`bpo-23780 `__: Improved error message " "in os.path.join() with single argument." msgstr "" -#: ../../../build/NEWS:19377 +#: ../../../build/NEWS:19600 msgid "" "`bpo-6598 `__: Increased time precision " "and random number range in email.utils.make_msgid() to strengthen the " "uniqueness of the message ID." msgstr "" -#: ../../../build/NEWS:19380 +#: ../../../build/NEWS:19603 msgid "" "`bpo-24091 `__: Fixed various crashes in" " corner cases in C implementation of ElementTree." msgstr "" -#: ../../../build/NEWS:19383 +#: ../../../build/NEWS:19606 msgid "" "`bpo-21931 `__: msilib.FCICreate() now " "raises TypeError in the case of a bad argument instead of a ValueError with " "a bogus FCI error number. Patch by Jeffrey Armstrong." msgstr "" -#: ../../../build/NEWS:19387 +#: ../../../build/NEWS:19610 msgid "" "`bpo-13866 `__: *quote_via* argument " "added to urllib.parse.urlencode." msgstr "" -#: ../../../build/NEWS:19389 +#: ../../../build/NEWS:19612 msgid "" "`bpo-20098 `__: New mangle_from policy " "option for email, default True for compat32, but False for all other " "policies." msgstr "" -#: ../../../build/NEWS:19392 +#: ../../../build/NEWS:19615 msgid "" "`bpo-24211 `__: The email library now " "supports RFC 6532: it can generate headers using utf-8 instead of encoded " "words." msgstr "" -#: ../../../build/NEWS:19395 +#: ../../../build/NEWS:19618 msgid "" "`bpo-16314 `__: Added support for the " "LZMA compression in distutils." msgstr "" -#: ../../../build/NEWS:19397 +#: ../../../build/NEWS:19620 msgid "" "`bpo-21804 `__: poplib now supports RFC " "6856 (UTF8)." msgstr "" -#: ../../../build/NEWS:19399 +#: ../../../build/NEWS:19622 msgid "" "`bpo-18682 `__: Optimized pprint " "functions for builtin scalar types." msgstr "" -#: ../../../build/NEWS:19401 +#: ../../../build/NEWS:19624 msgid "" "`bpo-22027 `__: smtplib now supports RFC" " 6531 (SMTPUTF8)." msgstr "" -#: ../../../build/NEWS:19403 +#: ../../../build/NEWS:19626 msgid "" "`bpo-23488 `__: Random generator objects" " now consume 2x less memory on 64-bit." msgstr "" -#: ../../../build/NEWS:19405 +#: ../../../build/NEWS:19628 msgid "" "`bpo-1322 `__: platform.dist() and " "platform.linux_distribution() functions are now deprecated. Initial patch " "by Vajrasky Kok." msgstr "" -#: ../../../build/NEWS:19408 +#: ../../../build/NEWS:19631 msgid "" "`bpo-22486 `__: Added the math.gcd() " "function. The fractions.gcd() function now is deprecated. Based on patch " "by Mark Dickinson." msgstr "" -#: ../../../build/NEWS:19411 +#: ../../../build/NEWS:19634 msgid "" "`bpo-24064 `__: Property() docstrings " "are now writeable. (Patch by Berker Peksag.)" msgstr "" -#: ../../../build/NEWS:19414 +#: ../../../build/NEWS:19637 msgid "" "`bpo-22681 `__: Added support for the " "koi8_t encoding." msgstr "" -#: ../../../build/NEWS:19416 +#: ../../../build/NEWS:19639 msgid "" "`bpo-22682 `__: Added support for the " "kz1048 encoding." msgstr "" -#: ../../../build/NEWS:19418 +#: ../../../build/NEWS:19641 msgid "" "`bpo-23796 `__: peek and read1 methods " "of BufferedReader now raise ValueError if they called on a closed object. " "Patch by John Hergenroeder." msgstr "" -#: ../../../build/NEWS:19421 +#: ../../../build/NEWS:19644 msgid "" "`bpo-21795 `__: smtpd now supports the " "8BITMIME extension whenever the new *decode_data* constructor argument is " "set to False." msgstr "" -#: ../../../build/NEWS:19424 +#: ../../../build/NEWS:19647 msgid "" "`bpo-24155 `__: optimize heapq.heapify()" " for better cache performance when heapifying large lists." msgstr "" -#: ../../../build/NEWS:19427 +#: ../../../build/NEWS:19650 msgid "" "`bpo-21800 `__: imaplib now supports RFC" " 5161 (enable), RFC 6855 (utf8/internationalized email) and automatically " "encodes non-ASCII usernames and passwords to UTF8." msgstr "" -#: ../../../build/NEWS:19431 +#: ../../../build/NEWS:19654 msgid "" "`bpo-20274 `__: When calling a " "_sqlite.Connection, it now complains if passed any keyword arguments. " "Previously it silently ignored them." msgstr "" -#: ../../../build/NEWS:19434 +#: ../../../build/NEWS:19657 msgid "" "`bpo-20274 `__: Remove ignored and " "erroneous \"kwargs\" parameters from three METH_VARARGS methods on " "_sqlite.Connection." msgstr "" -#: ../../../build/NEWS:19437 +#: ../../../build/NEWS:19660 msgid "" "`bpo-24134 `__: assertRaises(), " "assertRaisesRegex(), assertWarns() and assertWarnsRegex() checks now emits a" @@ -27695,221 +28118,221 @@ msgid "" "is passed in the context manager mode." msgstr "" -#: ../../../build/NEWS:19442 +#: ../../../build/NEWS:19665 msgid "" "`bpo-24018 `__: Add a " "collections.abc.Generator abstract base class. Contributed by Stefan Behnel." msgstr "" -#: ../../../build/NEWS:19445 +#: ../../../build/NEWS:19668 msgid "" "`bpo-23880 `__: Tkinter's getint() and " "getdouble() now support Tcl_Obj. Tkinter's getdouble() now supports any " "numbers (in particular int)." msgstr "" -#: ../../../build/NEWS:19448 +#: ../../../build/NEWS:19671 msgid "" "`bpo-22619 `__: Added negative limit " "support in the traceback module. Based on patch by Dmitry Kazakov." msgstr "" -#: ../../../build/NEWS:19451 +#: ../../../build/NEWS:19674 msgid "" "`bpo-24094 `__: Fix possible crash in " "json.encode with poorly behaved dict subclasses." msgstr "" -#: ../../../build/NEWS:19454 +#: ../../../build/NEWS:19677 msgid "" "`bpo-9246 `__: On POSIX, os.getcwd() now " "supports paths longer than 1025 bytes. Patch written by William Orr." msgstr "" -#: ../../../build/NEWS:19457 +#: ../../../build/NEWS:19680 msgid "" "`bpo-17445 `__: add difflib.diff_bytes()" " to support comparison of byte strings (fixes a regression from Python 2)." msgstr "" -#: ../../../build/NEWS:19460 +#: ../../../build/NEWS:19683 msgid "" "`bpo-23917 `__: Fall back to sequential " "compilation when ProcessPoolExecutor doesn't exist. Patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:19463 +#: ../../../build/NEWS:19686 msgid "" "`bpo-23008 `__: Fixed resolving " "attributes with boolean value is False in pydoc." msgstr "" -#: ../../../build/NEWS:19466 +#: ../../../build/NEWS:19689 msgid "" "Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't increment " "unfinished tasks (this bug was introduced when JoinableQueue was merged with" " Queue)." msgstr "" -#: ../../../build/NEWS:19470 +#: ../../../build/NEWS:19693 msgid "" "`bpo-23908 `__: os functions now reject " "paths with embedded null character on Windows instead of silently truncating" " them." msgstr "" -#: ../../../build/NEWS:19473 +#: ../../../build/NEWS:19696 msgid "" "`bpo-23728 `__: binascii.crc_hqx() could" " return an integer outside of the range 0-0xffff for empty data." msgstr "" -#: ../../../build/NEWS:19476 +#: ../../../build/NEWS:19699 msgid "" "`bpo-23887 `__: urllib.error.HTTPError " "now has a proper repr() representation. Patch by Berker Peksag." msgstr "" -#: ../../../build/NEWS:19479 +#: ../../../build/NEWS:19702 msgid "" "asyncio: New event loop APIs: set_task_factory() and get_task_factory()." msgstr "" -#: ../../../build/NEWS:19481 +#: ../../../build/NEWS:19704 msgid "asyncio: async() function is deprecated in favour of ensure_future()." msgstr "" -#: ../../../build/NEWS:19483 +#: ../../../build/NEWS:19706 msgid "" "`bpo-24178 `__: asyncio.Lock, Condition," " Semaphore, and BoundedSemaphore support new 'async with' syntax. " "Contributed by Yury Selivanov." msgstr "" -#: ../../../build/NEWS:19486 +#: ../../../build/NEWS:19709 msgid "" "`bpo-24179 `__: Support 'async for' for " "asyncio.StreamReader. Contributed by Yury Selivanov." msgstr "" -#: ../../../build/NEWS:19489 +#: ../../../build/NEWS:19712 msgid "" "`bpo-24184 `__: Add AsyncIterator and " "AsyncIterable ABCs to collections.abc. Contributed by Yury Selivanov." msgstr "" -#: ../../../build/NEWS:19492 +#: ../../../build/NEWS:19715 msgid "" "`bpo-22547 `__: Implement informative " "__repr__ for inspect.BoundArguments. Contributed by Yury Selivanov." msgstr "" -#: ../../../build/NEWS:19495 +#: ../../../build/NEWS:19718 msgid "" "`bpo-24190 `__: Implement " "inspect.BoundArgument.apply_defaults() method. Contributed by Yury " "Selivanov." msgstr "" -#: ../../../build/NEWS:19498 +#: ../../../build/NEWS:19721 msgid "" "`bpo-20691 `__: Add 'follow_wrapped' " "argument to inspect.Signature.from_callable() and inspect.signature(). " "Contributed by Yury Selivanov." msgstr "" -#: ../../../build/NEWS:19502 +#: ../../../build/NEWS:19725 msgid "" "`bpo-24248 `__: Deprecate " "inspect.Signature.from_function() and inspect.Signature.from_builtin()." msgstr "" -#: ../../../build/NEWS:19505 +#: ../../../build/NEWS:19728 msgid "" "`bpo-23898 `__: Fix " "inspect.classify_class_attrs() to support attributes with overloaded __eq__ " "and __bool__. Patch by Mike Bayer." msgstr "" -#: ../../../build/NEWS:19508 +#: ../../../build/NEWS:19731 msgid "" "`bpo-24298 `__: Fix inspect.signature() " "to correctly unwrap wrappers around bound methods." msgstr "" -#: ../../../build/NEWS:19514 +#: ../../../build/NEWS:19737 msgid "" "`bpo-23184 `__: remove unused names and " "imports in idlelib. Initial patch by Al Sweigart." msgstr "" -#: ../../../build/NEWS:19520 +#: ../../../build/NEWS:19743 msgid "" "`bpo-21520 `__: test_zipfile no longer " "fails if the word 'bad' appears anywhere in the name of the current " "directory." msgstr "" -#: ../../../build/NEWS:19523 +#: ../../../build/NEWS:19746 msgid "" "`bpo-9517 `__: Move script_helper into " "the support package. Patch by Christie Wilson." msgstr "" -#: ../../../build/NEWS:19529 +#: ../../../build/NEWS:19752 msgid "" "`bpo-22155 `__: Add File Handlers " "subsection with createfilehandler to tkinter doc. Remove obsolete example " "from FAQ. Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:19532 +#: ../../../build/NEWS:19755 msgid "" "`bpo-24029 `__: Document the name " "binding behavior for submodule imports." msgstr "" -#: ../../../build/NEWS:19534 +#: ../../../build/NEWS:19757 msgid "" "`bpo-24077 `__: Fix typo in man page for" " -I command option: -s, not -S" msgstr "" -#: ../../../build/NEWS:19539 +#: ../../../build/NEWS:19762 msgid "" "`bpo-24000 `__: Improved Argument " "Clinic's mapping of converters to legacy \"format units\". Updated the " "documentation to match." msgstr "" -#: ../../../build/NEWS:19542 +#: ../../../build/NEWS:19765 msgid "" "`bpo-24001 `__: Argument Clinic " "converters now use accept={type} instead of types={'type'} to specify the " "types the converter accepts." msgstr "" -#: ../../../build/NEWS:19545 +#: ../../../build/NEWS:19768 msgid "" "`bpo-23330 `__: h2py now supports " "arbitrary filenames in #include." msgstr "" -#: ../../../build/NEWS:19547 +#: ../../../build/NEWS:19770 msgid "" "`bpo-24031 `__: make patchcheck now " "supports git checkouts, too." msgstr "" -#: ../../../build/NEWS:19551 +#: ../../../build/NEWS:19774 msgid "Python 3.5.0 alpha 4" msgstr "Python 3.5.0 alfa 4" -#: ../../../build/NEWS:19553 +#: ../../../build/NEWS:19776 msgid "*Release date: 2015-04-19*" msgstr "*Tanggal rilis: 2015-04-19*" -#: ../../../build/NEWS:19558 +#: ../../../build/NEWS:19781 msgid "" "`bpo-22980 `__: Under Linux, " "GNU/KFreeBSD and the Hurd, C extensions now include the architecture triplet" @@ -27918,26 +28341,26 @@ msgid "" ":pep:`3149`-style information." msgstr "" -#: ../../../build/NEWS:19563 +#: ../../../build/NEWS:19786 msgid "" "`bpo-22631 `__: Added Linux-specific " "socket constant CAN_RAW_FD_FRAMES. Patch courtesy of Joe Jevnik." msgstr "" -#: ../../../build/NEWS:19566 +#: ../../../build/NEWS:19789 msgid "" "`bpo-23731 `__: Implement :pep:`488`: " "removal of .pyo files." msgstr "" -#: ../../../build/NEWS:19568 +#: ../../../build/NEWS:19791 msgid "" "`bpo-23726 `__: Don't enable GC for user" " subclasses of non-GC types that don't add any new fields. Patch by Eugene " "Toder." msgstr "" -#: ../../../build/NEWS:19571 +#: ../../../build/NEWS:19794 msgid "" "`bpo-23309 `__: Avoid a deadlock at " "shutdown if a daemon thread is aborted while it is holding a lock to a " @@ -27945,43 +28368,43 @@ msgid "" "(typically stdout or stderr). A fatal error is emitted instead." msgstr "" -#: ../../../build/NEWS:19576 +#: ../../../build/NEWS:19799 msgid "" "`bpo-22977 `__: Fixed formatting Windows" " error messages on Wine. Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:19579 +#: ../../../build/NEWS:19802 msgid "" "`bpo-23466 `__: %c, %o, %x, and %X in " "bytes formatting now raise TypeError on non-integer input." msgstr "" -#: ../../../build/NEWS:19582 +#: ../../../build/NEWS:19805 msgid "" "`bpo-24044 `__: Fix possible null " "pointer dereference in list.sort in out of memory conditions." msgstr "" -#: ../../../build/NEWS:19585 +#: ../../../build/NEWS:19808 msgid "" "`bpo-21354 `__: PyCFunction_New function" " is exposed by python DLL again." msgstr "" -#: ../../../build/NEWS:19590 +#: ../../../build/NEWS:19813 msgid "" "`bpo-23840 `__: tokenize.open() now " "closes the temporary binary file on error to fix a resource warning." msgstr "" -#: ../../../build/NEWS:19593 +#: ../../../build/NEWS:19816 msgid "" "`bpo-16914 `__: new debuglevel 2 in " "smtplib adds timestamps to debug output." msgstr "" -#: ../../../build/NEWS:19595 +#: ../../../build/NEWS:19818 msgid "" "`bpo-7159 `__: urllib.request now " "supports sending auth credentials automatically after the first 401. This " @@ -27989,39 +28412,39 @@ msgid "" "`__ and supersedes that change." msgstr "" -#: ../../../build/NEWS:19599 +#: ../../../build/NEWS:19822 msgid "" "`bpo-23703 `__: Fix a regression in " "urljoin() introduced in 901e4e52b20a. Patch by Demian Brecht." msgstr "" -#: ../../../build/NEWS:19602 +#: ../../../build/NEWS:19825 msgid "" "`bpo-4254 `__: Adds " "_curses.update_lines_cols(). Patch by Arnon Yaari" msgstr "" -#: ../../../build/NEWS:19604 +#: ../../../build/NEWS:19827 msgid "" "`bpo-19933 `__: Provide default argument" " for ndigits in round. Patch by Vajrasky Kok." msgstr "" -#: ../../../build/NEWS:19607 +#: ../../../build/NEWS:19830 msgid "" "`bpo-23193 `__: Add a numeric_owner " "parameter to tarfile.TarFile.extract and tarfile.TarFile.extractall. Patch " "by Michael Vogt and Eric Smith." msgstr "" -#: ../../../build/NEWS:19610 +#: ../../../build/NEWS:19833 msgid "" "`bpo-23342 `__: Add a subprocess.run() " "function than returns a CalledProcess instance for a more consistent API " "than the existing call* functions." msgstr "" -#: ../../../build/NEWS:19613 +#: ../../../build/NEWS:19836 msgid "" "`bpo-21217 `__: inspect.getsourcelines()" " now tries to compute the start and end lines from the code object, fixing " @@ -28029,49 +28452,49 @@ msgid "" "Thomas Ballinger and Allison Kaptur." msgstr "" -#: ../../../build/NEWS:19617 +#: ../../../build/NEWS:19840 msgid "" "`bpo-24521 `__: Fix possible integer " "overflows in the pickle module." msgstr "" -#: ../../../build/NEWS:19619 +#: ../../../build/NEWS:19842 msgid "" "`bpo-22931 `__: Allow '[' and ']' in " "cookie values." msgstr "" -#: ../../../build/NEWS:19621 +#: ../../../build/NEWS:19844 msgid "" "The keywords attribute of functools.partial is now always a dictionary." msgstr "" -#: ../../../build/NEWS:19623 +#: ../../../build/NEWS:19846 msgid "" "`bpo-23811 `__: Add missing newline to " "the PyCompileError error message. Patch by Alex Shkop." msgstr "" -#: ../../../build/NEWS:19626 +#: ../../../build/NEWS:19849 msgid "" "`bpo-21116 `__: Avoid blowing memory " "when allocating a multiprocessing shared array that's larger than 50% of the" " available RAM. Patch by Médéric Boquien." msgstr "" -#: ../../../build/NEWS:19630 +#: ../../../build/NEWS:19853 msgid "" "`bpo-22982 `__: Improve BOM handling " "when seeking to multiple positions of a writable text file." msgstr "" -#: ../../../build/NEWS:19633 +#: ../../../build/NEWS:19856 msgid "" "`bpo-23464 `__: Removed deprecated " "asyncio JoinableQueue." msgstr "" -#: ../../../build/NEWS:19635 +#: ../../../build/NEWS:19858 msgid "" "`bpo-23529 `__: Limit the size of " "decompressed data when reading from GzipFile, BZ2File or LZMAFile. This " @@ -28080,47 +28503,47 @@ msgid "" "Nikolaus Rath." msgstr "" -#: ../../../build/NEWS:19640 +#: ../../../build/NEWS:19863 msgid "" "`bpo-21859 `__: Added Python " "implementation of io.FileIO." msgstr "" -#: ../../../build/NEWS:19642 +#: ../../../build/NEWS:19865 msgid "" "`bpo-23865 `__: close() methods in " "multiple modules now are idempotent and more robust at shutdown. If they " "need to release multiple resources, all are released even if errors occur." msgstr "" -#: ../../../build/NEWS:19646 +#: ../../../build/NEWS:19869 msgid "" "`bpo-23400 `__: Raise same exception on " "both Python 2 and 3 if sem_open is not available. Patch by Davin Potts." msgstr "" -#: ../../../build/NEWS:19649 +#: ../../../build/NEWS:19872 msgid "" "`bpo-10838 `__: The subprocess now " "module includes SubprocessError and TimeoutError in its list of exported " "names for the users wild enough to use ``from subprocess import *``." msgstr "" -#: ../../../build/NEWS:19653 +#: ../../../build/NEWS:19876 msgid "" "`bpo-23411 `__: Added DefragResult, " "ParseResult, SplitResult, DefragResultBytes, ParseResultBytes, and " "SplitResultBytes to urllib.parse.__all__. Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:19657 +#: ../../../build/NEWS:19880 msgid "" "`bpo-23881 `__: " "urllib.request.ftpwrapper constructor now closes the socket if the FTP " "connection failed to fix a ResourceWarning." msgstr "" -#: ../../../build/NEWS:19660 +#: ../../../build/NEWS:19883 msgid "" "`bpo-23853 `__: " ":meth:`socket.socket.sendall` does no more reset the socket timeout each " @@ -28128,14 +28551,14 @@ msgid "" "duration to send all data." msgstr "" -#: ../../../build/NEWS:19664 +#: ../../../build/NEWS:19887 msgid "" "`bpo-22721 `__: An order of multiline " "pprint output of set or dict containing orderable and non-orderable elements" " no longer depends on iteration order of set or dict." msgstr "" -#: ../../../build/NEWS:19668 +#: ../../../build/NEWS:19891 msgid "" "`bpo-15133 `__: " "_tkinter.tkapp.getboolean() now supports Tcl_Obj and always returns bool. " @@ -28143,45 +28566,45 @@ msgid "" "Tcl_Obj). tkinter.BooleanVar.get() now always returns bool." msgstr "" -#: ../../../build/NEWS:19673 +#: ../../../build/NEWS:19896 msgid "" "`bpo-10590 `__: xml.sax.parseString() " "now supports string argument." msgstr "" -#: ../../../build/NEWS:19675 +#: ../../../build/NEWS:19898 msgid "" "`bpo-23338 `__: Fixed formatting ctypes " "error messages on Cygwin. Patch by Makoto Kato." msgstr "" -#: ../../../build/NEWS:19678 +#: ../../../build/NEWS:19901 msgid "" "`bpo-15582 `__: inspect.getdoc() now " "follows inheritance chains." msgstr "" -#: ../../../build/NEWS:19680 +#: ../../../build/NEWS:19903 msgid "" "`bpo-2175 `__: SAX parsers now support a " "character stream of InputSource object." msgstr "" -#: ../../../build/NEWS:19683 +#: ../../../build/NEWS:19906 msgid "" "`bpo-16840 `__: Tkinter now supports " "64-bit integers added in Tcl 8.4 and arbitrary precision integers added in " "Tcl 8.5." msgstr "" -#: ../../../build/NEWS:19686 +#: ../../../build/NEWS:19909 msgid "" "`bpo-23834 `__: Fix socket.sendto(), use" " the C Py_ssize_t type to store the result of sendto() instead of the C int " "type." msgstr "" -#: ../../../build/NEWS:19689 +#: ../../../build/NEWS:19912 msgid "" "`bpo-23618 `__: " ":meth:`socket.socket.connect` now waits until the connection completes " @@ -28191,45 +28614,45 @@ msgid "" ":exc:`InterruptedError` for non-blocking sockets." msgstr "" -#: ../../../build/NEWS:19695 +#: ../../../build/NEWS:19918 msgid "" "`bpo-21526 `__: Tkinter now supports new" " boolean type in Tcl 8.5." msgstr "" -#: ../../../build/NEWS:19697 +#: ../../../build/NEWS:19920 msgid "" "`bpo-23836 `__: Fix the faulthandler " "module to handle reentrant calls to its signal handlers." msgstr "" -#: ../../../build/NEWS:19700 +#: ../../../build/NEWS:19923 msgid "" "`bpo-23838 `__: linecache now clears the" " cache and returns an empty result on MemoryError." msgstr "" -#: ../../../build/NEWS:19703 +#: ../../../build/NEWS:19926 msgid "" "`bpo-10395 `__: Added " "os.path.commonpath(). Implemented in posixpath and ntpath. Based on patch by" " Rafik Draoui." msgstr "" -#: ../../../build/NEWS:19706 +#: ../../../build/NEWS:19929 msgid "" "`bpo-23611 `__: Serializing more " "\"lookupable\" objects (such as unbound methods or nested classes) now are " "supported with pickle protocols < 4." msgstr "" -#: ../../../build/NEWS:19709 +#: ../../../build/NEWS:19932 msgid "" "`bpo-13583 `__: sqlite3.Row now supports" " slice indexing." msgstr "" -#: ../../../build/NEWS:19711 +#: ../../../build/NEWS:19934 msgid "" "`bpo-18473 `__: Fixed 2to3 and 3to2 " "compatible pickle mappings. Fixed ambiguous reverse mappings. Added many " @@ -28237,7 +28660,7 @@ msgid "" " with full name mapping." msgstr "" -#: ../../../build/NEWS:19715 +#: ../../../build/NEWS:19938 msgid "" "`bpo-23485 `__: select.select() is now " "retried automatically with the recomputed timeout when interrupted by a " @@ -28245,103 +28668,103 @@ msgid "" "part of the :pep:`475`." msgstr "" -#: ../../../build/NEWS:19719 +#: ../../../build/NEWS:19942 msgid "" "`bpo-23752 `__: When built from an " "existing file descriptor, io.FileIO() now only calls fstat() once. Before " "fstat() was called twice, which was not necessary." msgstr "" -#: ../../../build/NEWS:19723 +#: ../../../build/NEWS:19946 msgid "" "`bpo-23704 `__: collections.deque() " "objects now support __add__, __mul__, and __imul__()." msgstr "" -#: ../../../build/NEWS:19726 +#: ../../../build/NEWS:19949 msgid "" "`bpo-23171 `__: csv.Writer.writerow() " "now supports arbitrary iterables." msgstr "" -#: ../../../build/NEWS:19728 +#: ../../../build/NEWS:19951 msgid "" "`bpo-23745 `__: The new email header " "parser now handles duplicate MIME parameter names without error, similar to " "how get_param behaves." msgstr "" -#: ../../../build/NEWS:19731 +#: ../../../build/NEWS:19954 msgid "" "`bpo-22117 `__: Fix os.utime(), it now " "rounds the timestamp towards minus infinity (-inf) instead of rounding " "towards zero." msgstr "" -#: ../../../build/NEWS:19734 +#: ../../../build/NEWS:19957 msgid "" "`bpo-23310 `__: Fix MagicMock's " "initializer to work with __methods__, just like configure_mock(). Patch by " "Kasia Jachim." msgstr "" -#: ../../../build/NEWS:19740 +#: ../../../build/NEWS:19963 msgid "" "`bpo-23817 `__: FreeBSD now uses \"1.0\"" " in the SOVERSION as other operating systems, instead of just \"1\"." msgstr "" -#: ../../../build/NEWS:19743 +#: ../../../build/NEWS:19966 msgid "" "`bpo-23501 `__: Argument Clinic now " "generates code into separate files by default." msgstr "" -#: ../../../build/NEWS:19749 +#: ../../../build/NEWS:19972 msgid "" "`bpo-23799 `__: Added " "test.support.start_threads() for running and cleaning up multiple threads." msgstr "" -#: ../../../build/NEWS:19752 +#: ../../../build/NEWS:19975 msgid "" "`bpo-22390 `__: test.regrtest now emits " "a warning if temporary files or directories are left after running a test." msgstr "" -#: ../../../build/NEWS:19758 +#: ../../../build/NEWS:19981 msgid "" "`bpo-18128 `__: pygettext now uses " "standard +NNNN format in the POT-Creation-Date header." msgstr "" -#: ../../../build/NEWS:19761 +#: ../../../build/NEWS:19984 msgid "" "`bpo-23935 `__: Argument Clinic's " "understanding of format units accepting bytes, bytearrays, and buffers is " "now consistent with both the documentation and the implementation." msgstr "" -#: ../../../build/NEWS:19765 +#: ../../../build/NEWS:19988 msgid "" "`bpo-23944 `__: Argument Clinic now " "wraps long impl prototypes at column 78." msgstr "" -#: ../../../build/NEWS:19767 +#: ../../../build/NEWS:19990 msgid "" "`bpo-20586 `__: Argument Clinic now " "ensures that functions without docstrings have signatures." msgstr "" -#: ../../../build/NEWS:19770 +#: ../../../build/NEWS:19993 msgid "" "`bpo-23492 `__: Argument Clinic now " "generates argument parsing code with PyArg_Parse instead of PyArg_ParseTuple" " if possible." msgstr "" -#: ../../../build/NEWS:19773 +#: ../../../build/NEWS:19996 msgid "" "`bpo-23500 `__: Argument Clinic is now " "smarter about generating the \"#ifndef\" (empty) definition of the methoddef" @@ -28350,21 +28773,21 @@ msgid "" " than immediately after the first use." msgstr "" -#: ../../../build/NEWS:19782 +#: ../../../build/NEWS:20005 msgid "" "`bpo-23998 `__: PyImport_ReInitLock() " "now checks for lock allocation error" msgstr "" -#: ../../../build/NEWS:19786 +#: ../../../build/NEWS:20009 msgid "Python 3.5.0 alpha 3" msgstr "Python 3.5.0 alfa 3" -#: ../../../build/NEWS:19788 +#: ../../../build/NEWS:20011 msgid "*Release date: 2015-03-28*" msgstr "*Tanggal rilis: 2015-03-28*" -#: ../../../build/NEWS:19793 +#: ../../../build/NEWS:20016 msgid "" "`bpo-23573 `__: Increased performance of" " string search operations (str.find, str.index, str.count, the in operator, " @@ -28372,44 +28795,44 @@ msgid "" "UCS4)." msgstr "" -#: ../../../build/NEWS:19797 +#: ../../../build/NEWS:20020 msgid "" "`bpo-23753 `__: Python doesn't support " "anymore platforms without stat() or fstat(), these functions are always " "required." msgstr "" -#: ../../../build/NEWS:19800 +#: ../../../build/NEWS:20023 msgid "" "`bpo-23681 `__: The -b option now " "affects comparisons of bytes with int." msgstr "" -#: ../../../build/NEWS:19802 +#: ../../../build/NEWS:20025 msgid "" "`bpo-23632 `__: Memoryviews now allow " "tuple indexing (including for multi-dimensional memoryviews)." msgstr "" -#: ../../../build/NEWS:19805 +#: ../../../build/NEWS:20028 msgid "" "`bpo-23192 `__: Fixed generator lambdas." " Patch by Bruno Cauet." msgstr "" -#: ../../../build/NEWS:19807 +#: ../../../build/NEWS:20030 msgid "" "`bpo-23629 `__: Fix the default " "__sizeof__ implementation for variable-sized objects." msgstr "" -#: ../../../build/NEWS:19813 +#: ../../../build/NEWS:20036 msgid "" "`bpo-14260 `__: The groupindex attribute" " of regular expression pattern object now is non-modifiable mapping." msgstr "" -#: ../../../build/NEWS:19816 +#: ../../../build/NEWS:20039 msgid "" "`bpo-23792 `__: Ignore KeyboardInterrupt" " when the pydoc pager is active. This mimics the behavior of the standard " @@ -28417,51 +28840,51 @@ msgid "" "itself is still running." msgstr "" -#: ../../../build/NEWS:19820 +#: ../../../build/NEWS:20043 msgid "" "`bpo-23775 `__: pprint() of OrderedDict " "now outputs the same representation as repr()." msgstr "" -#: ../../../build/NEWS:19823 +#: ../../../build/NEWS:20046 msgid "" "`bpo-23765 `__: Removed IsBadStringPtr " "calls in ctypes" msgstr "" -#: ../../../build/NEWS:19825 +#: ../../../build/NEWS:20048 msgid "" "`bpo-22364 `__: Improved some re error " "messages using regex for hints." msgstr "" -#: ../../../build/NEWS:19827 +#: ../../../build/NEWS:20050 msgid "" "`bpo-23742 `__: ntpath.expandvars() no " "longer loses unbalanced single quotes." msgstr "" -#: ../../../build/NEWS:19829 +#: ../../../build/NEWS:20052 msgid "" "`bpo-21717 `__: The zipfile.ZipFile.open" " function now supports 'x' (exclusive creation) mode." msgstr "" -#: ../../../build/NEWS:19832 +#: ../../../build/NEWS:20055 msgid "" "`bpo-21802 `__: The reader in " "BufferedRWPair now is closed even when closing writer failed in " "BufferedRWPair.close()." msgstr "" -#: ../../../build/NEWS:19835 +#: ../../../build/NEWS:20058 msgid "" "`bpo-23622 `__: Unknown escapes in " "regular expressions that consist of ``'\\'`` and ASCII letter now raise a " "deprecation warning and will be forbidden in Python 3.6." msgstr "" -#: ../../../build/NEWS:19839 +#: ../../../build/NEWS:20062 msgid "" "`bpo-23671 `__: string.Template now " "allows specifying the \"self\" parameter as a keyword argument. " @@ -28469,79 +28892,79 @@ msgid "" "\"format_string\" parameters as keyword arguments." msgstr "" -#: ../../../build/NEWS:19843 +#: ../../../build/NEWS:20066 msgid "" "`bpo-23502 `__: The pprint module now " "supports mapping proxies." msgstr "" -#: ../../../build/NEWS:19845 +#: ../../../build/NEWS:20068 msgid "" "`bpo-17530 `__: pprint now wraps long " "bytes objects and bytearrays." msgstr "" -#: ../../../build/NEWS:19847 +#: ../../../build/NEWS:20070 msgid "" "`bpo-22687 `__: Fixed some corner cases " "in breaking words in tetxtwrap. Got rid of quadratic complexity in breaking " "long words." msgstr "" -#: ../../../build/NEWS:19850 +#: ../../../build/NEWS:20073 msgid "" "`bpo-4727 `__: The copy module now uses " "pickle protocol 4 (PEP 3154) and supports copying of instances of classes " "whose __new__ method takes keyword-only arguments." msgstr "" -#: ../../../build/NEWS:19854 +#: ../../../build/NEWS:20077 msgid "" "`bpo-23491 `__: Added a zipapp module to" " support creating executable zip file archives of Python code. Registered " "\".pyz\" and \".pyzw\" extensions on Windows for these archives (PEP 441)." msgstr "" -#: ../../../build/NEWS:19858 +#: ../../../build/NEWS:20081 msgid "" "`bpo-23657 `__: Avoid explicit checks " "for str in zipapp, adding support for pathlib.Path objects as arguments." msgstr "" -#: ../../../build/NEWS:19861 +#: ../../../build/NEWS:20084 msgid "" "`bpo-23688 `__: Added support of " "arbitrary bytes-like objects and avoided unnecessary copying of memoryview " "in gzip.GzipFile.write(). Original patch by Wolfgang Maier." msgstr "" -#: ../../../build/NEWS:19865 +#: ../../../build/NEWS:20088 msgid "" "`bpo-23252 `__: Added support for " "writing ZIP files to unseekable streams." msgstr "" -#: ../../../build/NEWS:19867 +#: ../../../build/NEWS:20090 msgid "" "`bpo-23647 `__: Increase imaplib's " "MAXLINE to accommodate modern mailbox sizes." msgstr "" -#: ../../../build/NEWS:19869 +#: ../../../build/NEWS:20092 msgid "" "`bpo-23539 `__: If body is None, " "http.client.HTTPConnection.request now sets Content-Length to 0 for PUT, " "POST, and PATCH headers to avoid 411 errors from some web servers." msgstr "" -#: ../../../build/NEWS:19873 +#: ../../../build/NEWS:20096 msgid "" "`bpo-22351 `__: The nntplib.NNTP " "constructor no longer leaves the connection and socket open until the " "garbage collector cleans them up. Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:19877 +#: ../../../build/NEWS:20100 msgid "" "`bpo-23704 `__: collections.deque() " "objects now support methods for index(), insert(), and copy(). This allows " @@ -28549,7 +28972,7 @@ msgid "" "substitutability for lists." msgstr "" -#: ../../../build/NEWS:19881 +#: ../../../build/NEWS:20104 msgid "" "`bpo-23715 `__: " ":func:`signal.sigwaitinfo` and :func:`signal.sigtimedwait` are now retried " @@ -28558,42 +28981,42 @@ msgid "" "timeout with a monotonic clock when it is retried." msgstr "" -#: ../../../build/NEWS:19886 +#: ../../../build/NEWS:20109 msgid "" "`bpo-23001 `__: Few functions in modules" " mmap, ossaudiodev, socket, ssl, and codecs, that accepted only read-only " "bytes-like object now accept writable bytes-like object too." msgstr "" -#: ../../../build/NEWS:19890 +#: ../../../build/NEWS:20113 msgid "" "`bpo-23646 `__: If time.sleep() is " "interrupted by a signal, the sleep is now retried with the recomputed delay," " except if the signal handler raises an exception (PEP 475)." msgstr "" -#: ../../../build/NEWS:19894 +#: ../../../build/NEWS:20117 msgid "" "`bpo-23136 `__: _strptime now uniformly " "handles all days in week 0, including Dec 30 of previous year. Based on " "patch by Jim Carroll." msgstr "" -#: ../../../build/NEWS:19897 +#: ../../../build/NEWS:20120 msgid "" "`bpo-23700 `__: Iterator of " "NamedTemporaryFile now keeps a reference to NamedTemporaryFile instance. " "Patch by Bohuslav Kabrda." msgstr "" -#: ../../../build/NEWS:19900 +#: ../../../build/NEWS:20123 msgid "" "`bpo-22903 `__: The fake test case " "created by unittest.loader when it fails importing a test module is now " "picklable." msgstr "" -#: ../../../build/NEWS:19903 +#: ../../../build/NEWS:20126 msgid "" "`bpo-22181 `__: On Linux, os.urandom() " "now uses the new getrandom() syscall if available, syscall introduced in the" @@ -28601,7 +29024,7 @@ msgid "" "the need of a file descriptor and waits until the kernel has enough entropy." msgstr "" -#: ../../../build/NEWS:19908 +#: ../../../build/NEWS:20131 msgid "" "`bpo-2211 `__: Updated the implementation" " of the http.cookies.Morsel class. Setting attributes key, value and " @@ -28612,115 +29035,115 @@ msgid "" "quoting values. Added new tests. Original patch by Demian Brecht." msgstr "" -#: ../../../build/NEWS:19916 +#: ../../../build/NEWS:20139 msgid "" "`bpo-18983 `__: Allow selection of " "output units in timeit. Patch by Julian Gindi." msgstr "" -#: ../../../build/NEWS:19919 +#: ../../../build/NEWS:20142 msgid "" "`bpo-23631 `__: Fix " "traceback.format_list when a traceback has been mutated." msgstr "" -#: ../../../build/NEWS:19921 +#: ../../../build/NEWS:20144 msgid "" "`bpo-23568 `__: Add rdivmod support to " "MagicMock() objects. Patch by Håkan Lövdahl." msgstr "" -#: ../../../build/NEWS:19924 +#: ../../../build/NEWS:20147 msgid "" "`bpo-2052 `__: Add charset parameter to " "HtmlDiff.make_file()." msgstr "" -#: ../../../build/NEWS:19926 +#: ../../../build/NEWS:20149 msgid "" "`bpo-23668 `__: Support os.truncate and " "os.ftruncate on Windows." msgstr "" -#: ../../../build/NEWS:19928 +#: ../../../build/NEWS:20151 msgid "" "`bpo-23138 `__: Fixed parsing cookies " "with absent keys or values in cookiejar. Patch by Demian Brecht." msgstr "" -#: ../../../build/NEWS:19931 +#: ../../../build/NEWS:20154 msgid "" "`bpo-23051 `__: multiprocessing.Pool " "methods imap() and imap_unordered() now handle exceptions raised by an " "iterator. Patch by Alon Diamant and Davin Potts." msgstr "" -#: ../../../build/NEWS:19935 +#: ../../../build/NEWS:20158 msgid "" "`bpo-23581 `__: Add matmul support to " "MagicMock. Patch by Håkan Lövdahl." msgstr "" -#: ../../../build/NEWS:19937 +#: ../../../build/NEWS:20160 msgid "" "`bpo-23566 `__: enable(), register(), " "dump_traceback() and dump_traceback_later() functions of faulthandler now " "accept file descriptors. Patch by Wei Wu." msgstr "" -#: ../../../build/NEWS:19941 +#: ../../../build/NEWS:20164 msgid "" "`bpo-22928 `__: Disabled HTTP header " "injections in http.client. Original patch by Demian Brecht." msgstr "" -#: ../../../build/NEWS:19944 +#: ../../../build/NEWS:20167 msgid "" "`bpo-23615 `__: Modules bz2, tarfile and" " tokenize now can be reloaded with imp.reload(). Patch by Thomas Kluyver." msgstr "" -#: ../../../build/NEWS:19947 +#: ../../../build/NEWS:20170 msgid "" "`bpo-23605 `__: os.walk() now calls " "os.scandir() instead of os.listdir(). The usage of os.scandir() reduces the " "number of calls to os.stat(). Initial patch written by Ben Hoyt." msgstr "" -#: ../../../build/NEWS:19954 +#: ../../../build/NEWS:20177 msgid "" "`bpo-23585 `__: make patchcheck will " "ensure the interpreter is built." msgstr "" -#: ../../../build/NEWS:19959 +#: ../../../build/NEWS:20182 msgid "" "`bpo-23583 `__: Added tests for standard" " IO streams in IDLE." msgstr "" -#: ../../../build/NEWS:19961 +#: ../../../build/NEWS:20184 msgid "" "`bpo-22289 `__: Prevent test_urllib2net " "failures due to ftp connection timeout." msgstr "" -#: ../../../build/NEWS:19966 +#: ../../../build/NEWS:20189 msgid "" "`bpo-22826 `__: The result of open() in " "Tools/freeze/bkfile.py is now better compatible with regular files (in " "particular it now supports the context management protocol)." msgstr "" -#: ../../../build/NEWS:19972 +#: ../../../build/NEWS:20195 msgid "Python 3.5.0 alpha 2" msgstr "Python 3.5.0 alfa 2" -#: ../../../build/NEWS:19974 +#: ../../../build/NEWS:20197 msgid "*Release date: 2015-03-09*" msgstr "*Tanggal rilis: 2015-03-09*" -#: ../../../build/NEWS:19979 +#: ../../../build/NEWS:20202 msgid "" "`bpo-23571 `__: PyObject_Call() and " "PyCFunction_Call() now raise a SystemError if a function returns a result " @@ -28728,72 +29151,72 @@ msgid "" "exception." msgstr "" -#: ../../../build/NEWS:19986 +#: ../../../build/NEWS:20209 msgid "" "`bpo-22524 `__: New os.scandir() " "function, part of the :pep:`471`: \"os.scandir() function -- a better and " "faster directory iterator\". Patch written by Ben Hoyt." msgstr "" -#: ../../../build/NEWS:19990 +#: ../../../build/NEWS:20213 msgid "" "`bpo-23103 `__: Reduced the memory " "consumption of IPv4Address and IPv6Address." msgstr "" -#: ../../../build/NEWS:19992 +#: ../../../build/NEWS:20215 msgid "" "`bpo-21793 `__: BaseHTTPRequestHandler " "again logs response code as numeric, not as stringified enum. Patch by " "Demian Brecht." msgstr "" -#: ../../../build/NEWS:19995 +#: ../../../build/NEWS:20218 msgid "" "`bpo-23476 `__: In the ssl module, " "enable OpenSSL's X509_V_FLAG_TRUSTED_FIRST flag on certificate stores when " "it is available." msgstr "" -#: ../../../build/NEWS:19998 +#: ../../../build/NEWS:20221 msgid "" "`bpo-23576 `__: Avoid stalling in SSL " "reads when EOF has been reached in the SSL layer but the underlying " "connection hasn't been closed." msgstr "" -#: ../../../build/NEWS:20001 +#: ../../../build/NEWS:20224 msgid "" "`bpo-23504 `__: Added an __all__ to the " "types module." msgstr "" -#: ../../../build/NEWS:20003 +#: ../../../build/NEWS:20226 msgid "" "`bpo-23563 `__: Optimized utility " "functions in urllib.parse." msgstr "" -#: ../../../build/NEWS:20005 +#: ../../../build/NEWS:20228 msgid "" "`bpo-7830 `__: Flatten nested " "functools.partial." msgstr "" -#: ../../../build/NEWS:20007 +#: ../../../build/NEWS:20230 msgid "" "`bpo-20204 `__: Added the __module__ " "attribute to _tkinter classes." msgstr "" -#: ../../../build/NEWS:20009 +#: ../../../build/NEWS:20232 msgid "" "`bpo-19980 `__: Improved help() for non-" "recognized strings. help('') now shows the help on str. help('help') now " "shows the help on help(). Original patch by Mark Lawrence." msgstr "" -#: ../../../build/NEWS:20013 +#: ../../../build/NEWS:20236 msgid "" "`bpo-23521 `__: Corrected pure python " "implementation of timedelta division. Eliminated OverflowError from " @@ -28801,236 +29224,236 @@ msgid "" "division." msgstr "" -#: ../../../build/NEWS:20017 +#: ../../../build/NEWS:20240 msgid "" "`bpo-21619 `__: Popen objects no longer " "leave a zombie after exit in the with statement if the pipe was broken. " "Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:20020 +#: ../../../build/NEWS:20243 msgid "" "`bpo-22936 `__: Make it possible to show" " local variables in tracebacks for both the traceback module and unittest." msgstr "" -#: ../../../build/NEWS:20023 +#: ../../../build/NEWS:20246 msgid "" "`bpo-15955 `__: Add an option to limit " "the output size in bz2.decompress(). Patch by Nikolaus Rath." msgstr "" -#: ../../../build/NEWS:20026 +#: ../../../build/NEWS:20249 msgid "" "`bpo-6639 `__: Module-level turtle " "functions no longer raise TclError after closing the window." msgstr "" -#: ../../../build/NEWS:20029 +#: ../../../build/NEWS:20252 msgid "" "`bpo-814253 `__: Group references and " "conditional group references now work in lookbehind assertions in regular " "expressions. (See also: `bpo-9179 `__)" msgstr "" -#: ../../../build/NEWS:20032 +#: ../../../build/NEWS:20255 msgid "" "`bpo-23215 `__: Multibyte codecs with " "custom error handlers that ignores errors consumed too much memory and " "raised SystemError or MemoryError. Original patch by Aleksi Torhamo." msgstr "" -#: ../../../build/NEWS:20036 +#: ../../../build/NEWS:20259 msgid "" "`bpo-5700 `__: io.FileIO() called flush()" " after closing the file. flush() was not called in close() if closefd=False." msgstr "" -#: ../../../build/NEWS:20039 +#: ../../../build/NEWS:20262 msgid "" "`bpo-23374 `__: Fixed pydoc failure with" " non-ASCII files when stdout encoding differs from file system encoding " "(e.g. on Mac OS)." msgstr "" -#: ../../../build/NEWS:20042 +#: ../../../build/NEWS:20265 msgid "" "`bpo-23481 `__: Remove RC4 from the SSL " "module's default cipher list." msgstr "" -#: ../../../build/NEWS:20044 +#: ../../../build/NEWS:20267 msgid "" "`bpo-21548 `__: Fix pydoc.synopsis() and" " pydoc.apropos() on modules with empty docstrings." msgstr "" -#: ../../../build/NEWS:20047 +#: ../../../build/NEWS:20270 msgid "" "`bpo-22885 `__: Fixed arbitrary code " "execution vulnerability in the dbm.dumb module. Original patch by Claudiu " "Popa." msgstr "" -#: ../../../build/NEWS:20050 +#: ../../../build/NEWS:20273 msgid "" "`bpo-23239 `__: ssl.match_hostname() now" " supports matching of IP addresses." msgstr "" -#: ../../../build/NEWS:20052 +#: ../../../build/NEWS:20275 msgid "" "`bpo-23146 `__: Fix mishandling of " "absolute Windows paths with forward slashes in pathlib." msgstr "" -#: ../../../build/NEWS:20055 +#: ../../../build/NEWS:20278 msgid "" "`bpo-23096 `__: Pickle representation of" " floats with protocol 0 now is the same for both Python and C " "implementations." msgstr "" -#: ../../../build/NEWS:20058 +#: ../../../build/NEWS:20281 msgid "" "`bpo-19105 `__: pprint now more " "efficiently uses free space at the right." msgstr "" -#: ../../../build/NEWS:20060 +#: ../../../build/NEWS:20283 msgid "" "`bpo-14910 `__: Add allow_abbrev " "parameter to argparse.ArgumentParser. Patch by Jonathan Paugh, Steven " "Bethard, paul j3 and Daniel Eriksson." msgstr "" -#: ../../../build/NEWS:20063 +#: ../../../build/NEWS:20286 msgid "" "`bpo-21717 `__: tarfile.open() now " "supports 'x' (exclusive creation) mode." msgstr "" -#: ../../../build/NEWS:20065 +#: ../../../build/NEWS:20288 msgid "" "`bpo-23344 `__: marshal.dumps() is now " "20-25% faster on average." msgstr "" -#: ../../../build/NEWS:20067 +#: ../../../build/NEWS:20290 msgid "" "`bpo-20416 `__: marshal.dumps() with " "protocols 3 and 4 is now 40-50% faster on average." msgstr "" -#: ../../../build/NEWS:20070 +#: ../../../build/NEWS:20293 msgid "" "`bpo-23421 `__: Fixed compression in " "tarfile CLI. Patch by wdv4758h." msgstr "" -#: ../../../build/NEWS:20072 +#: ../../../build/NEWS:20295 msgid "" "`bpo-23367 `__: Fix possible overflows " "in the unicodedata module." msgstr "" -#: ../../../build/NEWS:20074 +#: ../../../build/NEWS:20297 msgid "" "`bpo-23361 `__: Fix possible overflow in" " Windows subprocess creation code." msgstr "" -#: ../../../build/NEWS:20076 +#: ../../../build/NEWS:20299 msgid "" "logging.handlers.QueueListener now takes a respect_handler_level keyword " "argument which, if set to True, will pass messages to handlers taking " "handler levels into account." msgstr "" -#: ../../../build/NEWS:20080 +#: ../../../build/NEWS:20303 msgid "" "`bpo-19705 `__: turtledemo now has a " "visual sorting algorithm demo. Original patch from Jason Yeo." msgstr "" -#: ../../../build/NEWS:20083 +#: ../../../build/NEWS:20306 msgid "" "`bpo-23801 `__: Fix issue where " "cgi.FieldStorage did not always ignore the entire preamble to a multipart " "body." msgstr "" -#: ../../../build/NEWS:20089 +#: ../../../build/NEWS:20312 msgid "" "`bpo-23445 `__: pydebug builds now use " "\"gcc -Og\" where possible, to make the resulting executable faster." msgstr "" -#: ../../../build/NEWS:20092 +#: ../../../build/NEWS:20315 msgid "" "`bpo-23686 `__: Update OS X 10.5 " "installer build to use OpenSSL 1.0.2a." msgstr "" -#: ../../../build/NEWS:20097 +#: ../../../build/NEWS:20320 msgid "" "`bpo-20204 `__: Deprecation warning is " "now raised for builtin types without the __module__ attribute." msgstr "" -#: ../../../build/NEWS:20103 +#: ../../../build/NEWS:20326 msgid "" "`bpo-23465 `__: Implement :pep:`486` - " "Make the Python Launcher aware of virtual environments. Patch by Paul Moore." msgstr "" -#: ../../../build/NEWS:20106 +#: ../../../build/NEWS:20329 msgid "" "`bpo-23437 `__: Make user scripts " "directory versioned on Windows. Patch by Paul Moore." msgstr "" -#: ../../../build/NEWS:20111 +#: ../../../build/NEWS:20334 msgid "Python 3.5.0 alpha 1" msgstr "Python 3.5.0 alfa 1" -#: ../../../build/NEWS:20113 +#: ../../../build/NEWS:20336 msgid "*Release date: 2015-02-08*" msgstr "*Tanggal rilis: 2015-02-08*" -#: ../../../build/NEWS:20118 +#: ../../../build/NEWS:20341 msgid "" "`bpo-23285 `__: PEP 475 - EINTR " "handling." msgstr "" -#: ../../../build/NEWS:20120 +#: ../../../build/NEWS:20343 msgid "" "`bpo-22735 `__: Fix many edge cases " "(including crashes) involving custom mro() implementations." msgstr "" -#: ../../../build/NEWS:20123 +#: ../../../build/NEWS:20346 msgid "" "`bpo-22896 `__: Avoid using " "PyObject_AsCharBuffer(), PyObject_AsReadBuffer() and " "PyObject_AsWriteBuffer()." msgstr "" -#: ../../../build/NEWS:20126 +#: ../../../build/NEWS:20349 msgid "" "`bpo-21295 `__: Revert some changes " "(`bpo-16795 `__) to AST line numbers and" " column offsets that constituted a regression." msgstr "" -#: ../../../build/NEWS:20129 +#: ../../../build/NEWS:20352 msgid "" "`bpo-22986 `__: Allow changing an " "object's __class__ between a dynamic type and static type in some cases." msgstr "" -#: ../../../build/NEWS:20132 +#: ../../../build/NEWS:20355 msgid "" "`bpo-15859 `__: " "PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and " @@ -29039,199 +29462,199 @@ msgid "" "platforms other than Windows. Patch written by Campbell Barton." msgstr "" -#: ../../../build/NEWS:20137 +#: ../../../build/NEWS:20360 msgid "" "`bpo-21408 `__: The default __ne__() now" " returns NotImplemented if __eq__() returned NotImplemented. Original patch" " by Martin Panter." msgstr "" -#: ../../../build/NEWS:20140 +#: ../../../build/NEWS:20363 msgid "" "`bpo-23321 `__: Fixed a crash in " "str.decode() when error handler returned replacement string longer than " "malformed input data." msgstr "" -#: ../../../build/NEWS:20143 +#: ../../../build/NEWS:20366 msgid "" "`bpo-22286 `__: The \"backslashreplace\"" " error handlers now works with decoding and translating." msgstr "" -#: ../../../build/NEWS:20146 +#: ../../../build/NEWS:20369 msgid "" "`bpo-23253 `__: Delay-load " "ShellExecute[AW] in os.startfile for reduced startup overhead on Windows." msgstr "" -#: ../../../build/NEWS:20149 +#: ../../../build/NEWS:20372 msgid "" "`bpo-22038 `__: pyatomic.h now uses " "stdatomic.h or GCC built-in functions for atomic memory access if available." " Patch written by Vitor de Lima and Gustavo Temple." msgstr "" -#: ../../../build/NEWS:20153 +#: ../../../build/NEWS:20376 msgid "" "`bpo-20284 `__: %-interpolation (aka " "printf) formatting added for bytes and bytearray." msgstr "" -#: ../../../build/NEWS:20156 +#: ../../../build/NEWS:20379 msgid "" "`bpo-23048 `__: Fix jumping out of an " "infinite while loop in the pdb." msgstr "" -#: ../../../build/NEWS:20158 +#: ../../../build/NEWS:20381 msgid "" "`bpo-20335 `__: bytes constructor now " "raises TypeError when encoding or errors is specified with non-string " "argument. Based on patch by Renaud Blanch." msgstr "" -#: ../../../build/NEWS:20161 +#: ../../../build/NEWS:20384 msgid "" "`bpo-22834 `__: If the current working " "directory ends up being set to a non-existent directory then import will no " "longer raise FileNotFoundError." msgstr "" -#: ../../../build/NEWS:20164 +#: ../../../build/NEWS:20387 msgid "" "`bpo-22869 `__: Move the interpreter " "startup & shutdown code to a new dedicated pylifecycle.c module" msgstr "" -#: ../../../build/NEWS:20167 +#: ../../../build/NEWS:20390 msgid "" "`bpo-22847 `__: Improve method cache " "efficiency." msgstr "" -#: ../../../build/NEWS:20169 +#: ../../../build/NEWS:20392 msgid "" "`bpo-22335 `__: Fix crash when trying to" " enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform." msgstr "" -#: ../../../build/NEWS:20172 +#: ../../../build/NEWS:20395 msgid "" "`bpo-22653 `__: Fix an assertion failure" " in debug mode when doing a reentrant dict insertion in debug mode." msgstr "" -#: ../../../build/NEWS:20175 +#: ../../../build/NEWS:20398 msgid "" "`bpo-22643 `__: Fix integer overflow in " "Unicode case operations (upper, lower, title, swapcase, casefold)." msgstr "" -#: ../../../build/NEWS:20178 +#: ../../../build/NEWS:20401 msgid "" "`bpo-17636 `__: Circular imports " "involving relative imports are now supported." msgstr "" -#: ../../../build/NEWS:20180 +#: ../../../build/NEWS:20403 msgid "" "`bpo-22604 `__: Fix assertion error in " "debug mode when dividing a complex number by (nan+0j)." msgstr "" -#: ../../../build/NEWS:20183 +#: ../../../build/NEWS:20406 msgid "" "`bpo-21052 `__: Do not raise " "ImportWarning when sys.path_hooks or sys.meta_path are set to None." msgstr "" -#: ../../../build/NEWS:20186 +#: ../../../build/NEWS:20409 msgid "" "`bpo-16518 `__: Use 'bytes-like object " "required' in error messages that previously used the far more cryptic \"'x' " "does not support the buffer protocol." msgstr "" -#: ../../../build/NEWS:20190 +#: ../../../build/NEWS:20413 msgid "" "`bpo-22470 `__: Fixed integer overflow " "issues in \"backslashreplace\", \"xmlcharrefreplace\", and \"surrogatepass\"" " error handlers." msgstr "" -#: ../../../build/NEWS:20193 +#: ../../../build/NEWS:20416 msgid "" "`bpo-22540 `__: speed up " "`PyObject_IsInstance` and `PyObject_IsSubclass` in the common case that the " "second argument has metaclass `type`." msgstr "" -#: ../../../build/NEWS:20196 +#: ../../../build/NEWS:20419 msgid "" "`bpo-18711 `__: Add a new " "`PyErr_FormatV` function, similar to `PyErr_Format` but accepting a " "`va_list` argument." msgstr "" -#: ../../../build/NEWS:20199 +#: ../../../build/NEWS:20422 msgid "" "`bpo-22520 `__: Fix overflow checking " "when generating the repr of a unicode object." msgstr "" -#: ../../../build/NEWS:20202 +#: ../../../build/NEWS:20425 msgid "" "`bpo-22519 `__: Fix overflow checking in" " PyBytes_Repr." msgstr "" -#: ../../../build/NEWS:20204 +#: ../../../build/NEWS:20427 msgid "" "`bpo-22518 `__: Fix integer overflow " "issues in latin-1 encoding." msgstr "" -#: ../../../build/NEWS:20206 +#: ../../../build/NEWS:20429 msgid "" "`bpo-16324 `__: _charset parameter of " "MIMEText now also accepts email.charset.Charset instances. Initial patch by " "Claude Paroz." msgstr "" -#: ../../../build/NEWS:20209 +#: ../../../build/NEWS:20432 msgid "" "`bpo-1764286 `__: Fix " "inspect.getsource() to support decorated functions. Patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:20212 +#: ../../../build/NEWS:20435 msgid "" "`bpo-18554 `__: os.__all__ includes " "posix functions." msgstr "" -#: ../../../build/NEWS:20214 +#: ../../../build/NEWS:20437 msgid "" "`bpo-21391 `__: Use os.path.abspath in " "the shutil module." msgstr "" -#: ../../../build/NEWS:20216 +#: ../../../build/NEWS:20439 msgid "" "`bpo-11471 `__: avoid generating a " "JUMP_FORWARD instruction at the end of an if-block if there is no else-" "clause. Original patch by Eugene Toder." msgstr "" -#: ../../../build/NEWS:20219 +#: ../../../build/NEWS:20442 msgid "" "`bpo-22215 `__: Now ValueError is raised" " instead of TypeError when str or bytes argument contains not permitted null" " character or byte." msgstr "" -#: ../../../build/NEWS:20222 +#: ../../../build/NEWS:20445 msgid "" "`bpo-22258 `__: Fix the internal " "function set_inheritable() on Illumos. This platform exposes the function " @@ -29240,63 +29663,63 @@ msgid "" "slower ``fcntl()`` (``F_GETFD`` and then ``F_SETFD``)." msgstr "" -#: ../../../build/NEWS:20228 +#: ../../../build/NEWS:20451 msgid "" "`bpo-21389 `__: Displaying the " "__qualname__ of the underlying function in the repr of a bound method." msgstr "" -#: ../../../build/NEWS:20231 +#: ../../../build/NEWS:20454 msgid "" "`bpo-22206 `__: Using pthread, " "PyThread_create_key() now sets errno to ENOMEM and returns -1 (error) on " "integer overflow." msgstr "" -#: ../../../build/NEWS:20234 +#: ../../../build/NEWS:20457 msgid "" "`bpo-20184 `__: Argument Clinic based " "signature introspection added for 30 of the builtin functions." msgstr "" -#: ../../../build/NEWS:20237 +#: ../../../build/NEWS:20460 msgid "" "`bpo-22116 `__: C functions and methods " "(of the 'builtin_function_or_method' type) can now be weakref'ed. Patch by " "Wei Wu." msgstr "" -#: ../../../build/NEWS:20240 +#: ../../../build/NEWS:20463 msgid "" "`bpo-22077 `__: Improve index error " "messages for bytearrays, bytes, lists, and tuples by adding 'or slices'. " "Added ', not ' for bytearrays. Original patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:20244 +#: ../../../build/NEWS:20467 msgid "" "`bpo-20179 `__: Apply Argument Clinic to" " bytes and bytearray. Patch by Tal Einat." msgstr "" -#: ../../../build/NEWS:20247 +#: ../../../build/NEWS:20470 msgid "" "`bpo-22082 `__: Clear interned strings " "in slotdefs." msgstr "" -#: ../../../build/NEWS:20249 +#: ../../../build/NEWS:20472 msgid "Upgrade Unicode database to Unicode 7.0.0." msgstr "Perbarui database Unicode ke Unicode 7.0.0." -#: ../../../build/NEWS:20251 +#: ../../../build/NEWS:20474 msgid "" "`bpo-21897 `__: Fix a crash with the " "f_locals attribute with closure variables when frame.clear() has been " "called." msgstr "" -#: ../../../build/NEWS:20254 +#: ../../../build/NEWS:20477 msgid "" "`bpo-21205 `__: Add a new " "``__qualname__`` attribute to generator, the qualified name, and use it in " @@ -29305,7 +29728,7 @@ msgid "" "the code. Use ``gen.gi_code.co_name`` to get the name of the code." msgstr "" -#: ../../../build/NEWS:20260 +#: ../../../build/NEWS:20483 msgid "" "`bpo-21669 `__: With the aid of " "heuristics in SyntaxError.__init__, the parser now attempts to generate more" @@ -29313,14 +29736,14 @@ msgid "" "\"exec\" and \"print\" are used as statements." msgstr "" -#: ../../../build/NEWS:20264 +#: ../../../build/NEWS:20487 msgid "" "`bpo-21642 `__: In the conditional if-" "else expression, allow an integer written with no space between itself and " "the ``else`` keyword (e.g. ``True if 42else False``) to be valid syntax." msgstr "" -#: ../../../build/NEWS:20268 +#: ../../../build/NEWS:20491 msgid "" "`bpo-21523 `__: Fix over-pessimistic " "computation of the stack effect of some opcodes in the compiler. This also " @@ -29328,117 +29751,117 @@ msgid "" " a large number of \"and\" and \"or\" operators." msgstr "" -#: ../../../build/NEWS:20273 +#: ../../../build/NEWS:20496 msgid "" "`bpo-21418 `__: Fix a crash in the " "builtin function super() when called without argument and without current " "frame (ex: embedded Python)." msgstr "" -#: ../../../build/NEWS:20276 +#: ../../../build/NEWS:20499 msgid "" "`bpo-21425 `__: Fix flushing of standard" " streams in the interactive interpreter." msgstr "" -#: ../../../build/NEWS:20279 +#: ../../../build/NEWS:20502 msgid "" "`bpo-21435 `__: In rare cases, when " "running finalizers on objects in cyclic trash a bad pointer dereference " "could occur due to a subtle flaw in internal iteration logic." msgstr "" -#: ../../../build/NEWS:20283 +#: ../../../build/NEWS:20506 msgid "" "`bpo-21377 `__: PyBytes_Concat() now " "tries to concatenate in-place when the first argument has a reference count " "of 1. Patch by Nikolaus Rath." msgstr "" -#: ../../../build/NEWS:20286 +#: ../../../build/NEWS:20509 msgid "" "`bpo-20355 `__: -W command line options " "now have higher priority than the PYTHONWARNINGS environment variable. " "Patch by Arfrever." msgstr "" -#: ../../../build/NEWS:20289 +#: ../../../build/NEWS:20512 msgid "" "`bpo-21274 `__: Define PATH_MAX for " "GNU/Hurd in Python/pythonrun.c." msgstr "" -#: ../../../build/NEWS:20291 +#: ../../../build/NEWS:20514 msgid "" "`bpo-20904 `__: Support setting FPU " "precision on m68k." msgstr "" -#: ../../../build/NEWS:20293 +#: ../../../build/NEWS:20516 msgid "" "`bpo-21209 `__: Fix sending tuples to " "custom generator objects with the yield from syntax." msgstr "" -#: ../../../build/NEWS:20296 +#: ../../../build/NEWS:20519 msgid "" "`bpo-21193 `__: pow(a, b, c) now raises " "ValueError rather than TypeError when b is negative. Patch by Josh " "Rosenberg." msgstr "" -#: ../../../build/NEWS:20299 +#: ../../../build/NEWS:20522 msgid "" "`bpo-21176 `__: PEP 465: Add the '@' " "operator for matrix multiplication." msgstr "" -#: ../../../build/NEWS:20301 +#: ../../../build/NEWS:20524 msgid "" "`bpo-21134 `__: Fix segfault when str is" " called on an uninitialized UnicodeEncodeError, UnicodeDecodeError, or " "UnicodeTranslateError object." msgstr "" -#: ../../../build/NEWS:20304 +#: ../../../build/NEWS:20527 msgid "" "`bpo-19537 `__: Fix PyUnicode_DATA() " "alignment under m68k. Patch by Andreas Schwab." msgstr "" -#: ../../../build/NEWS:20307 +#: ../../../build/NEWS:20530 msgid "" "`bpo-20929 `__: Add a type cast to avoid" " shifting a negative number." msgstr "" -#: ../../../build/NEWS:20309 +#: ../../../build/NEWS:20532 msgid "" "`bpo-20731 `__: Properly position in " "source code files even if they are opened in text mode. Patch by Serhiy " "Storchaka." msgstr "" -#: ../../../build/NEWS:20312 +#: ../../../build/NEWS:20535 msgid "" "`bpo-20637 `__: Key-sharing now also " "works for instance dictionaries of subclasses. Patch by Peter Ingebretson." msgstr "" -#: ../../../build/NEWS:20315 +#: ../../../build/NEWS:20538 msgid "" "`bpo-8297 `__: Attributes missing from " "modules now include the module name in the error text. Original patch by " "ysj.ray." msgstr "" -#: ../../../build/NEWS:20318 +#: ../../../build/NEWS:20541 msgid "" "`bpo-19995 `__: %c, %o, %x, and %X now " "raise TypeError on non-integer input." msgstr "" -#: ../../../build/NEWS:20320 +#: ../../../build/NEWS:20543 msgid "" "`bpo-19655 `__: The ASDL parser - used " "by the build process to generate code for managing the Python AST in C - was" @@ -29447,27 +29870,27 @@ msgid "" "source base." msgstr "" -#: ../../../build/NEWS:20325 +#: ../../../build/NEWS:20548 msgid "" "`bpo-12546 `__: Allow ``\\x00`` to be " "used as a fill character when using str, int, float, and complex __format__ " "methods." msgstr "" -#: ../../../build/NEWS:20328 +#: ../../../build/NEWS:20551 msgid "" "`bpo-20480 `__: Add " "ipaddress.reverse_pointer. Patch by Leon Weber." msgstr "" -#: ../../../build/NEWS:20330 +#: ../../../build/NEWS:20553 msgid "" "`bpo-13598 `__: Modify string.Formatter " "to support auto-numbering of replacement fields. It now matches the behavior" " of str.format() in this regard. Patches by Phil Elson and Ramchandra Apte." msgstr "" -#: ../../../build/NEWS:20334 +#: ../../../build/NEWS:20557 msgid "" "`bpo-8931 `__: Make alternate formatting " "('#') for type 'c' raise an exception. In versions prior to 3.5, '#' with " @@ -29475,81 +29898,81 @@ msgid "" "Landschoff." msgstr "" -#: ../../../build/NEWS:20338 +#: ../../../build/NEWS:20561 msgid "" "`bpo-23165 `__: Perform overflow checks " "before allocating memory in the _Py_char2wchar function." msgstr "" -#: ../../../build/NEWS:20344 +#: ../../../build/NEWS:20567 msgid "" "`bpo-23399 `__: pyvenv creates relative " "symlinks where possible." msgstr "" -#: ../../../build/NEWS:20346 +#: ../../../build/NEWS:20569 msgid "" "`bpo-20289 `__: cgi.FieldStorage() now " "supports the context management protocol." msgstr "" -#: ../../../build/NEWS:20349 +#: ../../../build/NEWS:20572 msgid "" "`bpo-13128 `__: Print response headers " "for CONNECT requests when debuglevel > 0. Patch by Demian Brecht." msgstr "" -#: ../../../build/NEWS:20352 +#: ../../../build/NEWS:20575 msgid "" "`bpo-15381 `__: Optimized io.BytesIO to " "make less allocations and copyings." msgstr "" -#: ../../../build/NEWS:20354 +#: ../../../build/NEWS:20577 msgid "" "`bpo-22818 `__: Splitting on a pattern " "that could match an empty string now raises a warning. Patterns that can " "only match empty strings are now rejected." msgstr "" -#: ../../../build/NEWS:20358 +#: ../../../build/NEWS:20581 msgid "" "`bpo-23099 `__: Closing io.BytesIO with " "exported buffer is rejected now to prevent corrupting exported buffer." msgstr "" -#: ../../../build/NEWS:20361 +#: ../../../build/NEWS:20584 msgid "" "`bpo-23326 `__: Removed __ne__ " "implementations. Since fixing default __ne__ implementation in `bpo-21408 " "`__ they are redundant." msgstr "" -#: ../../../build/NEWS:20364 +#: ../../../build/NEWS:20587 msgid "" "`bpo-23363 `__: Fix possible overflow in" " itertools.permutations." msgstr "" -#: ../../../build/NEWS:20366 +#: ../../../build/NEWS:20589 msgid "" "`bpo-23364 `__: Fix possible overflow in" " itertools.product." msgstr "" -#: ../../../build/NEWS:20368 +#: ../../../build/NEWS:20591 msgid "" "`bpo-23366 `__: Fixed possible integer " "overflow in itertools.combinations." msgstr "" -#: ../../../build/NEWS:20370 +#: ../../../build/NEWS:20593 msgid "" "`bpo-23369 `__: Fixed possible integer " "overflow in _json.encode_basestring_ascii." msgstr "" -#: ../../../build/NEWS:20373 +#: ../../../build/NEWS:20596 msgid "" "`bpo-23353 `__: Fix the exception " "handling of generators in PyEval_EvalFrameEx(). At entry, save or swap the " @@ -29558,116 +29981,116 @@ msgid "" " is WHY_YIELD or WHY_RETURN. Patch co-written with Antoine Pitrou." msgstr "" -#: ../../../build/NEWS:20379 +#: ../../../build/NEWS:20602 msgid "" "`bpo-14099 `__: Restored support of " "writing ZIP files to tellable but non-seekable streams." msgstr "" -#: ../../../build/NEWS:20382 +#: ../../../build/NEWS:20605 msgid "" "`bpo-14099 `__: Writing to ZipFile and " "reading multiple ZipExtFiles is threadsafe now." msgstr "" -#: ../../../build/NEWS:20385 +#: ../../../build/NEWS:20608 msgid "" "`bpo-19361 `__: JSON decoder now raises " "JSONDecodeError instead of ValueError." msgstr "" -#: ../../../build/NEWS:20387 +#: ../../../build/NEWS:20610 msgid "" "`bpo-18518 `__: timeit now rejects " "statements which can't be compiled outside a function or a loop (e.g. " "\"return\" or \"break\")." msgstr "" -#: ../../../build/NEWS:20390 +#: ../../../build/NEWS:20613 msgid "" "`bpo-23094 `__: Fixed readline with " "frames in Python implementation of pickle." msgstr "" -#: ../../../build/NEWS:20392 +#: ../../../build/NEWS:20615 msgid "" "`bpo-23268 `__: Fixed bugs in the " "comparison of ipaddress classes." msgstr "" -#: ../../../build/NEWS:20394 +#: ../../../build/NEWS:20617 msgid "" "`bpo-21408 `__: Removed incorrect " "implementations of __ne__() which didn't returned NotImplemented if __eq__()" " returned NotImplemented. The default __ne__() now works correctly." msgstr "" -#: ../../../build/NEWS:20398 +#: ../../../build/NEWS:20621 msgid "" "`bpo-19996 `__: " ":class:`email.feedparser.FeedParser` now handles (malformed) headers with no" " key rather than assuming the body has started." msgstr "" -#: ../../../build/NEWS:20401 +#: ../../../build/NEWS:20624 msgid "" "`bpo-20188 `__: Support Application-" "Layer Protocol Negotiation (ALPN) in the ssl module." msgstr "" -#: ../../../build/NEWS:20404 +#: ../../../build/NEWS:20627 msgid "" "`bpo-23133 `__: Pickling of ipaddress " "objects now produces more compact and portable representation." msgstr "" -#: ../../../build/NEWS:20407 +#: ../../../build/NEWS:20630 msgid "" "`bpo-23248 `__: Update ssl error codes " "from latest OpenSSL git master." msgstr "" -#: ../../../build/NEWS:20409 +#: ../../../build/NEWS:20632 msgid "" "`bpo-23266 `__: Much faster " "implementation of ipaddress.collapse_addresses() when there are many non-" "consecutive addresses." msgstr "" -#: ../../../build/NEWS:20412 +#: ../../../build/NEWS:20635 msgid "" "`bpo-23098 `__: 64-bit dev_t is now " "supported in the os module." msgstr "" -#: ../../../build/NEWS:20414 +#: ../../../build/NEWS:20637 msgid "" "`bpo-21817 `__: When an exception is " "raised in a task submitted to a ProcessPoolExecutor, the remote traceback is" " now displayed in the parent process. Patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:20418 +#: ../../../build/NEWS:20641 msgid "" "`bpo-15955 `__: Add an option to limit " "output size when decompressing LZMA data. Patch by Nikolaus Rath and Martin" " Panter." msgstr "" -#: ../../../build/NEWS:20421 +#: ../../../build/NEWS:20644 msgid "" "`bpo-23250 `__: In the http.cookies " "module, capitalize \"HttpOnly\" and \"Secure\" as they are written in the " "standard." msgstr "" -#: ../../../build/NEWS:20424 +#: ../../../build/NEWS:20647 msgid "" "`bpo-23063 `__: In the distutils' check " "command, fix parsing of reST with code or code-block directives." msgstr "" -#: ../../../build/NEWS:20427 +#: ../../../build/NEWS:20650 msgid "" "`bpo-23209 `__: " "selectors.BaseSelector.get_key() now raises a RuntimeError if the selector " @@ -29677,13 +30100,13 @@ msgid "" "`__)" msgstr "" -#: ../../../build/NEWS:20432 +#: ../../../build/NEWS:20655 msgid "" "`bpo-17911 `__: Provide a way to seed " "the linecache for a PEP-302 module without actually loading the code." msgstr "" -#: ../../../build/NEWS:20435 +#: ../../../build/NEWS:20658 msgid "" "`bpo-17911 `__: Provide a new object API" " for traceback, including the ability to not lookup lines at all until the " @@ -29691,109 +30114,109 @@ msgid "" "being kept alive." msgstr "" -#: ../../../build/NEWS:20439 +#: ../../../build/NEWS:20662 msgid "" "`bpo-19777 `__: Provide a home() " "classmethod on Path objects. Contributed by Victor Salgado and Mayank " "Tripathi." msgstr "" -#: ../../../build/NEWS:20442 +#: ../../../build/NEWS:20665 msgid "" "`bpo-23206 `__: Make ``json.dumps(..., " "ensure_ascii=False)`` as fast as the default case of ``ensure_ascii=True``." " Patch by Naoki Inada." msgstr "" -#: ../../../build/NEWS:20445 +#: ../../../build/NEWS:20668 msgid "" "`bpo-23185 `__: Add math.inf and " "math.nan constants." msgstr "" -#: ../../../build/NEWS:20447 +#: ../../../build/NEWS:20670 msgid "" "`bpo-23186 `__: Add " "ssl.SSLObject.shared_ciphers() and ssl.SSLSocket.shared_ciphers() to fetch " "the client's list ciphers sent at handshake." msgstr "" -#: ../../../build/NEWS:20451 +#: ../../../build/NEWS:20674 msgid "" "`bpo-23143 `__: Remove compatibility " "with OpenSSLs older than 0.9.8." msgstr "" -#: ../../../build/NEWS:20453 +#: ../../../build/NEWS:20676 msgid "" "`bpo-23132 `__: Improve performance and " "introspection support of comparison methods created by " "functool.total_ordering." msgstr "" -#: ../../../build/NEWS:20456 +#: ../../../build/NEWS:20679 msgid "" "`bpo-19776 `__: Add an expanduser() " "method on Path objects." msgstr "" -#: ../../../build/NEWS:20458 +#: ../../../build/NEWS:20681 msgid "" "`bpo-23112 `__: Fix SimpleHTTPServer to " "correctly carry the query string and fragment when it redirects to add a " "trailing slash." msgstr "" -#: ../../../build/NEWS:20461 +#: ../../../build/NEWS:20684 msgid "" "`bpo-21793 `__: Added http.HTTPStatus " "enums (i.e. HTTPStatus.OK, HTTPStatus.NOT_FOUND). Patch by Demian Brecht." msgstr "" -#: ../../../build/NEWS:20464 +#: ../../../build/NEWS:20687 msgid "" "`bpo-23093 `__: In the io, module allow " "more operations to work on detached streams." msgstr "" -#: ../../../build/NEWS:20467 +#: ../../../build/NEWS:20690 msgid "" "`bpo-23111 `__: In the ftplib, make " "ssl.PROTOCOL_SSLv23 the default protocol version." msgstr "" -#: ../../../build/NEWS:20470 +#: ../../../build/NEWS:20693 msgid "" "`bpo-22585 `__: On OpenBSD 5.6 and " "newer, os.urandom() now calls getentropy(), instead of reading /dev/urandom," " to get pseudo-random bytes." msgstr "" -#: ../../../build/NEWS:20473 +#: ../../../build/NEWS:20696 msgid "" "`bpo-19104 `__: pprint now produces " "evaluable output for wrapped strings." msgstr "" -#: ../../../build/NEWS:20475 +#: ../../../build/NEWS:20698 msgid "" "`bpo-23071 `__: Added missing names to " "codecs.__all__. Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:20477 +#: ../../../build/NEWS:20700 msgid "" "`bpo-22783 `__: Pickling now uses the " "NEWOBJ opcode instead of the NEWOBJ_EX opcode if possible." msgstr "" -#: ../../../build/NEWS:20480 +#: ../../../build/NEWS:20703 msgid "" "`bpo-15513 `__: Added a __sizeof__ " "implementation for pickle classes." msgstr "" -#: ../../../build/NEWS:20482 +#: ../../../build/NEWS:20705 msgid "" "`bpo-19858 `__: pickletools.optimize() " "now aware of the MEMOIZE opcode, can produce more compact result and no " @@ -29801,20 +30224,20 @@ msgid "" "together with PUT or BINPUT opcodes." msgstr "" -#: ../../../build/NEWS:20486 +#: ../../../build/NEWS:20709 msgid "" "`bpo-22095 `__: Fixed " "HTTPConnection.set_tunnel with default port. The port value in the host " "header was set to \"None\". Patch by Demian Brecht." msgstr "" -#: ../../../build/NEWS:20489 +#: ../../../build/NEWS:20712 msgid "" "`bpo-23016 `__: A warning no longer " "produces an AttributeError when the program is run with pythonw.exe." msgstr "" -#: ../../../build/NEWS:20492 +#: ../../../build/NEWS:20715 msgid "" "`bpo-21775 `__: shutil.copytree(): fix " "crash when copying to VFAT. An exception handler assumed that OSError " @@ -29823,46 +30246,46 @@ msgid "" "presumably, any other non-Windows OS). Patch by Greg Ward." msgstr "" -#: ../../../build/NEWS:20498 +#: ../../../build/NEWS:20721 msgid "" "`bpo-1218234 `__: Fix " "inspect.getsource() to load updated source of reloaded module. Initial patch" " by Berker Peksag." msgstr "" -#: ../../../build/NEWS:20501 +#: ../../../build/NEWS:20724 msgid "" "`bpo-21740 `__: Support wrapped " "callables in doctest. Patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:20503 +#: ../../../build/NEWS:20726 msgid "" "`bpo-23009 `__: Make sure " "selectors.EpollSelector.select() works when no FD is registered." msgstr "" -#: ../../../build/NEWS:20506 +#: ../../../build/NEWS:20729 msgid "" "`bpo-22959 `__: In the constructor of " "http.client.HTTPSConnection, prefer the context's check_hostname attribute " "over the *check_hostname* parameter." msgstr "" -#: ../../../build/NEWS:20509 +#: ../../../build/NEWS:20732 msgid "" "`bpo-22696 `__: Add function " ":func:`sys.is_finalizing` to know about interpreter shutdown." msgstr "" -#: ../../../build/NEWS:20512 +#: ../../../build/NEWS:20735 msgid "" "`bpo-16043 `__: Add a default limit for " "the amount of data xmlrpclib.gzip_decode will return. This resolves " "CVE-2013-1753." msgstr "" -#: ../../../build/NEWS:20515 +#: ../../../build/NEWS:20738 msgid "" "`bpo-14099 `__: ZipFile.open() no longer" " reopen the underlying file. Objects returned by ZipFile.open() can now " @@ -29870,265 +30293,265 @@ msgid "" "passing in a file-like object as the first argument to the constructor." msgstr "" -#: ../../../build/NEWS:20520 +#: ../../../build/NEWS:20743 msgid "" "`bpo-22966 `__: Fix __pycache__ pyc file" " name clobber when pyc_compile is asked to compile a source file containing " "multiple dots in the source file name." msgstr "" -#: ../../../build/NEWS:20523 +#: ../../../build/NEWS:20746 msgid "" "`bpo-21971 `__: Update turtledemo doc " "and add module to the index." msgstr "" -#: ../../../build/NEWS:20525 +#: ../../../build/NEWS:20748 msgid "" "`bpo-21032 `__: Fixed socket leak if " "HTTPConnection.getresponse() fails. Original patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:20528 +#: ../../../build/NEWS:20751 msgid "" "`bpo-22407 `__: Deprecated the use of " "re.LOCALE flag with str patterns or re.ASCII. It was newer worked." msgstr "" -#: ../../../build/NEWS:20531 +#: ../../../build/NEWS:20754 msgid "" "`bpo-22902 `__: The \"ip\" command is " "now used on Linux to determine MAC address in uuid.getnode(). Pach by Bruno" " Cauet." msgstr "" -#: ../../../build/NEWS:20534 +#: ../../../build/NEWS:20757 msgid "" "`bpo-22960 `__: Add a context argument " "to xmlrpclib.ServerProxy constructor." msgstr "" -#: ../../../build/NEWS:20536 +#: ../../../build/NEWS:20759 msgid "" "`bpo-22389 `__: Add " "contextlib.redirect_stderr()." msgstr "" -#: ../../../build/NEWS:20538 +#: ../../../build/NEWS:20761 msgid "" "`bpo-21356 `__: Make ssl.RAND_egd() " "optional to support LibreSSL. The availability of the function is checked " "during the compilation. Patch written by Bernard Spil." msgstr "" -#: ../../../build/NEWS:20542 +#: ../../../build/NEWS:20765 msgid "" "`bpo-22915 `__: SAX parser now supports " "files opened with file descriptor or bytes path." msgstr "" -#: ../../../build/NEWS:20545 +#: ../../../build/NEWS:20768 msgid "" "`bpo-22609 `__: Constructors and update " "methods of mapping classes in the collections module now accept the self " "keyword argument." msgstr "" -#: ../../../build/NEWS:20548 +#: ../../../build/NEWS:20771 msgid "" "`bpo-22940 `__: Add " "readline.append_history_file." msgstr "" -#: ../../../build/NEWS:20550 +#: ../../../build/NEWS:20773 msgid "" "`bpo-19676 `__: Added the " "\"namereplace\" error handler." msgstr "" -#: ../../../build/NEWS:20552 +#: ../../../build/NEWS:20775 msgid "" "`bpo-22788 `__: Add *context* parameter " "to logging.handlers.HTTPHandler." msgstr "" -#: ../../../build/NEWS:20554 +#: ../../../build/NEWS:20777 msgid "" "`bpo-22921 `__: Allow SSLContext to take" " the *hostname* parameter even if OpenSSL doesn't support SNI." msgstr "" -#: ../../../build/NEWS:20557 +#: ../../../build/NEWS:20780 msgid "" "`bpo-22894 `__: TestCase.subTest() would" " cause the test suite to be stopped when in failfast mode, even in the " "absence of failures." msgstr "" -#: ../../../build/NEWS:20560 +#: ../../../build/NEWS:20783 msgid "" "`bpo-22796 `__: HTTP cookie parsing is " "now stricter, in order to protect against potential injection attacks." msgstr "" -#: ../../../build/NEWS:20563 +#: ../../../build/NEWS:20786 msgid "" "`bpo-22370 `__: Windows detection in " "pathlib is now more robust." msgstr "" -#: ../../../build/NEWS:20565 +#: ../../../build/NEWS:20788 msgid "" "`bpo-22841 `__: Reject coroutines in " "asyncio add_signal_handler(). Patch by Ludovic.Gasc." msgstr "" -#: ../../../build/NEWS:20568 +#: ../../../build/NEWS:20791 msgid "" "`bpo-19494 `__: Added " "urllib.request.HTTPBasicPriorAuthHandler. Patch by Matej Cepl." msgstr "" -#: ../../../build/NEWS:20571 +#: ../../../build/NEWS:20794 msgid "" "`bpo-22578 `__: Added attributes to the " "re.error class." msgstr "" -#: ../../../build/NEWS:20573 +#: ../../../build/NEWS:20796 msgid "" "`bpo-22849 `__: Fix possible double free" " in the io.TextIOWrapper constructor." msgstr "" -#: ../../../build/NEWS:20575 +#: ../../../build/NEWS:20798 msgid "" "`bpo-12728 `__: Different Unicode " "characters having the same uppercase but different lowercase are now matched" " in case-insensitive regular expressions." msgstr "" -#: ../../../build/NEWS:20579 +#: ../../../build/NEWS:20802 msgid "" "`bpo-22821 `__: Fixed fcntl() with " "integer argument on 64-bit big-endian platforms." msgstr "" -#: ../../../build/NEWS:20582 +#: ../../../build/NEWS:20805 msgid "" "`bpo-21650 `__: Add an `--sort-keys` " "option to json.tool CLI." msgstr "" -#: ../../../build/NEWS:20584 +#: ../../../build/NEWS:20807 msgid "" "`bpo-22824 `__: Updated reprlib output " "format for sets to use set literals. Patch contributed by Berker Peksag." msgstr "" -#: ../../../build/NEWS:20587 +#: ../../../build/NEWS:20810 msgid "" "`bpo-22824 `__: Updated reprlib output " "format for arrays to display empty arrays without an unnecessary empty list." " Suggested by Serhiy Storchaka." msgstr "" -#: ../../../build/NEWS:20590 +#: ../../../build/NEWS:20813 msgid "" "`bpo-22406 `__: Fixed the uu_codec codec" " incorrectly ported to 3.x. Based on patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:20593 +#: ../../../build/NEWS:20816 msgid "" "`bpo-17293 `__: uuid.getnode() now " "determines MAC address on AIX using netstat. Based on patch by Aivars " "Kalvāns." msgstr "" -#: ../../../build/NEWS:20596 +#: ../../../build/NEWS:20819 msgid "" "`bpo-22769 `__: Fixed " "ttk.Treeview.tag_has() when called without arguments." msgstr "" -#: ../../../build/NEWS:20598 +#: ../../../build/NEWS:20821 msgid "" "`bpo-22417 `__: Verify certificates by " "default in httplib (PEP 476)." msgstr "" -#: ../../../build/NEWS:20600 +#: ../../../build/NEWS:20823 msgid "" "`bpo-22775 `__: Fixed unpickling of " "http.cookies.SimpleCookie with protocol 2 and above. Patch by Tim Graham." msgstr "" -#: ../../../build/NEWS:20603 +#: ../../../build/NEWS:20826 msgid "" "`bpo-22776 `__: Brought excluded code " "into the scope of a try block in SysLogHandler.emit()." msgstr "" -#: ../../../build/NEWS:20606 +#: ../../../build/NEWS:20829 msgid "" "`bpo-22665 `__: Add missing " "get_terminal_size and SameFileError to shutil.__all__." msgstr "" -#: ../../../build/NEWS:20609 +#: ../../../build/NEWS:20832 msgid "" "`bpo-6623 `__: Remove deprecated Netrc " "class in the ftplib module. Patch by Matt Chaput." msgstr "" -#: ../../../build/NEWS:20612 +#: ../../../build/NEWS:20835 msgid "" "`bpo-17381 `__: Fixed handling of case-" "insensitive ranges in regular expressions." msgstr "" -#: ../../../build/NEWS:20615 +#: ../../../build/NEWS:20838 msgid "" "`bpo-22410 `__: Module level functions " "in the re module now cache compiled locale-dependent regular expressions " "taking into account the locale." msgstr "" -#: ../../../build/NEWS:20618 +#: ../../../build/NEWS:20841 msgid "" "`bpo-22759 `__: Query methods on " "pathlib.Path() (exists(), is_dir(), etc.) now return False when the " "underlying stat call raises NotADirectoryError." msgstr "" -#: ../../../build/NEWS:20621 +#: ../../../build/NEWS:20844 msgid "" "`bpo-8876 `__: distutils now falls back " "to copying files when hard linking doesn't work. This allows use with " "special filesystems such as VirtualBox shared folders." msgstr "" -#: ../../../build/NEWS:20625 +#: ../../../build/NEWS:20848 msgid "" "`bpo-22217 `__: Implemented reprs of " "classes in the zipfile module." msgstr "" -#: ../../../build/NEWS:20627 +#: ../../../build/NEWS:20850 msgid "" "`bpo-22457 `__: Honour load_tests in the" " start_dir of discovery." msgstr "" -#: ../../../build/NEWS:20629 +#: ../../../build/NEWS:20852 msgid "" "`bpo-18216 `__: gettext now raises an " "error when a .mo file has an unsupported major version number. Patch by " "Aaron Hill." msgstr "" -#: ../../../build/NEWS:20632 +#: ../../../build/NEWS:20855 msgid "" "`bpo-13918 `__: Provide a " "locale.delocalize() function which can remove locale-specific number " @@ -30136,33 +30559,33 @@ msgid "" "to a specific type. Patch by Cédric Krier." msgstr "" -#: ../../../build/NEWS:20636 +#: ../../../build/NEWS:20859 msgid "" "`bpo-22676 `__: Make the pickling of " "global objects which don't have a __module__ attribute less slow." msgstr "" -#: ../../../build/NEWS:20639 +#: ../../../build/NEWS:20862 msgid "" "`bpo-18853 `__: Fixed ResourceWarning in" " shlex.__nain__." msgstr "" -#: ../../../build/NEWS:20641 +#: ../../../build/NEWS:20864 msgid "" "`bpo-9351 `__: Defaults set with " "set_defaults on an argparse subparser are no longer ignored when also set on" " the parent parser." msgstr "" -#: ../../../build/NEWS:20644 +#: ../../../build/NEWS:20867 msgid "" "`bpo-7559 `__: unittest test loading " "ImportErrors are reported as import errors with their import exception " "rather than as attribute errors after the import has already failed." msgstr "" -#: ../../../build/NEWS:20648 +#: ../../../build/NEWS:20871 msgid "" "`bpo-19746 `__: Make it possible to " "examine the errors from unittest discovery without executing the test suite." @@ -30170,7 +30593,7 @@ msgid "" "encountered during discovery." msgstr "" -#: ../../../build/NEWS:20652 +#: ../../../build/NEWS:20875 msgid "" "`bpo-21991 `__: Make " "email.headerregistry's header 'params' attributes be read-only " @@ -30178,27 +30601,27 @@ msgid "" "was created on each access of the attribute." msgstr "" -#: ../../../build/NEWS:20656 +#: ../../../build/NEWS:20879 msgid "" "`bpo-22638 `__: SSLv3 is now disabled " "throughout the standard library. It can still be enabled by instantiating a " "SSLContext manually." msgstr "" -#: ../../../build/NEWS:20659 +#: ../../../build/NEWS:20882 msgid "" "`bpo-22641 `__: In asyncio, the default " "SSL context for client connections is now created using " "ssl.create_default_context(), for stronger security." msgstr "" -#: ../../../build/NEWS:20662 +#: ../../../build/NEWS:20885 msgid "" "`bpo-17401 `__: Include closefd in " "io.FileIO repr." msgstr "" -#: ../../../build/NEWS:20664 +#: ../../../build/NEWS:20887 msgid "" "`bpo-21338 `__: Add silent mode for " "compileall. quiet parameters of compile_{dir, file, path} functions now have" @@ -30206,86 +30629,86 @@ msgid "" " Patch by Thomas Kluyver." msgstr "" -#: ../../../build/NEWS:20668 +#: ../../../build/NEWS:20891 msgid "" "`bpo-20152 `__: Convert the array and " "cmath modules to Argument Clinic." msgstr "" -#: ../../../build/NEWS:20670 +#: ../../../build/NEWS:20893 msgid "" "`bpo-18643 `__: Add socket.socketpair() " "on Windows." msgstr "" -#: ../../../build/NEWS:20672 +#: ../../../build/NEWS:20895 msgid "" "`bpo-22435 `__: Fix a file descriptor " "leak when socketserver bind fails." msgstr "" -#: ../../../build/NEWS:20674 +#: ../../../build/NEWS:20897 msgid "" "`bpo-13096 `__: Fixed segfault in CTypes" " POINTER handling of large values." msgstr "" -#: ../../../build/NEWS:20676 +#: ../../../build/NEWS:20899 msgid "" "`bpo-11694 `__: Raise ConversionError in" " xdrlib as documented. Patch by Filip Gruszczyński and Claudiu Popa." msgstr "" -#: ../../../build/NEWS:20679 +#: ../../../build/NEWS:20902 msgid "" "`bpo-19380 `__: Optimized parsing of " "regular expressions." msgstr "" -#: ../../../build/NEWS:20681 +#: ../../../build/NEWS:20904 msgid "" "`bpo-1519638 `__: Now unmatched groups" " are replaced with empty strings in re.sub() and re.subn()." msgstr "" -#: ../../../build/NEWS:20684 +#: ../../../build/NEWS:20907 msgid "" "`bpo-18615 `__: sndhdr.what/whathdr now " "return a namedtuple." msgstr "" -#: ../../../build/NEWS:20686 +#: ../../../build/NEWS:20909 msgid "" "`bpo-22462 `__: Fix pyexpat's creation " "of a dummy frame to make it appear in exception tracebacks." msgstr "" -#: ../../../build/NEWS:20689 +#: ../../../build/NEWS:20912 msgid "" "`bpo-21965 `__: Add support for in-" "memory SSL to the ssl module. Patch by Geert Jansen." msgstr "" -#: ../../../build/NEWS:20692 +#: ../../../build/NEWS:20915 msgid "" "`bpo-21173 `__: Fix len() on a " "WeakKeyDictionary when .clear() was called with an iterator alive." msgstr "" -#: ../../../build/NEWS:20695 +#: ../../../build/NEWS:20918 msgid "" "`bpo-11866 `__: Eliminated race " "condition in the computation of names for new threads." msgstr "" -#: ../../../build/NEWS:20698 +#: ../../../build/NEWS:20921 msgid "" "`bpo-21905 `__: Avoid RuntimeError in " "pickle.whichmodule() when sys.modules is mutated while iterating. Patch by " "Olivier Grisel." msgstr "" -#: ../../../build/NEWS:20701 +#: ../../../build/NEWS:20924 msgid "" "`bpo-11271 `__: " "concurrent.futures.Executor.map() now takes a *chunksize* argument to allow " @@ -30293,272 +30716,272 @@ msgid "" "ProcessPoolExecutor. Patch by Dan O'Reilly." msgstr "" -#: ../../../build/NEWS:20705 +#: ../../../build/NEWS:20928 msgid "" "`bpo-21883 `__: os.path.join() and " "os.path.relpath() now raise a TypeError with more helpful error message for " "unsupported or mismatched types of arguments." msgstr "" -#: ../../../build/NEWS:20709 +#: ../../../build/NEWS:20932 msgid "" "`bpo-22219 `__: The zipfile module CLI " "now adds entries for directories (including empty directories) in ZIP file." msgstr "" -#: ../../../build/NEWS:20712 +#: ../../../build/NEWS:20935 msgid "" "`bpo-22449 `__: In the " "ssl.SSLContext.load_default_certs, consult the environmental variables " "SSL_CERT_DIR and SSL_CERT_FILE on Windows." msgstr "" -#: ../../../build/NEWS:20715 +#: ../../../build/NEWS:20938 msgid "" "`bpo-22508 `__: The email.__version__ " "variable has been removed; the email code is no longer shipped separately " "from the stdlib, and __version__ hasn't been updated in several releases." msgstr "" -#: ../../../build/NEWS:20719 +#: ../../../build/NEWS:20942 msgid "" "`bpo-20076 `__: Added non derived UTF-8 " "aliases to locale aliases table." msgstr "" -#: ../../../build/NEWS:20721 +#: ../../../build/NEWS:20944 msgid "" "`bpo-20079 `__: Added locales supported " "in glibc 2.18 to locale alias table." msgstr "" -#: ../../../build/NEWS:20723 +#: ../../../build/NEWS:20946 msgid "" "`bpo-20218 `__: Added convenience " "methods read_text/write_text and read_bytes/ write_bytes to pathlib.Path " "objects." msgstr "" -#: ../../../build/NEWS:20726 +#: ../../../build/NEWS:20949 msgid "" "`bpo-22396 `__: On 32-bit AIX platform, " "don't expose os.posix_fadvise() nor os.posix_fallocate() because their " "prototypes in system headers are wrong." msgstr "" -#: ../../../build/NEWS:20729 +#: ../../../build/NEWS:20952 msgid "" "`bpo-22517 `__: When an " "io.BufferedRWPair object is deallocated, clear its weakrefs." msgstr "" -#: ../../../build/NEWS:20732 +#: ../../../build/NEWS:20955 msgid "" "`bpo-22437 `__: Number of capturing " "groups in regular expression is no longer limited by 100." msgstr "" -#: ../../../build/NEWS:20735 +#: ../../../build/NEWS:20958 msgid "" "`bpo-17442 `__: InteractiveInterpreter " "now displays the full chained traceback in its showtraceback method, to " "match the built in interactive interpreter." msgstr "" -#: ../../../build/NEWS:20739 +#: ../../../build/NEWS:20962 msgid "" "`bpo-23392 `__: Added tests for marshal " "C API that works with FILE*." msgstr "" -#: ../../../build/NEWS:20741 +#: ../../../build/NEWS:20964 msgid "" "`bpo-10510 `__: distutils register and " "upload methods now use HTML standards compliant CRLF line endings." msgstr "" -#: ../../../build/NEWS:20744 +#: ../../../build/NEWS:20967 msgid "" "`bpo-9850 `__: Fixed macpath.join() for " "empty first component. Patch by Oleg Oshmyan." msgstr "" -#: ../../../build/NEWS:20747 +#: ../../../build/NEWS:20970 msgid "" "`bpo-5309 `__: distutils' build and " "build_ext commands now accept a ``-j`` option to enable parallel building of" " extension modules." msgstr "" -#: ../../../build/NEWS:20750 +#: ../../../build/NEWS:20973 msgid "" "`bpo-22448 `__: Improve canceled timer " "handles cleanup to prevent unbound memory usage. Patch by Joshua Moore-" "Oliva." msgstr "" -#: ../../../build/NEWS:20753 +#: ../../../build/NEWS:20976 msgid "" "`bpo-22427 `__: TemporaryDirectory no " "longer attempts to clean up twice when used in the with statement in " "generator." msgstr "" -#: ../../../build/NEWS:20756 +#: ../../../build/NEWS:20979 msgid "" "`bpo-22362 `__: Forbidden ambiguous " "octal escapes out of range 0-0o377 in regular expressions." msgstr "" -#: ../../../build/NEWS:20759 +#: ../../../build/NEWS:20982 msgid "" "`bpo-20912 `__: Now directories added to" " ZIP file have correct Unix and MS-DOS directory attributes." msgstr "" -#: ../../../build/NEWS:20762 +#: ../../../build/NEWS:20985 msgid "" "`bpo-21866 `__: ZipFile.close() no " "longer writes ZIP64 central directory records if allowZip64 is false." msgstr "" -#: ../../../build/NEWS:20765 +#: ../../../build/NEWS:20988 msgid "" "`bpo-22278 `__: Fix urljoin problem with" " relative urls, a regression observed after changes to issue22118 were " "submitted." msgstr "" -#: ../../../build/NEWS:20768 +#: ../../../build/NEWS:20991 msgid "" "`bpo-22415 `__: Fixed debugging output " "of the GROUPREF_EXISTS opcode in the re module. Removed trailing spaces in " "debugging output." msgstr "" -#: ../../../build/NEWS:20771 +#: ../../../build/NEWS:20994 msgid "" "`bpo-22423 `__: Unhandled exception in " "thread no longer causes unhandled AttributeError when sys.stderr is None." msgstr "" -#: ../../../build/NEWS:20774 +#: ../../../build/NEWS:20997 msgid "" "`bpo-21332 `__: Ensure that " "``bufsize=1`` in subprocess.Popen() selects line buffering, rather than " "block buffering. Patch by Akira Li." msgstr "" -#: ../../../build/NEWS:20777 +#: ../../../build/NEWS:21000 msgid "" "`bpo-21091 `__: Fix API bug: " "email.message.EmailMessage.is_attachment is now a method." msgstr "" -#: ../../../build/NEWS:20780 +#: ../../../build/NEWS:21003 msgid "" "`bpo-21079 `__: Fix " "email.message.EmailMessage.is_attachment to return the correct result when " "the header has parameters as well as a value." msgstr "" -#: ../../../build/NEWS:20783 +#: ../../../build/NEWS:21006 msgid "" "`bpo-22247 `__: Add NNTPError to " "nntplib.__all__." msgstr "" -#: ../../../build/NEWS:20785 +#: ../../../build/NEWS:21008 msgid "" "`bpo-22366 `__: urllib.request.urlopen " "will accept a context object (SSLContext) as an argument which will then be " "used for HTTPS connection. Patch by Alex Gaynor." msgstr "" -#: ../../../build/NEWS:20789 +#: ../../../build/NEWS:21012 msgid "" "`bpo-4180 `__: The warnings registries " "are now reset when the filters are modified." msgstr "" -#: ../../../build/NEWS:20792 +#: ../../../build/NEWS:21015 msgid "" "`bpo-22419 `__: Limit the length of " "incoming HTTP request in wsgiref server to 65536 bytes and send a 414 error " "code for higher lengths. Patch contributed by Devin Cook." msgstr "" -#: ../../../build/NEWS:20796 +#: ../../../build/NEWS:21019 msgid "" "Lax cookie parsing in http.cookies could be a security issue when combined " "with non-standard cookie handling in some Web browsers. Reported by Sergey " "Bobrov." msgstr "" -#: ../../../build/NEWS:20800 +#: ../../../build/NEWS:21023 msgid "" "`bpo-20537 `__: logging methods now " "accept an exception instance as well as a Boolean value or exception tuple. " "Thanks to Yury Selivanov for the patch." msgstr "" -#: ../../../build/NEWS:20803 +#: ../../../build/NEWS:21026 msgid "" "`bpo-22384 `__: An exception in Tkinter " "callback no longer crashes the program when it is run with pythonw.exe." msgstr "" -#: ../../../build/NEWS:20806 +#: ../../../build/NEWS:21029 msgid "" "`bpo-22168 `__: Prevent turtle " "AttributeError with non-default Canvas on OS X." msgstr "" -#: ../../../build/NEWS:20808 +#: ../../../build/NEWS:21031 msgid "" "`bpo-21147 `__: sqlite3 now raises an " "exception if the request contains a null character instead of truncating it." " Based on patch by Victor Stinner." msgstr "" -#: ../../../build/NEWS:20811 +#: ../../../build/NEWS:21034 msgid "" "`bpo-13968 `__: The glob module now " "supports recursive search in subdirectories using the ``**`` pattern." msgstr "" -#: ../../../build/NEWS:20814 +#: ../../../build/NEWS:21037 msgid "" "`bpo-21951 `__: Fixed a crash in Tkinter" " on AIX when called Tcl command with empty string or tuple argument." msgstr "" -#: ../../../build/NEWS:20817 +#: ../../../build/NEWS:21040 msgid "" "`bpo-21951 `__: Tkinter now most likely " "raises MemoryError instead of crash if the memory allocation fails." msgstr "" -#: ../../../build/NEWS:20820 +#: ../../../build/NEWS:21043 msgid "" "`bpo-22338 `__: Fix a crash in the json " "module on memory allocation failure." msgstr "" -#: ../../../build/NEWS:20822 +#: ../../../build/NEWS:21045 msgid "" "`bpo-12410 `__: imaplib.IMAP4 now " "supports the context management protocol. Original patch by Tarek Ziadé." msgstr "" -#: ../../../build/NEWS:20825 +#: ../../../build/NEWS:21048 msgid "" "`bpo-21270 `__: We now override tuple " "methods in mock.call objects so that they can be used as normal call " "attributes." msgstr "" -#: ../../../build/NEWS:20828 +#: ../../../build/NEWS:21051 msgid "" "`bpo-16662 `__: load_tests() is now " "unconditionally run when it is present in a package's __init__.py. " @@ -30567,33 +30990,33 @@ msgid "" " documented. Patch given by Robert Collins, tweaked by Barry Warsaw." msgstr "" -#: ../../../build/NEWS:20834 +#: ../../../build/NEWS:21057 msgid "" "`bpo-22226 `__: First letter no longer " "is stripped from the \"status\" key in the result of Treeview.heading()." msgstr "" -#: ../../../build/NEWS:20837 +#: ../../../build/NEWS:21060 msgid "" "`bpo-19524 `__: Fixed resource leak in " "the HTTP connection when an invalid response is received. Patch by Martin " "Panter." msgstr "" -#: ../../../build/NEWS:20840 +#: ../../../build/NEWS:21063 msgid "" "`bpo-20421 `__: Add a .version() method " "to SSL sockets exposing the actual protocol version in use." msgstr "" -#: ../../../build/NEWS:20843 +#: ../../../build/NEWS:21066 msgid "" "`bpo-19546 `__: configparser exceptions " "no longer expose implementation details. Chained KeyErrors are removed, " "which leads to cleaner tracebacks. Patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:20847 +#: ../../../build/NEWS:21070 msgid "" "`bpo-22051 `__: turtledemo no longer " "reloads examples to re-run them. Initialization of variables and gui setup " @@ -30601,14 +31024,14 @@ msgid "" "on import." msgstr "" -#: ../../../build/NEWS:20851 +#: ../../../build/NEWS:21074 msgid "" "`bpo-21933 `__: Turtledemo users can " "change the code font size with a menu selection or control(command) '-' or " "'+' or control-mousewheel. Original patch by Lita Cho." msgstr "" -#: ../../../build/NEWS:20855 +#: ../../../build/NEWS:21078 msgid "" "`bpo-21597 `__: The separator between " "the turtledemo text pane and the drawing canvas can now be grabbed and " @@ -30617,14 +31040,14 @@ msgid "" "screens. Original patches by Jan Kanis and Lita Cho." msgstr "" -#: ../../../build/NEWS:20861 +#: ../../../build/NEWS:21084 msgid "" "`bpo-18132 `__: Turtledemo buttons no " "longer disappear when the window is shrunk. Original patches by Jan Kanis " "and Lita Cho." msgstr "" -#: ../../../build/NEWS:20864 +#: ../../../build/NEWS:21087 msgid "" "`bpo-22043 `__: time.monotonic() is now " "always available. ``threading.Lock.acquire()``, " @@ -30632,14 +31055,14 @@ msgid "" "clock, instead of the system clock, when a timeout is used." msgstr "" -#: ../../../build/NEWS:20869 +#: ../../../build/NEWS:21092 msgid "" "`bpo-21527 `__: Add a default number of " "workers to ThreadPoolExecutor equal to 5 times the number of CPUs. Patch by" " Claudiu Popa." msgstr "" -#: ../../../build/NEWS:20872 +#: ../../../build/NEWS:21095 msgid "" "`bpo-22216 `__: smtplib now resets its " "state more completely after a quit. The most obvious consequence of the " @@ -30647,21 +31070,21 @@ msgid "" "connect/starttls/quit/connect/starttls sequence." msgstr "" -#: ../../../build/NEWS:20876 +#: ../../../build/NEWS:21099 msgid "" "`bpo-22098 `__: ctypes' " "BigEndianStructure and LittleEndianStructure now define an empty __slots__ " "so that subclasses don't always get an instance dict. Patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:20880 +#: ../../../build/NEWS:21103 msgid "" "`bpo-22185 `__: Fix an occasional " "RuntimeError in threading.Condition.wait() caused by mutation of the waiters" " queue without holding the lock. Patch by Doug Zongker." msgstr "" -#: ../../../build/NEWS:20884 +#: ../../../build/NEWS:21107 msgid "" "`bpo-22287 `__: On UNIX, " "_PyTime_gettimeofday() now uses clock_gettime(CLOCK_REALTIME) if available. " @@ -30669,202 +31092,202 @@ msgid "" "Linux (only with glibc older than 2.17)." msgstr "" -#: ../../../build/NEWS:20889 +#: ../../../build/NEWS:21112 msgid "" "`bpo-22182 `__: Use e.args to unpack " "exceptions correctly in distutils.file_util.move_file. Patch by Claudiu " "Popa." msgstr "" -#: ../../../build/NEWS:20892 +#: ../../../build/NEWS:21115 msgid "" "The webbrowser module now uses subprocess's start_new_session=True rather " "than a potentially risky preexec_fn=os.setsid call." msgstr "" -#: ../../../build/NEWS:20895 +#: ../../../build/NEWS:21118 msgid "" "`bpo-22042 `__: signal.set_wakeup_fd(fd)" " now raises an exception if the file descriptor is in blocking mode." msgstr "" -#: ../../../build/NEWS:20898 +#: ../../../build/NEWS:21121 msgid "" "`bpo-16808 `__: inspect.stack() now " "returns a named tuple instead of a tuple. Patch by Daniel Shahaf." msgstr "" -#: ../../../build/NEWS:20901 +#: ../../../build/NEWS:21124 msgid "" "`bpo-22236 `__: Fixed Tkinter images " "copying operations in NoDefaultRoot mode." msgstr "" -#: ../../../build/NEWS:20903 +#: ../../../build/NEWS:21126 msgid "" "`bpo-2527 `__: Add a *globals* argument " "to timeit functions, in order to override the globals namespace in which the" " timed code is executed. Patch by Ben Roberts." msgstr "" -#: ../../../build/NEWS:20907 +#: ../../../build/NEWS:21130 msgid "" "`bpo-22118 `__: Switch urllib.parse to " "use RFC 3986 semantics for the resolution of relative URLs, rather than RFCs" " 1808 and 2396. Patch by Demian Brecht." msgstr "" -#: ../../../build/NEWS:20911 +#: ../../../build/NEWS:21134 msgid "" "`bpo-21549 `__: Added the \"members\" " "parameter to TarFile.list()." msgstr "" -#: ../../../build/NEWS:20913 +#: ../../../build/NEWS:21136 msgid "" "`bpo-19628 `__: Allow compileall " "recursion depth to be specified with a -r option." msgstr "" -#: ../../../build/NEWS:20916 +#: ../../../build/NEWS:21139 msgid "" "`bpo-15696 `__: Add a __sizeof__ " "implementation for mmap objects on Windows." msgstr "" -#: ../../../build/NEWS:20918 +#: ../../../build/NEWS:21141 msgid "" "`bpo-22068 `__: Avoided reference loops " "with Variables and Fonts in Tkinter." msgstr "" -#: ../../../build/NEWS:20920 +#: ../../../build/NEWS:21143 msgid "" "`bpo-22165 `__: SimpleHTTPRequestHandler" " now supports undecodable file names." msgstr "" -#: ../../../build/NEWS:20922 +#: ../../../build/NEWS:21145 msgid "" "`bpo-15381 `__: Optimized line reading " "in io.BytesIO." msgstr "" -#: ../../../build/NEWS:20924 +#: ../../../build/NEWS:21147 msgid "" "`bpo-8797 `__: Raise HTTPError on failed " "Basic Authentication immediately. Initial patch by Sam Bull." msgstr "" -#: ../../../build/NEWS:20927 +#: ../../../build/NEWS:21150 msgid "" "`bpo-20729 `__: Restored the use of lazy" " iterkeys()/itervalues()/iteritems() in the mailbox module." msgstr "" -#: ../../../build/NEWS:20930 +#: ../../../build/NEWS:21153 msgid "" "`bpo-21448 `__: Changed FeedParser " "feed() to avoid O(N**2) behavior when parsing long line. Original patch by " "Raymond Hettinger." msgstr "" -#: ../../../build/NEWS:20933 +#: ../../../build/NEWS:21156 msgid "" "`bpo-22184 `__: The functools LRU Cache " "decorator factory now gives an earlier and clearer error message when the " "user forgets the required parameters." msgstr "" -#: ../../../build/NEWS:20936 +#: ../../../build/NEWS:21159 msgid "" "`bpo-17923 `__: glob() patterns ending " "with a slash no longer match non-dirs on AIX. Based on patch by Delhallt." msgstr "" -#: ../../../build/NEWS:20939 +#: ../../../build/NEWS:21162 msgid "" "`bpo-21725 `__: Added support for RFC " "6531 (SMTPUTF8) in smtpd." msgstr "" -#: ../../../build/NEWS:20941 +#: ../../../build/NEWS:21164 msgid "" "`bpo-22176 `__: Update the ctypes " "module's libffi to v3.1. This release adds support for the Linux AArch64 " "and POWERPC ELF ABIv2 little endian architectures." msgstr "" -#: ../../../build/NEWS:20945 +#: ../../../build/NEWS:21168 msgid "" "`bpo-5411 `__: Added support for the " "\"xztar\" format in the shutil module." msgstr "" -#: ../../../build/NEWS:20947 +#: ../../../build/NEWS:21170 msgid "" "`bpo-21121 `__: Don't force 3rd party C " "extensions to be built with -Werror=declaration-after-statement." msgstr "" -#: ../../../build/NEWS:20950 +#: ../../../build/NEWS:21173 msgid "" "`bpo-21975 `__: Fixed crash when using " "uninitialized sqlite3.Row (in particular when unpickling pickled " "sqlite3.Row). sqlite3.Row is now initialized in the __new__() method." msgstr "" -#: ../../../build/NEWS:20954 +#: ../../../build/NEWS:21177 msgid "" "`bpo-20170 `__: Convert posixmodule to " "use Argument Clinic." msgstr "" -#: ../../../build/NEWS:20956 +#: ../../../build/NEWS:21179 msgid "" "`bpo-21539 `__: Add an *exists_ok* " "argument to `Pathlib.mkdir()` to mimic `mkdir -p` and `os.makedirs()` " "functionality. When true, ignore FileExistsErrors. Patch by Berker Peksag." msgstr "" -#: ../../../build/NEWS:20960 +#: ../../../build/NEWS:21183 msgid "" "`bpo-22127 `__: Bypass IDNA for pure-" "ASCII host names in the socket module (in particular for numeric IPs)." msgstr "" -#: ../../../build/NEWS:20963 +#: ../../../build/NEWS:21186 msgid "" "`bpo-21047 `__: set the default value " "for the *convert_charrefs* argument of HTMLParser to True. Patch by Berker " "Peksag." msgstr "" -#: ../../../build/NEWS:20966 +#: ../../../build/NEWS:21189 msgid "Add an __all__ to html.entities." msgstr "Menambahkan sebuah __all__ ke html.entities." -#: ../../../build/NEWS:20968 +#: ../../../build/NEWS:21191 msgid "" "`bpo-15114 `__: the strict mode and " "argument of HTMLParser, HTMLParser.error, and the HTMLParserError exception " "have been removed." msgstr "" -#: ../../../build/NEWS:20971 +#: ../../../build/NEWS:21194 msgid "" "`bpo-22085 `__: Dropped support of Tk " "8.3 in Tkinter." msgstr "" -#: ../../../build/NEWS:20973 +#: ../../../build/NEWS:21196 msgid "" "`bpo-21580 `__: Now Tkinter correctly " "handles bytes arguments passed to Tk. In particular this allows initializing" " images from binary data." msgstr "" -#: ../../../build/NEWS:20976 +#: ../../../build/NEWS:21199 msgid "" "`bpo-22003 `__: When initialized from a " "bytes object, io.BytesIO() now defers making a copy until it is mutated, " @@ -30872,14 +31295,14 @@ msgid "" "Wilson." msgstr "" -#: ../../../build/NEWS:20980 +#: ../../../build/NEWS:21203 msgid "" "`bpo-22018 `__: On Windows, " "signal.set_wakeup_fd() now also supports sockets. A side effect is that " "Python depends to the WinSock library." msgstr "" -#: ../../../build/NEWS:20983 +#: ../../../build/NEWS:21206 msgid "" "`bpo-22054 `__: Add os.get_blocking() " "and os.set_blocking() functions to get and set the blocking mode of a file " @@ -30887,58 +31310,58 @@ msgid "" "functions are not available on Windows." msgstr "" -#: ../../../build/NEWS:20988 +#: ../../../build/NEWS:21211 msgid "" "`bpo-17172 `__: Make turtledemo start as" " active on OS X even when run with subprocess. Patch by Lita Cho." msgstr "" -#: ../../../build/NEWS:20991 +#: ../../../build/NEWS:21214 msgid "" "`bpo-21704 `__: Fix build error for " "_multiprocessing when semaphores are not available. Patch by Arfrever " "Frehtes Taifersar Arahesis." msgstr "" -#: ../../../build/NEWS:20994 +#: ../../../build/NEWS:21217 msgid "" "`bpo-20173 `__: Convert sha1, sha256, " "sha512 and md5 to ArgumentClinic. Patch by Vajrasky Kok." msgstr "" -#: ../../../build/NEWS:20997 +#: ../../../build/NEWS:21220 msgid "" "Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError on" " closed socket. repr(socket.socket) already works fine." msgstr "" -#: ../../../build/NEWS:21000 +#: ../../../build/NEWS:21223 msgid "" "`bpo-22033 `__: Reprs of most Python " "implemented classes now contain actual class name instead of hardcoded one." msgstr "" -#: ../../../build/NEWS:21003 +#: ../../../build/NEWS:21226 msgid "" "`bpo-21947 `__: The dis module can now " "disassemble generator-iterator objects based on their gi_code attribute. " "Patch by Clement Rouault." msgstr "" -#: ../../../build/NEWS:21006 +#: ../../../build/NEWS:21229 msgid "" "`bpo-16133 `__: The " "asynchat.async_chat.handle_read() method now ignores BlockingIOError " "exceptions." msgstr "" -#: ../../../build/NEWS:21009 +#: ../../../build/NEWS:21232 msgid "" "`bpo-22044 `__: Fixed premature DECREF " "in call_tzinfo_method. Patch by Tom Flanagan." msgstr "" -#: ../../../build/NEWS:21012 +#: ../../../build/NEWS:21235 msgid "" "`bpo-19884 `__: readline: Disable the " "meta modifier key if stdout is not a terminal to not write the ANSI sequence" @@ -30946,77 +31369,77 @@ msgid "" "(ex: TERM=xterm-256color\") to enable support of 8 bit characters." msgstr "" -#: ../../../build/NEWS:21017 +#: ../../../build/NEWS:21240 msgid "" "`bpo-4350 `__: Removed a number of out-" "of-dated and non-working for a long time Tkinter methods." msgstr "" -#: ../../../build/NEWS:21020 +#: ../../../build/NEWS:21243 msgid "" "`bpo-6167 `__: Scrollbar.activate() now " "returns the name of active element if the argument is not specified. " "Scrollbar.set() now always accepts only 2 arguments." msgstr "" -#: ../../../build/NEWS:21024 +#: ../../../build/NEWS:21247 msgid "" "`bpo-15275 `__: Clean up and speed up " "the ntpath module." msgstr "" -#: ../../../build/NEWS:21026 +#: ../../../build/NEWS:21249 msgid "" "`bpo-21888 `__: plistlib's load() and " "loads() now work if the fmt parameter is specified." msgstr "" -#: ../../../build/NEWS:21029 +#: ../../../build/NEWS:21252 msgid "" "`bpo-22032 `__: __qualname__ instead of " "__name__ is now always used to format fully qualified class names of Python " "implemented classes." msgstr "" -#: ../../../build/NEWS:21032 +#: ../../../build/NEWS:21255 msgid "" "`bpo-22031 `__: Reprs now always use " "hexadecimal format with the \"0x\" prefix when contain an id in form \" at " "0x...\"." msgstr "" -#: ../../../build/NEWS:21035 +#: ../../../build/NEWS:21258 msgid "" "`bpo-22018 `__: signal.set_wakeup_fd() " "now raises an OSError instead of a ValueError on ``fstat()`` failure." msgstr "" -#: ../../../build/NEWS:21038 +#: ../../../build/NEWS:21261 msgid "" "`bpo-21044 `__: tarfile.open() now " "handles fileobj with an integer 'name' attribute. Based on patch by Antoine" " Pietri." msgstr "" -#: ../../../build/NEWS:21041 +#: ../../../build/NEWS:21264 msgid "" "`bpo-21966 `__: Respect -q command-line " "option when code module is ran." msgstr "" -#: ../../../build/NEWS:21043 +#: ../../../build/NEWS:21266 msgid "" "`bpo-19076 `__: Don't pass the redundant" " 'file' argument to self.error()." msgstr "" -#: ../../../build/NEWS:21045 +#: ../../../build/NEWS:21268 msgid "" "`bpo-16382 `__: Improve exception " "message of warnings.warn() for bad category. Initial patch by Phil Elson." msgstr "" -#: ../../../build/NEWS:21048 +#: ../../../build/NEWS:21271 msgid "" "`bpo-21932 `__: os.read() now uses a " ":c:func:`Py_ssize_t` type instead of :c:type:`int` for the size to support " @@ -31025,93 +31448,93 @@ msgid "" "number of requested bytes." msgstr "" -#: ../../../build/NEWS:21053 +#: ../../../build/NEWS:21276 msgid "" "`bpo-21942 `__: Fixed source file " "viewing in pydoc's server mode on Windows." msgstr "" -#: ../../../build/NEWS:21055 +#: ../../../build/NEWS:21278 msgid "" "`bpo-11259 `__: " "asynchat.async_chat().set_terminator() now raises a ValueError if the number" " of received bytes is negative." msgstr "" -#: ../../../build/NEWS:21058 +#: ../../../build/NEWS:21281 msgid "" "`bpo-12523 `__: " "asynchat.async_chat.push() now raises a TypeError if it doesn't get a bytes " "string" msgstr "" -#: ../../../build/NEWS:21061 +#: ../../../build/NEWS:21284 msgid "" "`bpo-21707 `__: Add missing " "kwonlyargcount argument to ModuleFinder.replace_paths_in_code()." msgstr "" -#: ../../../build/NEWS:21064 +#: ../../../build/NEWS:21287 msgid "" "`bpo-20639 `__: calling " "Path.with_suffix('') allows removing the suffix again. Patch by July " "Tikhonov." msgstr "" -#: ../../../build/NEWS:21067 +#: ../../../build/NEWS:21290 msgid "" "`bpo-21714 `__: Disallow the " "construction of invalid paths using Path.with_name(). Original patch by " "Antony Lee." msgstr "" -#: ../../../build/NEWS:21070 +#: ../../../build/NEWS:21293 msgid "" "`bpo-15014 `__: Added 'auth' method to " "smtplib to make implementing auth mechanisms simpler, and used it internally" " in the login method." msgstr "" -#: ../../../build/NEWS:21073 +#: ../../../build/NEWS:21296 msgid "" "`bpo-21151 `__: Fixed a segfault in the " "winreg module when ``None`` is passed as a ``REG_BINARY`` value to " "SetValueEx. Patch by John Ehresman." msgstr "" -#: ../../../build/NEWS:21076 +#: ../../../build/NEWS:21299 msgid "" "`bpo-21090 `__: io.FileIO.readall() does" " not ignore I/O errors anymore. Before, it ignored I/O errors if at least " "the first C call read() succeed." msgstr "" -#: ../../../build/NEWS:21079 +#: ../../../build/NEWS:21302 msgid "" "`bpo-5800 `__: headers parameter of " "wsgiref.headers.Headers is now optional. Initial patch by Pablo Torres " "Navarrete and SilentGhost." msgstr "" -#: ../../../build/NEWS:21082 +#: ../../../build/NEWS:21305 msgid "" "`bpo-21781 `__: ssl.RAND_add() now " "supports strings longer than 2 GB." msgstr "" -#: ../../../build/NEWS:21084 +#: ../../../build/NEWS:21307 msgid "" "`bpo-21679 `__: Prevent extraneous " "fstat() calls during open(). Patch by Bohuslav Kabrda." msgstr "" -#: ../../../build/NEWS:21087 +#: ../../../build/NEWS:21310 msgid "" "`bpo-21863 `__: cProfile now displays " "the module name of C extension functions, in addition to their own name." msgstr "" -#: ../../../build/NEWS:21090 +#: ../../../build/NEWS:21313 msgid "" "`bpo-11453 `__: asyncore: emit a " "ResourceWarning when an unclosed file_wrapper object is destroyed. The " @@ -31119,86 +31542,86 @@ msgid "" "called twice: the second call does nothing." msgstr "" -#: ../../../build/NEWS:21094 +#: ../../../build/NEWS:21317 msgid "" "`bpo-21858 `__: Better handling of " "Python exceptions in the sqlite3 module." msgstr "" -#: ../../../build/NEWS:21096 +#: ../../../build/NEWS:21319 msgid "" "`bpo-21476 `__: Make sure the " "email.parser.BytesParser TextIOWrapper is discarded after parsing, so the " "input file isn't unexpectedly closed." msgstr "" -#: ../../../build/NEWS:21099 +#: ../../../build/NEWS:21322 msgid "" "`bpo-20295 `__: imghdr now recognizes " "OpenEXR format images." msgstr "" -#: ../../../build/NEWS:21101 +#: ../../../build/NEWS:21324 msgid "" "`bpo-21729 `__: Used the \"with\" " "statement in the dbm.dumb module to ensure files closing. Patch by Claudiu " "Popa." msgstr "" -#: ../../../build/NEWS:21104 +#: ../../../build/NEWS:21327 msgid "" "`bpo-21491 `__: socketserver: Fix a race" " condition in child processes reaping." msgstr "" -#: ../../../build/NEWS:21106 +#: ../../../build/NEWS:21329 msgid "" "`bpo-21719 `__: Added the " "``st_file_attributes`` field to os.stat_result on Windows." msgstr "" -#: ../../../build/NEWS:21109 +#: ../../../build/NEWS:21332 msgid "" "`bpo-21832 `__: Require named tuple " "inputs to be exact strings." msgstr "" -#: ../../../build/NEWS:21111 +#: ../../../build/NEWS:21334 msgid "" "`bpo-21722 `__: The distutils \"upload\"" " command now exits with a non-zero return code when uploading fails. Patch " "by Martin Dengler." msgstr "" -#: ../../../build/NEWS:21114 +#: ../../../build/NEWS:21337 msgid "" "`bpo-21723 `__: asyncio.Queue: support " "any type of number (ex: float) for the maximum size. Patch written by " "Vajrasky Kok." msgstr "" -#: ../../../build/NEWS:21117 +#: ../../../build/NEWS:21340 msgid "" "`bpo-21711 `__: support for \"site-" "python\" directories has now been removed from the site module (it was " "deprecated in 3.4)." msgstr "" -#: ../../../build/NEWS:21120 +#: ../../../build/NEWS:21343 msgid "" "`bpo-17552 `__: new socket.sendfile() " "method allowing a file to be sent over a socket by using high-performance " "os.sendfile() on UNIX. Patch by Giampaolo Rodola'." msgstr "" -#: ../../../build/NEWS:21124 +#: ../../../build/NEWS:21347 msgid "" "`bpo-18039 `__: dbm.dump.open() now " "always creates a new database when the flag has the value 'n'. Patch by " "Claudiu Popa." msgstr "" -#: ../../../build/NEWS:21127 +#: ../../../build/NEWS:21350 msgid "" "`bpo-21326 `__: Add a new is_closed() " "method to asyncio.BaseEventLoop. run_forever() and run_until_complete() " @@ -31206,58 +31629,58 @@ msgid "" "was closed." msgstr "" -#: ../../../build/NEWS:21131 +#: ../../../build/NEWS:21354 msgid "" "`bpo-21766 `__: Prevent a security hole " "in CGIHTTPServer by URL unquoting paths before checking for a CGI script at " "that path." msgstr "" -#: ../../../build/NEWS:21134 +#: ../../../build/NEWS:21357 msgid "" "`bpo-21310 `__: Fixed possible resource " "leak in failed open()." msgstr "" -#: ../../../build/NEWS:21136 +#: ../../../build/NEWS:21359 msgid "" "`bpo-21256 `__: Printout of keyword args" " should be in deterministic order in a mock function call. This will help to" " write better doctests." msgstr "" -#: ../../../build/NEWS:21139 +#: ../../../build/NEWS:21362 msgid "" "`bpo-21677 `__: Fixed chaining " "nonnormalized exceptions in io close() methods." msgstr "" -#: ../../../build/NEWS:21141 +#: ../../../build/NEWS:21364 msgid "" "`bpo-11709 `__: Fix the pydoc.help " "function to not fail when sys.stdin is not a valid file." msgstr "" -#: ../../../build/NEWS:21144 +#: ../../../build/NEWS:21367 msgid "" "`bpo-21515 `__: tempfile.TemporaryFile " "now uses os.O_TMPFILE flag is available." msgstr "" -#: ../../../build/NEWS:21146 +#: ../../../build/NEWS:21369 msgid "" "`bpo-13223 `__: Fix pydoc.writedoc so " "that the HTML documentation for methods that use 'self' in the example code " "is generated correctly." msgstr "" -#: ../../../build/NEWS:21149 +#: ../../../build/NEWS:21372 msgid "" "`bpo-21463 `__: In urllib.request, fix " "pruning of the FTP cache." msgstr "" -#: ../../../build/NEWS:21151 +#: ../../../build/NEWS:21374 msgid "" "`bpo-21618 `__: The subprocess module " "could fail to close open fds that were inherited by the calling process and " @@ -31266,21 +31689,21 @@ msgid "" "ignored and all fds are closed." msgstr "" -#: ../../../build/NEWS:21156 +#: ../../../build/NEWS:21379 msgid "" "`bpo-20383 `__: Introduce " "importlib.util.module_from_spec() as the preferred way to create a new " "module." msgstr "" -#: ../../../build/NEWS:21159 +#: ../../../build/NEWS:21382 msgid "" "`bpo-21552 `__: Fixed possible integer " "overflow of too long string lengths in the tkinter module on 64-bit " "platforms." msgstr "" -#: ../../../build/NEWS:21162 +#: ../../../build/NEWS:21385 msgid "" "`bpo-14315 `__: The zipfile module now " "ignores extra fields in the central directory that are too short to be " @@ -31289,249 +31712,249 @@ msgid "" "other zip tools." msgstr "" -#: ../../../build/NEWS:21167 +#: ../../../build/NEWS:21390 msgid "" "`bpo-13742 `__: Added \"key\" and " "\"reverse\" parameters to heapq.merge(). (First draft of patch contributed " "by Simon Sapin.)" msgstr "" -#: ../../../build/NEWS:21170 +#: ../../../build/NEWS:21393 msgid "" "`bpo-21402 `__: tkinter.ttk now works " "when default root window is not set." msgstr "" -#: ../../../build/NEWS:21172 +#: ../../../build/NEWS:21395 msgid "" "`bpo-3015 `__: _tkinter.create() now " "creates tkapp object with wantobject=1 by default." msgstr "" -#: ../../../build/NEWS:21175 +#: ../../../build/NEWS:21398 msgid "" "`bpo-10203 `__: sqlite3.Row now truly " "supports sequence protocol. In particular it supports reverse() and " "negative indices. Original patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:21179 +#: ../../../build/NEWS:21402 msgid "" "`bpo-18807 `__: If copying (no symlinks)" " specified for a venv, then the python interpreter aliases (python, python3)" " are now created by copying rather than symlinking." msgstr "" -#: ../../../build/NEWS:21183 +#: ../../../build/NEWS:21406 msgid "" "`bpo-20197 `__: Added support for the " "WebP image type in the imghdr module. Patch by Fabrice Aneche and Claudiu " "Popa." msgstr "" -#: ../../../build/NEWS:21186 +#: ../../../build/NEWS:21409 msgid "" "`bpo-21513 `__: Speedup some properties " "of IP addresses (IPv4Address, IPv6Address) such as .is_private or " ".is_multicast." msgstr "" -#: ../../../build/NEWS:21189 +#: ../../../build/NEWS:21412 msgid "" "`bpo-21137 `__: Improve the repr for " "threading.Lock() and its variants by showing the \"locked\" or \"unlocked\" " "status. Patch by Berker Peksag." msgstr "" -#: ../../../build/NEWS:21192 +#: ../../../build/NEWS:21415 msgid "" "`bpo-21538 `__: The plistlib module now " "supports loading of binary plist files when reference or offset size is not " "a power of two." msgstr "" -#: ../../../build/NEWS:21195 +#: ../../../build/NEWS:21418 msgid "" "`bpo-21455 `__: Add a default backlog to" " socket.listen()." msgstr "" -#: ../../../build/NEWS:21197 +#: ../../../build/NEWS:21420 msgid "" "`bpo-21525 `__: Most Tkinter methods " "which accepted tuples now accept lists too." msgstr "" -#: ../../../build/NEWS:21200 +#: ../../../build/NEWS:21423 msgid "" "`bpo-22166 `__: With the assistance of a" " new internal _codecs._forget_codec helping function, test_codecs now clears" " the encoding caches to avoid the appearance of a reference leak" msgstr "" -#: ../../../build/NEWS:21204 +#: ../../../build/NEWS:21427 msgid "" "`bpo-22236 `__: Tkinter tests now don't " "reuse default root window. New root window is created for every test class." msgstr "" -#: ../../../build/NEWS:21207 +#: ../../../build/NEWS:21430 msgid "" "`bpo-10744 `__: Fix :pep:`3118` format " "strings on ctypes objects with a nontrivial shape." msgstr "" -#: ../../../build/NEWS:21210 +#: ../../../build/NEWS:21433 msgid "" "`bpo-20826 `__: Optimize " "ipaddress.collapse_addresses()." msgstr "" -#: ../../../build/NEWS:21212 +#: ../../../build/NEWS:21435 msgid "" "`bpo-21487 `__: Optimize " "ipaddress.summarize_address_range() and " "ipaddress.{IPv4Network,IPv6Network}.subnets()." msgstr "" -#: ../../../build/NEWS:21215 +#: ../../../build/NEWS:21438 msgid "" "`bpo-21486 `__: Optimize parsing of " "netmasks in ipaddress.IPv4Network and ipaddress.IPv6Network." msgstr "" -#: ../../../build/NEWS:21218 +#: ../../../build/NEWS:21441 msgid "" "`bpo-13916 `__: Disallowed the " "surrogatepass error handler for non UTF-\\* encodings." msgstr "" -#: ../../../build/NEWS:21221 +#: ../../../build/NEWS:21444 msgid "" "`bpo-20998 `__: Fixed re.fullmatch() of " "repeated single character pattern with ignore case. Original patch by " "Matthew Barnett." msgstr "" -#: ../../../build/NEWS:21224 +#: ../../../build/NEWS:21447 msgid "" "`bpo-21075 `__: fileinput.FileInput now " "reads bytes from standard stream if binary mode is specified. Patch by Sam " "Kimbrel." msgstr "" -#: ../../../build/NEWS:21227 +#: ../../../build/NEWS:21450 msgid "" "`bpo-19775 `__: Add a samefile() method " "to pathlib Path objects. Initial patch by Vajrasky Kok." msgstr "" -#: ../../../build/NEWS:21230 +#: ../../../build/NEWS:21453 msgid "" "`bpo-21226 `__: Set up modules properly " "in PyImport_ExecCodeModuleObject (and friends)." msgstr "" -#: ../../../build/NEWS:21233 +#: ../../../build/NEWS:21456 msgid "" "`bpo-21398 `__: Fix a unicode error in " "the pydoc pager when the documentation contains characters not encodable to " "the stdout encoding." msgstr "" -#: ../../../build/NEWS:21236 +#: ../../../build/NEWS:21459 msgid "" "`bpo-16531 `__: ipaddress.IPv4Network " "and ipaddress.IPv6Network now accept an (address, netmask) tuple argument, " "so as to easily construct network objects from existing addresses." msgstr "" -#: ../../../build/NEWS:21240 +#: ../../../build/NEWS:21463 msgid "" "`bpo-21156 `__: " "importlib.abc.InspectLoader.source_to_code() is now a staticmethod." msgstr "" -#: ../../../build/NEWS:21243 +#: ../../../build/NEWS:21466 msgid "" "`bpo-21424 `__: Simplified and optimized" " heaqp.nlargest() and nmsmallest() to make fewer tuple comparisons." msgstr "" -#: ../../../build/NEWS:21246 +#: ../../../build/NEWS:21469 msgid "" "`bpo-21396 `__: Fix TextIOWrapper(..., " "write_through=True) to not force a flush() on the underlying binary stream." " Patch by akira." msgstr "" -#: ../../../build/NEWS:21249 +#: ../../../build/NEWS:21472 msgid "" "`bpo-18314 `__: Unlink now removes " "junctions on Windows. Patch by Kim Gräsman" msgstr "" -#: ../../../build/NEWS:21251 +#: ../../../build/NEWS:21474 msgid "" "`bpo-21088 `__: Bugfix for " "curses.window.addch() regression in 3.4.0. In porting to Argument Clinic, " "the first two arguments were reversed." msgstr "" -#: ../../../build/NEWS:21254 +#: ../../../build/NEWS:21477 msgid "" "`bpo-21407 `__: _decimal: The module now" " supports function signatures." msgstr "" -#: ../../../build/NEWS:21256 +#: ../../../build/NEWS:21479 msgid "" "`bpo-10650 `__: Remove the non-standard " "'watchexp' parameter from the Decimal.quantize() method in the Python " "version. It had never been present in the C version." msgstr "" -#: ../../../build/NEWS:21260 +#: ../../../build/NEWS:21483 msgid "" "`bpo-21469 `__: Reduced the risk of " "false positives in robotparser by checking to make sure that robots.txt has " "been read or does not exist prior to returning True in can_fetch()." msgstr "" -#: ../../../build/NEWS:21264 +#: ../../../build/NEWS:21487 msgid "" "`bpo-19414 `__: Have the OrderedDict " "mark deleted links as unusable. This gives an early failure if the link is " "deleted during iteration." msgstr "" -#: ../../../build/NEWS:21267 +#: ../../../build/NEWS:21490 msgid "" "`bpo-21421 `__: Add __slots__ to the " "MappingViews ABC. Patch by Josh Rosenberg." msgstr "" -#: ../../../build/NEWS:21269 +#: ../../../build/NEWS:21492 msgid "" "`bpo-21101 `__: Eliminate double hashing" " in the C speed-up code for collections.Counter()." msgstr "" -#: ../../../build/NEWS:21272 +#: ../../../build/NEWS:21495 msgid "" "`bpo-21321 `__: itertools.islice() now " "releases the reference to the source iterator when the slice is exhausted. " "Patch by Anton Afanasyev." msgstr "" -#: ../../../build/NEWS:21275 +#: ../../../build/NEWS:21498 msgid "" "`bpo-21057 `__: TextIOWrapper now allows" " the underlying binary stream's read() or read1() method to return an " "arbitrary bytes-like object (such as a memoryview). Patch by Nikolaus Rath." msgstr "" -#: ../../../build/NEWS:21279 +#: ../../../build/NEWS:21502 msgid "" "`bpo-20951 `__: SSLSocket.send() now " "raises either SSLWantReadError or SSLWantWriteError on a non-blocking socket" @@ -31539,44 +31962,44 @@ msgid "" "Nikolaus Rath." msgstr "" -#: ../../../build/NEWS:21283 +#: ../../../build/NEWS:21506 msgid "" "`bpo-13248 `__: removed previously " "deprecated asyncore.dispatcher __getattr__ cheap inheritance hack." msgstr "" -#: ../../../build/NEWS:21286 +#: ../../../build/NEWS:21509 msgid "" "`bpo-9815 `__: assertRaises now tries to " "clear references to local variables in the exception's traceback." msgstr "" -#: ../../../build/NEWS:21289 +#: ../../../build/NEWS:21512 msgid "" "`bpo-19940 `__: " "ssl.cert_time_to_seconds() now interprets the given time string in the UTC " "timezone (as specified in RFC 5280), not the local timezone." msgstr "" -#: ../../../build/NEWS:21292 +#: ../../../build/NEWS:21515 msgid "" "`bpo-13204 `__: Calling " "sys.flags.__new__ would crash the interpreter, now it raises a TypeError." msgstr "" -#: ../../../build/NEWS:21295 +#: ../../../build/NEWS:21518 msgid "" "`bpo-19385 `__: Make operations on a " "closed dbm.dumb database always raise the same exception." msgstr "" -#: ../../../build/NEWS:21298 +#: ../../../build/NEWS:21521 msgid "" "`bpo-21207 `__: Detect when the " "os.urandom cached fd has been closed or replaced, and open it anew." msgstr "" -#: ../../../build/NEWS:21301 +#: ../../../build/NEWS:21524 msgid "" "`bpo-21291 `__: subprocess's " "Popen.wait() is now thread safe so that multiple threads may be calling " @@ -31584,13 +32007,13 @@ msgid "" "Popen.returncode value." msgstr "" -#: ../../../build/NEWS:21305 +#: ../../../build/NEWS:21528 msgid "" "`bpo-21127 `__: Path objects can now be " "instantiated from str subclass instances (such as ``numpy.str_``)." msgstr "" -#: ../../../build/NEWS:21308 +#: ../../../build/NEWS:21531 msgid "" "`bpo-15002 `__: urllib.response object " "to use _TemporaryFileWrapper (and _TemporaryFileCloser) facility. Provides a" @@ -31598,71 +32021,71 @@ msgid "" "Theune." msgstr "" -#: ../../../build/NEWS:21312 +#: ../../../build/NEWS:21535 msgid "" "`bpo-12220 `__: mindom now raises a " "custom ValueError indicating it doesn't support spaces in URIs instead of " "letting a 'split' ValueError bubble up." msgstr "" -#: ../../../build/NEWS:21315 +#: ../../../build/NEWS:21538 msgid "" "`bpo-21068 `__: The ssl.PROTOCOL* " "constants are now enum members." msgstr "" -#: ../../../build/NEWS:21317 +#: ../../../build/NEWS:21540 msgid "" "`bpo-21276 `__: posixmodule: Don't " "define USE_XATTRS on KFreeBSD and the Hurd." msgstr "" -#: ../../../build/NEWS:21319 +#: ../../../build/NEWS:21542 msgid "" "`bpo-21262 `__: New method " "assert_not_called for Mock. It raises AssertionError if the mock has been " "called." msgstr "" -#: ../../../build/NEWS:21322 +#: ../../../build/NEWS:21545 msgid "" "`bpo-21238 `__: New keyword argument " "`unsafe` to Mock. It raises `AttributeError` incase of an attribute " "startswith assert or assret." msgstr "" -#: ../../../build/NEWS:21325 +#: ../../../build/NEWS:21548 msgid "" "`bpo-20896 `__: " "ssl.get_server_certificate() now uses PROTOCOL_SSLv23, not PROTOCOL_SSLv3, " "for maximum compatibility." msgstr "" -#: ../../../build/NEWS:21328 +#: ../../../build/NEWS:21551 msgid "" "`bpo-21239 `__: patch.stopall() didn't " "work deterministically when the same name was patched more than once." msgstr "" -#: ../../../build/NEWS:21331 +#: ../../../build/NEWS:21554 msgid "" "`bpo-21203 `__: Updated fileConfig and " "dictConfig to remove inconsistencies. Thanks to Jure Koren for the patch." msgstr "" -#: ../../../build/NEWS:21334 +#: ../../../build/NEWS:21557 msgid "" "`bpo-21222 `__: Passing name keyword " "argument to mock.create_autospec now works." msgstr "" -#: ../../../build/NEWS:21337 +#: ../../../build/NEWS:21560 msgid "" "`bpo-21197 `__: Add lib64 -> lib symlink" " in venvs on 64-bit non-OS X POSIX." msgstr "" -#: ../../../build/NEWS:21339 +#: ../../../build/NEWS:21562 msgid "" "`bpo-17498 `__: Some SMTP servers " "disconnect after certain errors, violating strict RFC conformance. Instead " @@ -31671,213 +32094,213 @@ msgid "" "until the next command is issued." msgstr "" -#: ../../../build/NEWS:21344 +#: ../../../build/NEWS:21567 msgid "" "`bpo-17826 `__: setting an iterable " "side_effect on a mock function created by create_autospec now works. Patch " "by Kushal Das." msgstr "" -#: ../../../build/NEWS:21347 +#: ../../../build/NEWS:21570 msgid "" "`bpo-7776 `__: Fix ``Host:`` header and " "reconnection when using http.client.HTTPConnection.set_tunnel(). Patch by " "Nikolaus Rath." msgstr "" -#: ../../../build/NEWS:21350 +#: ../../../build/NEWS:21573 msgid "" "`bpo-20968 `__: unittest.mock.MagicMock " "now supports division. Patch by Johannes Baiter." msgstr "" -#: ../../../build/NEWS:21353 +#: ../../../build/NEWS:21576 msgid "" "`bpo-21529 `__: Fix arbitrary memory " "access in JSONDecoder.raw_decode with a negative second parameter. Bug " "reported by Guido Vranken. (See also: CVE-2014-4616)" msgstr "" -#: ../../../build/NEWS:21357 +#: ../../../build/NEWS:21580 msgid "" "`bpo-21169 `__: getpass now handles non-" "ascii characters that the input stream encoding cannot encode by re-encoding" " using the replace error handler." msgstr "" -#: ../../../build/NEWS:21360 +#: ../../../build/NEWS:21583 msgid "" "`bpo-21171 `__: Fixed undocumented " "filter API of the rot13 codec. Patch by Berker Peksag." msgstr "" -#: ../../../build/NEWS:21363 +#: ../../../build/NEWS:21586 msgid "" "`bpo-20539 `__: Improved math.factorial " "error message for large positive inputs and changed exception type " "(OverflowError -> ValueError) for large negative inputs." msgstr "" -#: ../../../build/NEWS:21367 +#: ../../../build/NEWS:21590 msgid "" "`bpo-21172 `__: isinstance check relaxed" " from dict to collections.Mapping." msgstr "" -#: ../../../build/NEWS:21369 +#: ../../../build/NEWS:21592 msgid "" "`bpo-21155 `__: " "asyncio.EventLoop.create_unix_server() now raises a ValueError if path and " "sock are specified at the same time." msgstr "" -#: ../../../build/NEWS:21372 +#: ../../../build/NEWS:21595 msgid "" "`bpo-21136 `__: Avoid unnecessary " "normalization of Fractions resulting from power and other operations. Patch" " by Raymond Hettinger." msgstr "" -#: ../../../build/NEWS:21375 +#: ../../../build/NEWS:21598 msgid "" "`bpo-17621 `__: Introduce " "importlib.util.LazyLoader." msgstr "" -#: ../../../build/NEWS:21377 +#: ../../../build/NEWS:21600 msgid "" "`bpo-21076 `__: signal module constants " "were turned into enums. Patch by Giampaolo Rodola'." msgstr "" -#: ../../../build/NEWS:21380 +#: ../../../build/NEWS:21603 msgid "" "`bpo-20636 `__: Improved the repr of " "Tkinter widgets." msgstr "" -#: ../../../build/NEWS:21382 +#: ../../../build/NEWS:21605 msgid "" "`bpo-19505 `__: The items, keys, and " "values views of OrderedDict now support reverse iteration using reversed()." msgstr "" -#: ../../../build/NEWS:21385 +#: ../../../build/NEWS:21608 msgid "" "`bpo-21149 `__: Improved thread-safety " "in logging cleanup during interpreter shutdown. Thanks to Devin Jeanpierre " "for the patch." msgstr "" -#: ../../../build/NEWS:21388 +#: ../../../build/NEWS:21611 msgid "" "`bpo-21058 `__: Fix a leak of file " "descriptor in :func:`tempfile.NamedTemporaryFile`, close the file descriptor" " if :func:`io.open` fails" msgstr "" -#: ../../../build/NEWS:21392 +#: ../../../build/NEWS:21615 msgid "" "`bpo-21200 `__: Return None from " "pkgutil.get_loader() when __spec__ is missing." msgstr "" -#: ../../../build/NEWS:21394 +#: ../../../build/NEWS:21617 msgid "" "`bpo-21013 `__: Enhance " "ssl.create_default_context() when used for server side sockets to provide " "better security by default." msgstr "" -#: ../../../build/NEWS:21397 +#: ../../../build/NEWS:21620 msgid "" "`bpo-20145 `__: `assertRaisesRegex` and " "`assertWarnsRegex` now raise a TypeError if the second argument is not a " "string or compiled regex." msgstr "" -#: ../../../build/NEWS:21400 +#: ../../../build/NEWS:21623 msgid "" "`bpo-20633 `__: Replace relative import " "by absolute import." msgstr "" -#: ../../../build/NEWS:21402 +#: ../../../build/NEWS:21625 msgid "" "`bpo-20980 `__: Stop wrapping exception " "when using ThreadPool." msgstr "" -#: ../../../build/NEWS:21404 +#: ../../../build/NEWS:21627 msgid "" "`bpo-21082 `__: In os.makedirs, do not " "set the process-wide umask. Note this changes behavior of makedirs when " "exist_ok=True." msgstr "" -#: ../../../build/NEWS:21407 +#: ../../../build/NEWS:21630 msgid "" "`bpo-20990 `__: Fix issues found by " "pyflakes for multiprocessing." msgstr "" -#: ../../../build/NEWS:21409 +#: ../../../build/NEWS:21632 msgid "" "`bpo-21015 `__: SSL contexts will now " "automatically select an elliptic curve for ECDH key exchange on OpenSSL " "1.0.2 and later, and otherwise default to \"prime256v1\"." msgstr "" -#: ../../../build/NEWS:21413 +#: ../../../build/NEWS:21636 msgid "" "`bpo-21000 `__: Improve the command-line" " interface of json.tool." msgstr "" -#: ../../../build/NEWS:21415 +#: ../../../build/NEWS:21638 msgid "" "`bpo-20995 `__: Enhance default ciphers " "used by the ssl module to enable better security and prioritize perfect " "forward secrecy." msgstr "" -#: ../../../build/NEWS:21418 +#: ../../../build/NEWS:21641 msgid "" "`bpo-20884 `__: Don't assume that " "__file__ is defined on importlib.__init__." msgstr "" -#: ../../../build/NEWS:21420 +#: ../../../build/NEWS:21643 msgid "" "`bpo-21499 `__: Ignore __builtins__ in " "several test_importlib.test_api tests." msgstr "" -#: ../../../build/NEWS:21422 +#: ../../../build/NEWS:21645 msgid "" "`bpo-20627 `__: " "xmlrpc.client.ServerProxy is now a context manager." msgstr "" -#: ../../../build/NEWS:21424 +#: ../../../build/NEWS:21647 msgid "" "`bpo-19165 `__: The formatter module now" " raises DeprecationWarning instead of PendingDeprecationWarning." msgstr "" -#: ../../../build/NEWS:21427 +#: ../../../build/NEWS:21650 msgid "" "`bpo-13936 `__: Remove the ability of " "datetime.time instances to be considered false in boolean contexts." msgstr "" -#: ../../../build/NEWS:21430 +#: ../../../build/NEWS:21653 msgid "" "`bpo-18931 `__: selectors module now " "supports /dev/poll on Solaris. Patch by Giampaolo Rodola'." msgstr "" -#: ../../../build/NEWS:21433 +#: ../../../build/NEWS:21656 msgid "" "`bpo-19977 `__: When the ``LC_TYPE`` " "locale is the POSIX locale (``C`` locale), :py:data:`sys.stdin` and " @@ -31885,13 +32308,13 @@ msgid "" "instead of the ``strict`` error handler." msgstr "" -#: ../../../build/NEWS:21438 +#: ../../../build/NEWS:21661 msgid "" "`bpo-20574 `__: Implement incremental " "decoder for cp65001 code (Windows code page 65001, Microsoft UTF-8)." msgstr "" -#: ../../../build/NEWS:21441 +#: ../../../build/NEWS:21664 msgid "" "`bpo-20879 `__: Delay the initialization" " of encoding and decoding tables for base32, ascii85 and base85 codecs in " @@ -31900,13 +32323,13 @@ msgid "" "not used." msgstr "" -#: ../../../build/NEWS:21446 +#: ../../../build/NEWS:21669 msgid "" "`bpo-19157 `__: Include the broadcast " "address in the usuable hosts for IPv6 in ipaddress." msgstr "" -#: ../../../build/NEWS:21449 +#: ../../../build/NEWS:21672 msgid "" "`bpo-11599 `__: When an external command" " (e.g. compiler) fails, distutils now prints out the whole command line " @@ -31914,90 +32337,90 @@ msgid "" "DISTUTILS_DEBUG is set." msgstr "" -#: ../../../build/NEWS:21453 +#: ../../../build/NEWS:21676 msgid "" "`bpo-4931 `__: distutils should not " "produce unhelpful \"error: None\" messages anymore. " "distutils.util.grok_environment_error is kept but doc-deprecated." msgstr "" -#: ../../../build/NEWS:21456 +#: ../../../build/NEWS:21679 msgid "" "`bpo-20875 `__: Prevent possible gzip " "\"'read' is not defined\" NameError. Patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:21459 +#: ../../../build/NEWS:21682 msgid "" "`bpo-11558 `__: " "``email.message.Message.attach`` now returns a more useful error message if " "``attach`` is called on a message for which ``is_multipart`` is False." msgstr "" -#: ../../../build/NEWS:21463 +#: ../../../build/NEWS:21686 msgid "" "`bpo-20283 `__: RE pattern methods now " "accept the string keyword parameters as documented. The pattern and source " "keyword parameters are left as deprecated aliases." msgstr "" -#: ../../../build/NEWS:21467 +#: ../../../build/NEWS:21690 msgid "" "`bpo-20778 `__: Fix modulefinder to work" " with bytecode-only modules." msgstr "" -#: ../../../build/NEWS:21469 +#: ../../../build/NEWS:21692 msgid "" "`bpo-20791 `__: copy.copy() now doesn't " "make a copy when the input is a bytes object. Initial patch by Peter Otten." msgstr "" -#: ../../../build/NEWS:21472 +#: ../../../build/NEWS:21695 msgid "" "`bpo-19748 `__: On AIX, time.mktime() " "now raises an OverflowError for year outsize range [1902; 2037]." msgstr "" -#: ../../../build/NEWS:21475 +#: ../../../build/NEWS:21698 msgid "" "`bpo-19573 `__: inspect.signature: Use " "enum for parameter kind constants." msgstr "" -#: ../../../build/NEWS:21477 +#: ../../../build/NEWS:21700 msgid "" "`bpo-20726 `__: inspect.signature: Make " "Signature and Parameter picklable." msgstr "" -#: ../../../build/NEWS:21479 +#: ../../../build/NEWS:21702 msgid "" "`bpo-17373 `__: Add " "inspect.Signature.from_callable method." msgstr "" -#: ../../../build/NEWS:21481 +#: ../../../build/NEWS:21704 msgid "" "`bpo-20378 `__: Improve repr of " "inspect.Signature and inspect.Parameter." msgstr "" -#: ../../../build/NEWS:21483 +#: ../../../build/NEWS:21706 msgid "" "`bpo-20816 `__: Fix " "inspect.getcallargs() to raise correct TypeError for missing keyword-only " "arguments. Patch by Jeremiah Lowin." msgstr "" -#: ../../../build/NEWS:21486 +#: ../../../build/NEWS:21709 msgid "" "`bpo-20817 `__: Fix " "inspect.getcallargs() to fail correctly if more than 3 arguments are " "missing. Patch by Jeremiah Lowin." msgstr "" -#: ../../../build/NEWS:21489 +#: ../../../build/NEWS:21712 msgid "" "`bpo-6676 `__: Ensure a meaningful " "exception is raised when attempting to parse more than one XML document per " @@ -32005,7 +32428,7 @@ msgid "" "Amaury Forgeot d'Arc, with suggested wording by David Gutteridge)" msgstr "" -#: ../../../build/NEWS:21494 +#: ../../../build/NEWS:21717 msgid "" "`bpo-21117 `__: Fix inspect.signature to" " better support functools.partial. Due to the specifics of functools.partial" @@ -32013,80 +32436,80 @@ msgid "" " become keyword-only." msgstr "" -#: ../../../build/NEWS:21499 +#: ../../../build/NEWS:21722 msgid "" "`bpo-20334 `__: inspect.Signature and " "inspect.Parameter are now hashable. Thanks to Antony Lee for bug reports and" " suggestions." msgstr "" -#: ../../../build/NEWS:21502 +#: ../../../build/NEWS:21725 msgid "" "`bpo-15916 `__: doctest.DocTestSuite " "returns an empty unittest.TestSuite instead of raising ValueError if it " "finds no tests" msgstr "" -#: ../../../build/NEWS:21505 +#: ../../../build/NEWS:21728 msgid "" "`bpo-21209 `__: Fix " "asyncio.tasks.CoroWrapper to workaround a bug in yield-from implementation " "in CPythons prior to 3.4.1." msgstr "" -#: ../../../build/NEWS:21508 +#: ../../../build/NEWS:21731 msgid "" "asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream " "`bpo-163 `__)." msgstr "" -#: ../../../build/NEWS:21511 +#: ../../../build/NEWS:21734 msgid "" "`bpo-21311 `__: Avoid exception in " "_osx_support with non-standard compiler configurations. Patch by John " "Szakmeister." msgstr "" -#: ../../../build/NEWS:21514 +#: ../../../build/NEWS:21737 msgid "" "`bpo-11571 `__: Ensure that the turtle " "window becomes the topmost window when launched on OS X." msgstr "" -#: ../../../build/NEWS:21517 +#: ../../../build/NEWS:21740 msgid "" "`bpo-21801 `__: Validate that " "__signature__ is None or an instance of Signature." msgstr "" -#: ../../../build/NEWS:21520 +#: ../../../build/NEWS:21743 msgid "" "`bpo-21923 `__: Prevent AttributeError " "in distutils.sysconfig.customize_compiler due to possible uninitialized " "_config_vars." msgstr "" -#: ../../../build/NEWS:21524 +#: ../../../build/NEWS:21747 msgid "" "`bpo-21323 `__: Fix http.server to again" " handle scripts in CGI subdirectories, broken by the fix for security " "`bpo-19435 `__. Patch by Zach Byrne." msgstr "" -#: ../../../build/NEWS:21527 +#: ../../../build/NEWS:21750 msgid "" "`bpo-22733 `__: Fix ffi_prep_args not " "zero-extending argument values correctly on 64-bit Windows." msgstr "" -#: ../../../build/NEWS:21530 +#: ../../../build/NEWS:21753 msgid "" "`bpo-23302 `__: Default to TCP_NODELAY=1" " upon establishing an HTTPConnection. Removed use of hard-coded MSS as it's " "an optimization that's no longer needed with Nagle disabled." msgstr "" -#: ../../../build/NEWS:21537 +#: ../../../build/NEWS:21760 msgid "" "`bpo-20577 `__: Configuration of the max" " line length for the FormatParagraph extension has been moved from the " @@ -32094,20 +32517,20 @@ msgid "" " Config Extensions dialog. Patch by Tal Einat." msgstr "" -#: ../../../build/NEWS:21542 +#: ../../../build/NEWS:21765 msgid "" "`bpo-16893 `__: Update Idle doc chapter " "to match current Idle and add new information." msgstr "" -#: ../../../build/NEWS:21545 +#: ../../../build/NEWS:21768 msgid "" "`bpo-3068 `__: Add Idle extension " "configuration dialog to Options menu. Changes are written to HOME/.idlerc" "/config-extensions.cfg. Original patch by Tal Einat." msgstr "" -#: ../../../build/NEWS:21549 +#: ../../../build/NEWS:21772 msgid "" "`bpo-16233 `__: A module browser (File :" " Class Browser, Alt+C) requires an editor window with a filename. When " @@ -32117,7 +32540,7 @@ msgid "" "a corresponding browser is also opened." msgstr "" -#: ../../../build/NEWS:21555 +#: ../../../build/NEWS:21778 msgid "" "`bpo-4832 `__: Save As to type Python " "files automatically adds .py to the name you enter (even if your system does" @@ -32125,100 +32548,100 @@ msgid "" "files." msgstr "" -#: ../../../build/NEWS:21559 +#: ../../../build/NEWS:21782 msgid "" "`bpo-21986 `__: Code objects are not " "normally pickled by the pickle module. To match this, they are no longer " "pickled when running under Idle." msgstr "" -#: ../../../build/NEWS:21562 +#: ../../../build/NEWS:21785 msgid "" "`bpo-17390 `__: Adjust Editor window " "title; remove 'Python', move version to end." msgstr "" -#: ../../../build/NEWS:21565 +#: ../../../build/NEWS:21788 msgid "" "`bpo-14105 `__: Idle debugger " "breakpoints no longer disappear when inserting or deleting lines." msgstr "" -#: ../../../build/NEWS:21568 +#: ../../../build/NEWS:21791 msgid "" "`bpo-17172 `__: Turtledemo can now be " "run from Idle. Currently, the entry is on the Help menu, but it may move to " "Run. Patch by Ramchandra Apt and Lita Cho." msgstr "" -#: ../../../build/NEWS:21572 +#: ../../../build/NEWS:21795 msgid "" "`bpo-21765 `__: Add support for non-" "ascii identifiers to HyperParser." msgstr "" -#: ../../../build/NEWS:21574 +#: ../../../build/NEWS:21797 msgid "" "`bpo-21940 `__: Add unittest for " "WidgetRedirector. Initial patch by Saimadhav Heblikar." msgstr "" -#: ../../../build/NEWS:21577 +#: ../../../build/NEWS:21800 msgid "" "`bpo-18592 `__: Add unittest for " "SearchDialogBase. Patch by Phil Webster." msgstr "" -#: ../../../build/NEWS:21579 +#: ../../../build/NEWS:21802 msgid "" "`bpo-21694 `__: Add unittest for " "ParenMatch. Patch by Saimadhav Heblikar." msgstr "" -#: ../../../build/NEWS:21581 +#: ../../../build/NEWS:21804 msgid "" "`bpo-21686 `__: add unittest for " "HyperParser. Original patch by Saimadhav Heblikar." msgstr "" -#: ../../../build/NEWS:21584 +#: ../../../build/NEWS:21807 msgid "" "`bpo-12387 `__: Add missing " "upper(lower)case versions of default Windows key bindings for Idle so Caps " "Lock does not disable them. Patch by Roger Serwy." msgstr "" -#: ../../../build/NEWS:21588 +#: ../../../build/NEWS:21811 msgid "" "`bpo-21695 `__: Closing a Find-in-files " "output window while the search is still in progress no longer closes Idle." msgstr "" -#: ../../../build/NEWS:21591 +#: ../../../build/NEWS:21814 msgid "" "`bpo-18910 `__: Add unittest for " "textView. Patch by Phil Webster." msgstr "" -#: ../../../build/NEWS:21593 +#: ../../../build/NEWS:21816 msgid "" "`bpo-18292 `__: Add unittest for " "AutoExpand. Patch by Saihadhav Heblikar." msgstr "" -#: ../../../build/NEWS:21595 +#: ../../../build/NEWS:21818 msgid "" "`bpo-18409 `__: Add unittest for " "AutoComplete. Patch by Phil Webster." msgstr "" -#: ../../../build/NEWS:21597 +#: ../../../build/NEWS:21820 msgid "" "`bpo-21477 `__: htest.py - Improve " "framework, complete set of tests. Patches by Saimadhav Heblikar" msgstr "" -#: ../../../build/NEWS:21600 +#: ../../../build/NEWS:21823 msgid "" "`bpo-18104 `__: Add " "idlelib/idle_test/htest.py with a few sample tests to begin consolidating " @@ -32226,89 +32649,89 @@ msgid "" " work with htest. Running the module as __main__ runs all tests." msgstr "" -#: ../../../build/NEWS:21605 +#: ../../../build/NEWS:21828 msgid "" "`bpo-21139 `__: Change default paragraph" " width to 72, the :pep:`8` recommendation." msgstr "" -#: ../../../build/NEWS:21608 +#: ../../../build/NEWS:21831 msgid "" "`bpo-21284 `__: Paragraph reformat test " "passes after user changes reformat width." msgstr "" -#: ../../../build/NEWS:21611 +#: ../../../build/NEWS:21834 msgid "" "`bpo-17654 `__: Ensure IDLE menus are " "customized properly on OS X for non-framework builds and for all variants of" " Tk." msgstr "" -#: ../../../build/NEWS:21614 +#: ../../../build/NEWS:21837 msgid "" "`bpo-23180 `__: Rename IDLE \"Windows\" " "menu item to \"Window\". Patch by Al Sweigart." msgstr "" -#: ../../../build/NEWS:21620 +#: ../../../build/NEWS:21843 msgid "" "`bpo-15506 `__: Use standard " "PKG_PROG_PKG_CONFIG autoconf macro in the configure script." msgstr "" -#: ../../../build/NEWS:21623 +#: ../../../build/NEWS:21846 msgid "" "`bpo-22935 `__: Allow the ssl module to " "be compiled if openssl doesn't support SSL 3." msgstr "" -#: ../../../build/NEWS:21626 +#: ../../../build/NEWS:21849 msgid "" "`bpo-22592 `__: Drop support of the " "Borland C compiler to build Python. The distutils module still supports it " "to build extensions." msgstr "" -#: ../../../build/NEWS:21629 +#: ../../../build/NEWS:21852 msgid "" "`bpo-22591 `__: Drop support of MS-DOS, " "especially of the DJGPP compiler (MS-DOS port of GCC)." msgstr "" -#: ../../../build/NEWS:21632 +#: ../../../build/NEWS:21855 msgid "" "`bpo-16537 `__: Check whether " "self.extensions is empty in setup.py. Patch by Jonathan Hosmer." msgstr "" -#: ../../../build/NEWS:21635 +#: ../../../build/NEWS:21858 msgid "" "`bpo-22359 `__: Remove incorrect uses of" " recursive make. Patch by Jonas Wagner." msgstr "" -#: ../../../build/NEWS:21638 +#: ../../../build/NEWS:21861 msgid "" "`bpo-21958 `__: Define HAVE_ROUND when " "building with Visual Studio 2013 and above. Patch by Zachary Turner." msgstr "" -#: ../../../build/NEWS:21641 +#: ../../../build/NEWS:21864 msgid "" "`bpo-18093 `__: the programs that embed " "the CPython runtime are now in a separate \"Programs\" directory, rather " "than being kept in the Modules directory." msgstr "" -#: ../../../build/NEWS:21645 +#: ../../../build/NEWS:21868 msgid "" "`bpo-15759 `__: \"make suspicious\", " "\"make linkcheck\" and \"make doctest\" in Doc/ now display special message " "when and only when there are failures." msgstr "" -#: ../../../build/NEWS:21648 +#: ../../../build/NEWS:21871 msgid "" "`bpo-21141 `__: The Windows build " "process no longer attempts to find Perl, instead relying on OpenSSL source " @@ -32319,109 +32742,109 @@ msgid "" "and ready to build." msgstr "" -#: ../../../build/NEWS:21655 +#: ../../../build/NEWS:21878 msgid "" "`bpo-21037 `__: Add a build option to " "enable AddressSanitizer support." msgstr "" -#: ../../../build/NEWS:21657 +#: ../../../build/NEWS:21880 msgid "" "`bpo-19962 `__: The Windows build " "process now creates \"python.bat\" in the root of the source tree, which " "passes all arguments through to the most recently built interpreter." msgstr "" -#: ../../../build/NEWS:21661 +#: ../../../build/NEWS:21884 msgid "" "`bpo-21285 `__: Refactor and fix curses " "configure check to always search in a ncursesw directory." msgstr "" -#: ../../../build/NEWS:21664 +#: ../../../build/NEWS:21887 msgid "" "`bpo-15234 `__: For BerkelyDB and " "Sqlite, only add the found library and include directories if they aren't " "already being searched. This avoids an explicit runtime library dependency." msgstr "" -#: ../../../build/NEWS:21668 +#: ../../../build/NEWS:21891 msgid "" "`bpo-17861 `__: " "Tools/scripts/generate_opcode_h.py automatically regenerates " "Include/opcode.h from Lib/opcode.py if the latter gets any change." msgstr "" -#: ../../../build/NEWS:21671 +#: ../../../build/NEWS:21894 msgid "" "`bpo-20644 `__: OS X installer build " "support for documentation build changes in 3.4.1: assume externally supplied" " sphinx-build is available in /usr/bin." msgstr "" -#: ../../../build/NEWS:21674 +#: ../../../build/NEWS:21897 msgid "" "`bpo-20022 `__: Eliminate use of " "deprecated bundlebuilder in OS X builds." msgstr "" -#: ../../../build/NEWS:21676 +#: ../../../build/NEWS:21899 msgid "" "`bpo-15968 `__: Incorporated Tcl, Tk, " "and Tix builds into the Windows build solution." msgstr "" -#: ../../../build/NEWS:21679 +#: ../../../build/NEWS:21902 msgid "" "`bpo-17095 `__: Fix Modules/Setup " "*shared* support." msgstr "" -#: ../../../build/NEWS:21681 +#: ../../../build/NEWS:21904 msgid "" "`bpo-21811 `__: Anticipated fixes to " "support OS X versions > 10.9." msgstr "" -#: ../../../build/NEWS:21683 +#: ../../../build/NEWS:21906 msgid "" "`bpo-21166 `__: Prevent possible " "segfaults and other random failures of python --generate-posix-vars in " "pybuilddir.txt build target." msgstr "" -#: ../../../build/NEWS:21686 +#: ../../../build/NEWS:21909 msgid "" "`bpo-18096 `__: Fix library order " "returned by python-config." msgstr "" -#: ../../../build/NEWS:21688 +#: ../../../build/NEWS:21911 msgid "" "`bpo-17219 `__: Add library build dir " "for Python extension cross-builds." msgstr "" -#: ../../../build/NEWS:21690 +#: ../../../build/NEWS:21913 msgid "" "`bpo-22919 `__: Windows build updated to" " support VC 14.0 (Visual Studio 2015), which will be used for the official " "release." msgstr "" -#: ../../../build/NEWS:21693 +#: ../../../build/NEWS:21916 msgid "" "`bpo-21236 `__: Build _msi.pyd with " "cabinet.lib instead of fci.lib" msgstr "" -#: ../../../build/NEWS:21695 +#: ../../../build/NEWS:21918 msgid "" "`bpo-17128 `__: Use private version of " "OpenSSL for OS X 10.5+ installer." msgstr "" -#: ../../../build/NEWS:21700 +#: ../../../build/NEWS:21923 msgid "" "`bpo-14203 `__: Remove obsolete support " "for view==NULL in PyBuffer_FillInfo(), bytearray_getbuffer(), " @@ -32429,7 +32852,7 @@ msgid "" "BufferError in that case." msgstr "" -#: ../../../build/NEWS:21704 +#: ../../../build/NEWS:21927 msgid "" "`bpo-22445 `__: PyBuffer_IsContiguous() " "now implements precise contiguity tests, compatible with NumPy's " @@ -32437,19 +32860,19 @@ msgid "" "reported false negatives for corner cases." msgstr "" -#: ../../../build/NEWS:21708 +#: ../../../build/NEWS:21931 msgid "" "`bpo-22079 `__: PyType_Ready() now " "checks that statically allocated type has no dynamically allocated bases." msgstr "" -#: ../../../build/NEWS:21711 +#: ../../../build/NEWS:21934 msgid "" "`bpo-22453 `__: Removed non-documented " "macro PyObject_REPR()." msgstr "" -#: ../../../build/NEWS:21713 +#: ../../../build/NEWS:21936 msgid "" "`bpo-18395 `__: Rename " "``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename " @@ -32457,7 +32880,7 @@ msgid "" "functions." msgstr "" -#: ../../../build/NEWS:21717 +#: ../../../build/NEWS:21940 msgid "" "`bpo-21233 `__: Add new C functions: " "PyMem_RawCalloc(), PyMem_Calloc(), PyObject_Calloc(), _PyObject_GC_Calloc()." @@ -32465,7 +32888,7 @@ msgid "" "objects which is faster and use less memory." msgstr "" -#: ../../../build/NEWS:21722 +#: ../../../build/NEWS:21945 msgid "" "`bpo-20942 `__: " "PyImport_ImportFrozenModuleObject() no longer sets __file__ to match what " @@ -32473,27 +32896,27 @@ msgid "" "using imp.init_frozen()." msgstr "" -#: ../../../build/NEWS:21729 +#: ../../../build/NEWS:21952 msgid "" "`bpo-19548 `__: Update the codecs module" " documentation to better cover the distinction between text encodings and " "other codecs, together with other clarifications. Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:21733 +#: ../../../build/NEWS:21956 msgid "" "`bpo-22394 `__: Doc/Makefile now " "supports ``make venv PYTHON=../python`` to create a venv for generating the " "documentation, e.g., ``make html PYTHON=venv/bin/python3``." msgstr "" -#: ../../../build/NEWS:21737 +#: ../../../build/NEWS:21960 msgid "" "`bpo-21514 `__: The documentation of the" " json module now refers to new JSON RFC 7159 instead of obsoleted RFC 4627." msgstr "" -#: ../../../build/NEWS:21740 +#: ../../../build/NEWS:21963 msgid "" "`bpo-21777 `__: The binary sequence " "methods on bytes and bytearray are now documented explicitly, rather than " @@ -32501,40 +32924,40 @@ msgid "" "behaviour of the corresponding str methods." msgstr "" -#: ../../../build/NEWS:21745 +#: ../../../build/NEWS:21968 msgid "" "`bpo-6916 `__: undocument deprecated " "asynchat.fifo class." msgstr "" -#: ../../../build/NEWS:21747 +#: ../../../build/NEWS:21970 msgid "" "`bpo-17386 `__: Expanded functionality " "of the ``Doc/make.bat`` script to make it much more comparable to " "``Doc/Makefile``." msgstr "" -#: ../../../build/NEWS:21750 +#: ../../../build/NEWS:21973 msgid "" "`bpo-21312 `__: Update the " "thread_foobar.h template file to include newer threading APIs. Patch by Jack" " McCracken." msgstr "" -#: ../../../build/NEWS:21753 +#: ../../../build/NEWS:21976 msgid "" "`bpo-21043 `__: Remove the " "recommendation for specific CA organizations and to mention the ability to " "load the OS certificates." msgstr "" -#: ../../../build/NEWS:21756 +#: ../../../build/NEWS:21979 msgid "" "`bpo-20765 `__: Add missing " "documentation for PurePath.with_name() and PurePath.with_suffix()." msgstr "" -#: ../../../build/NEWS:21759 +#: ../../../build/NEWS:21982 msgid "" "`bpo-19407 `__: New package installation" " and distribution guides based on the Python Packaging Authority tools. " @@ -32543,76 +32966,76 @@ msgid "" "that isn't recorded anywhere else." msgstr "" -#: ../../../build/NEWS:21764 +#: ../../../build/NEWS:21987 msgid "" "`bpo-19697 `__: Document cases where " "__main__.__spec__ is None." msgstr "" -#: ../../../build/NEWS:21769 +#: ../../../build/NEWS:21992 msgid "" "`bpo-18982 `__: Add tests for CLI of the" " calendar module." msgstr "" -#: ../../../build/NEWS:21771 +#: ../../../build/NEWS:21994 msgid "" "`bpo-19548 `__: Added some additional " "checks to test_codecs to ensure that statements in the updated documentation" " remain accurate. Patch by Martin Panter." msgstr "" -#: ../../../build/NEWS:21775 +#: ../../../build/NEWS:21998 msgid "" "`bpo-22838 `__: All test_re tests now " "work with unittest test discovery." msgstr "" -#: ../../../build/NEWS:21777 +#: ../../../build/NEWS:22000 msgid "" "`bpo-22173 `__: Update lib2to3 tests to " "use unittest test discovery." msgstr "" -#: ../../../build/NEWS:21779 +#: ../../../build/NEWS:22002 msgid "" "`bpo-16000 `__: Convert test_curses to " "use unittest." msgstr "" -#: ../../../build/NEWS:21781 +#: ../../../build/NEWS:22004 msgid "" "`bpo-21456 `__: Skip two tests in " "test_urllib2net.py if _ssl module not present. Patch by Remi Pointel." msgstr "" -#: ../../../build/NEWS:21784 +#: ../../../build/NEWS:22007 msgid "" "`bpo-20746 `__: Fix test_pdb to run in " "refleak mode (-R). Patch by Xavier de Gaye." msgstr "" -#: ../../../build/NEWS:21787 +#: ../../../build/NEWS:22010 msgid "" "`bpo-22060 `__: test_ctypes has been " "somewhat cleaned up and simplified; it now uses unittest test discovery to " "find its tests." msgstr "" -#: ../../../build/NEWS:21790 +#: ../../../build/NEWS:22013 msgid "" "`bpo-22104 `__: regrtest.py no longer " "holds a reference to the suite of tests loaded from test modules that don't " "define test_main()." msgstr "" -#: ../../../build/NEWS:21793 +#: ../../../build/NEWS:22016 msgid "" "`bpo-22111 `__: Assorted cleanups in " "test_imaplib. Patch by Milan Oberkirch." msgstr "" -#: ../../../build/NEWS:21795 +#: ../../../build/NEWS:22018 msgid "" "`bpo-22002 `__: Added " "``load_package_tests`` function to test.support and used it to " @@ -32620,27 +33043,27 @@ msgid "" "test_importlib, test_json, and test_tools." msgstr "" -#: ../../../build/NEWS:21799 +#: ../../../build/NEWS:22022 msgid "" "`bpo-21976 `__: Fix test_ssl to accept " "LibreSSL version strings. Thanks to William Orr." msgstr "" -#: ../../../build/NEWS:21802 +#: ../../../build/NEWS:22025 msgid "" "`bpo-21918 `__: Converted test_tools " "from a module to a package containing separate test files for each tested " "script." msgstr "" -#: ../../../build/NEWS:21805 +#: ../../../build/NEWS:22028 msgid "" "`bpo-9554 `__: Use modern unittest " "features in test_argparse. Initial patch by Denver Coneybeare and Radu " "Voicilas." msgstr "" -#: ../../../build/NEWS:21808 +#: ../../../build/NEWS:22031 msgid "" "`bpo-20155 `__: Changed HTTP method " "names in failing tests in test_httpservers so that packet filtering software" @@ -32648,19 +33071,19 @@ msgid "" "transaction semantics expected by the tests." msgstr "" -#: ../../../build/NEWS:21813 +#: ../../../build/NEWS:22036 msgid "" "`bpo-19493 `__: Refactored the ctypes " "test package to skip tests explicitly rather than silently." msgstr "" -#: ../../../build/NEWS:21816 +#: ../../../build/NEWS:22039 msgid "" "`bpo-18492 `__: All resources are now " "allowed when tests are not run by regrtest.py." msgstr "" -#: ../../../build/NEWS:21819 +#: ../../../build/NEWS:22042 msgid "" "`bpo-21634 `__: Fix pystone micro-" "benchmark: use floor division instead of true division to benchmark integers" @@ -32668,163 +33091,163 @@ msgid "" "written by Lennart Regebro." msgstr "" -#: ../../../build/NEWS:21823 +#: ../../../build/NEWS:22046 msgid "" "`bpo-21605 `__: Added tests for Tkinter " "images." msgstr "" -#: ../../../build/NEWS:21825 +#: ../../../build/NEWS:22048 msgid "" "`bpo-21493 `__: Added test for " "ntpath.expanduser(). Original patch by Claudiu Popa." msgstr "" -#: ../../../build/NEWS:21828 +#: ../../../build/NEWS:22051 msgid "" "`bpo-19925 `__: Added tests for the spwd" " module. Original patch by Vajrasky Kok." msgstr "" -#: ../../../build/NEWS:21831 +#: ../../../build/NEWS:22054 msgid "" "`bpo-21522 `__: Added Tkinter tests for " "Listbox.itemconfigure(), PanedWindow.paneconfigure(), and " "Menu.entryconfigure()." msgstr "" -#: ../../../build/NEWS:21834 +#: ../../../build/NEWS:22057 msgid "" "`bpo-17756 `__: Fix test_code test when " "run from the installed location." msgstr "" -#: ../../../build/NEWS:21836 +#: ../../../build/NEWS:22059 msgid "" "`bpo-17752 `__: Fix distutils tests when" " run from the installed location." msgstr "" -#: ../../../build/NEWS:21838 +#: ../../../build/NEWS:22061 msgid "" "`bpo-18604 `__: Consolidated checks for " "GUI availability. All platforms now at least check whether Tk can be " "instantiated when the GUI resource is requested." msgstr "" -#: ../../../build/NEWS:21842 +#: ../../../build/NEWS:22065 msgid "" "`bpo-21275 `__: Fix a socket test on " "KFreeBSD." msgstr "" -#: ../../../build/NEWS:21844 +#: ../../../build/NEWS:22067 msgid "" "`bpo-21223 `__: Pass " "test_site/test_startup_imports when some of the extensions are built as " "builtins." msgstr "" -#: ../../../build/NEWS:21847 +#: ../../../build/NEWS:22070 msgid "" "`bpo-20635 `__: Added tests for Tk " "geometry managers." msgstr "" -#: ../../../build/NEWS:21849 +#: ../../../build/NEWS:22072 msgid "Add test case for freeze." msgstr "Tambahkan kasus pengujian untuk *freeze*." -#: ../../../build/NEWS:21851 +#: ../../../build/NEWS:22074 msgid "" "`bpo-20743 `__: Fix a reference leak in " "test_tcl." msgstr "" -#: ../../../build/NEWS:21853 +#: ../../../build/NEWS:22076 msgid "" "`bpo-21097 `__: Move test_namespace_pkgs" " into test_importlib." msgstr "" -#: ../../../build/NEWS:21855 +#: ../../../build/NEWS:22078 msgid "" "`bpo-21503 `__: Use test_both() " "consistently in test_importlib." msgstr "" -#: ../../../build/NEWS:21857 +#: ../../../build/NEWS:22080 msgid "" "`bpo-20939 `__: Avoid various network " "test failures due to new redirect of http://www.python.org/ to " "https://www.python.org: use http://www.example.com instead." msgstr "" -#: ../../../build/NEWS:21861 +#: ../../../build/NEWS:22084 msgid "" "`bpo-20668 `__: asyncio tests no longer " "rely on tests.txt file. (Patch by Vajrasky Kok)" msgstr "" -#: ../../../build/NEWS:21864 +#: ../../../build/NEWS:22087 msgid "" "`bpo-21093 `__: Prevent failures of " "ctypes test_macholib on OS X if a copy of libz exists in $HOME/lib or " "/usr/local/lib." msgstr "" -#: ../../../build/NEWS:21867 +#: ../../../build/NEWS:22090 msgid "" "`bpo-22770 `__: Prevent some Tk " "segfaults on OS X when running gui tests." msgstr "" -#: ../../../build/NEWS:21869 +#: ../../../build/NEWS:22092 msgid "" "`bpo-23211 `__: Workaround test_logging " "failure on some OS X 10.6 systems." msgstr "" -#: ../../../build/NEWS:21871 +#: ../../../build/NEWS:22094 msgid "" "`bpo-23345 `__: Prevent test_ssl " "failures with large OpenSSL patch level values (like 0.9.8zc)." msgstr "" -#: ../../../build/NEWS:21877 +#: ../../../build/NEWS:22100 msgid "" "`bpo-22314 `__: pydoc now works when the" " LINES environment variable is set." msgstr "" -#: ../../../build/NEWS:21879 +#: ../../../build/NEWS:22102 msgid "" "`bpo-22615 `__: Argument Clinic now " "supports the \"type\" argument for the int converter. This permits using the" " int converter with enums and typedefs." msgstr "" -#: ../../../build/NEWS:21882 +#: ../../../build/NEWS:22105 msgid "" "`bpo-20076 `__: The makelocalealias.py " "script no longer ignores UTF-8 mapping." msgstr "" -#: ../../../build/NEWS:21884 +#: ../../../build/NEWS:22107 msgid "" "`bpo-20079 `__: The makelocalealias.py " "script now can parse the SUPPORTED file from glibc sources and supports " "command line options for source paths." msgstr "" -#: ../../../build/NEWS:21887 +#: ../../../build/NEWS:22110 msgid "" "`bpo-22201 `__: Command-line interface " "of the zipfile module now correctly extracts ZIP files with directory " "entries. Patch by Ryan Wilson." msgstr "" -#: ../../../build/NEWS:21890 +#: ../../../build/NEWS:22113 msgid "" "`bpo-22120 `__: For functions using an " "unsigned integer return converter, Argument Clinic now generates a cast to " @@ -32832,57 +33255,57 @@ msgid "" "a compilation warning.)" msgstr "" -#: ../../../build/NEWS:21894 +#: ../../../build/NEWS:22117 msgid "" "`bpo-18974 `__: Tools/scripts/diff.py " "now uses argparse instead of optparse." msgstr "" -#: ../../../build/NEWS:21896 +#: ../../../build/NEWS:22119 msgid "" "`bpo-21906 `__: Make " "Tools/scripts/md5sum.py work in Python 3. Patch by Zachary Ware." msgstr "" -#: ../../../build/NEWS:21899 +#: ../../../build/NEWS:22122 msgid "" "`bpo-21629 `__: Fix Argument Clinic's \"" "--converters\" feature." msgstr "" -#: ../../../build/NEWS:21901 +#: ../../../build/NEWS:22124 msgid "Add support for ``yield from`` to 2to3." msgstr "Menambahkan dukungan untuk ``yield from`` ke 2to3." -#: ../../../build/NEWS:21903 +#: ../../../build/NEWS:22126 msgid "Add support for the :pep:`465` matrix multiplication operator to 2to3." msgstr "" -#: ../../../build/NEWS:21905 +#: ../../../build/NEWS:22128 msgid "" "`bpo-16047 `__: Fix module exception " "list and __file__ handling in freeze. Patch by Meador Inge." msgstr "" -#: ../../../build/NEWS:21908 +#: ../../../build/NEWS:22131 msgid "" "`bpo-11824 `__: Consider ABI tags in " "freeze. Patch by Meador Inge." msgstr "" -#: ../../../build/NEWS:21910 +#: ../../../build/NEWS:22133 msgid "" "`bpo-20535 `__: PYTHONWARNING no longer " "affects the run_tests.py script. Patch by Arfrever Frehtes Taifersar " "Arahesis." msgstr "" -#: ../../../build/NEWS:21916 +#: ../../../build/NEWS:22139 msgid "" "`bpo-23260 `__: Update Windows installer" msgstr "" -#: ../../../build/NEWS:21918 +#: ../../../build/NEWS:22141 msgid "" "The bundled version of Tcl/Tk has been updated to 8.6.3. The most visible " "result of this change is the addition of new native file dialogs when " @@ -32890,44 +33313,44 @@ msgid "" "information. Also, this version of Tcl/Tk includes support for Windows 10." msgstr "" -#: ../../../build/NEWS:21924 +#: ../../../build/NEWS:22147 msgid "" "`bpo-17896 `__: The Windows build " "scripts now expect external library sources to be in " "``PCbuild\\..\\externals`` rather than ``PCbuild\\..\\..``." msgstr "" -#: ../../../build/NEWS:21927 +#: ../../../build/NEWS:22150 msgid "" "`bpo-17717 `__: The Windows build " "scripts now use a copy of NASM pulled from svn.python.org to build OpenSSL." msgstr "" -#: ../../../build/NEWS:21930 +#: ../../../build/NEWS:22153 msgid "" "`bpo-21907 `__: Improved the batch " "scripts provided for building Python." msgstr "" -#: ../../../build/NEWS:21932 +#: ../../../build/NEWS:22155 msgid "" "`bpo-22644 `__: The bundled version of " "OpenSSL has been updated to 1.0.1j." msgstr "" -#: ../../../build/NEWS:21934 +#: ../../../build/NEWS:22157 msgid "" "`bpo-10747 `__: Use versioned labels in " "the Windows start menu. Patch by Olive Kilburn." msgstr "" -#: ../../../build/NEWS:21937 +#: ../../../build/NEWS:22160 msgid "" "`bpo-22980 `__: .pyd files with a " "version and platform tag (for example, \".cp35-win32.pyd\") will now be " "loaded in preference to those without tags." msgstr "" -#: ../../../build/NEWS:21941 +#: ../../../build/NEWS:22164 msgid "**(For information about older versions, consult the HISTORY file.)**" msgstr "**(Untuk informasi tentang versi-versi lama, lihat berkas HISTORY.)**"