Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit173272a

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent1eb0dc2 commit173272a

File tree

5 files changed

+206
-5
lines changed

5 files changed

+206
-5
lines changed

‎c-api/concrete.po‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.14\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2025-11-11 14:15+0000\n"
15+
"POT-Creation-Date:2025-11-17 14:14+0000\n"
1616
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1717
"Last-Translator:Hengky Kurniawan, 2025\n"
1818
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"

‎c-api/picklebuffer.po‎

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001 Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# python-doc bot, 2025
8+
#
9+
#,fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version:Python 3.14\n"
13+
"Report-Msgid-Bugs-To:\n"
14+
"POT-Creation-Date:2025-11-17 14:14+0000\n"
15+
"PO-Revision-Date:2025-11-17 14:16+0000\n"
16+
"Last-Translator:python-doc bot, 2025\n"
17+
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"
18+
"id/)\n"
19+
"MIME-Version:1.0\n"
20+
"Content-Type:text/plain; charset=UTF-8\n"
21+
"Content-Transfer-Encoding:8bit\n"
22+
"Language:id\n"
23+
"Plural-Forms:nplurals=1; plural=0;\n"
24+
25+
msgid"Pickle buffer objects"
26+
msgstr""
27+
28+
msgid""
29+
"A :class:`pickle.PickleBuffer` object wraps a :ref:`buffer-providing object "
30+
"<bufferobjects>` for out-of-band data transfer with the :mod:`pickle` module."
31+
msgstr""
32+
33+
msgid""
34+
"This instance of :c:type:`PyTypeObject` represents the Python pickle buffer "
35+
"type. This is the same object as :class:`pickle.PickleBuffer` in the Python "
36+
"layer."
37+
msgstr""
38+
39+
msgid""
40+
"Return true if *op* is a pickle buffer instance. This function always "
41+
"succeeds."
42+
msgstr""
43+
44+
msgid"Create a pickle buffer from the object *obj*."
45+
msgstr""
46+
47+
msgid""
48+
"This function will fail if *obj* doesn't support the :ref:`buffer protocol "
49+
"<bufferobjects>`."
50+
msgstr""
51+
52+
msgid""
53+
"On success, return a new pickle buffer instance. On failure, set an "
54+
"exception and return ``NULL``."
55+
msgstr""
56+
57+
msgid"Analogous to calling :class:`pickle.PickleBuffer` with *obj* in Python."
58+
msgstr""
59+
60+
msgid""
61+
"Get a pointer to the underlying :c:type:`Py_buffer` that the pickle buffer "
62+
"wraps."
63+
msgstr""
64+
65+
msgid""
66+
"The returned pointer is valid as long as *picklebuf* is alive and has not "
67+
"been released. The caller must not modify or free the returned :c:type:"
68+
"`Py_buffer`. If the pickle buffer has been released, raise :exc:`ValueError`."
69+
msgstr""
70+
71+
msgid""
72+
"On success, return a pointer to the buffer view. On failure, set an "
73+
"exception and return ``NULL``."
74+
msgstr""
75+
76+
msgid"Release the underlying buffer held by the pickle buffer."
77+
msgstr""
78+
79+
msgid""
80+
"Return ``0`` on success. On failure, set an exception and return ``-1``."
81+
msgstr""
82+
83+
msgid"Analogous to calling :meth:`pickle.PickleBuffer.release` in Python."
84+
msgstr""
85+
86+
msgid"object"
87+
msgstr"objek"
88+
89+
msgid"PickleBuffer"
90+
msgstr""

‎c-api/structures.po‎

Lines changed: 83 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-11-15 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-17 14:14+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -459,6 +459,21 @@ msgid ""
459459
"wrapper object calls."
460460
msgstr""
461461

462+
msgid""
463+
"The type object corresponding to Python C method objects. This is available "
464+
"as :class:`types.BuiltinMethodType` in the Python layer."
465+
msgstr""
466+
467+
msgid""
468+
"Return true if *op* is an instance of the :c:type:`PyCMethod_Type` type or a "
469+
"subtype of it. This function always succeeds."
470+
msgstr""
471+
472+
msgid""
473+
"This is the same as :c:func:`PyCMethod_Check`, but does not account for "
474+
"subtypes."
475+
msgstr""
476+
462477
msgid""
463478
"Turn *ml* into a Python :term:`callable` object. The caller must ensure that "
464479
"*ml* outlives the :term:`callable`. Typically, *ml* is defined as a static "
@@ -485,12 +500,79 @@ msgid ""
485500
"function. Must be set if :c:macro:`METH_METHOD` is set on ``ml->ml_flags``."
486501
msgstr""
487502

503+
msgid""
504+
"The type object corresponding to Python C function objects. This is "
505+
"available as :class:`types.BuiltinFunctionType` in the Python layer."
506+
msgstr""
507+
508+
msgid""
509+
"Return true if *op* is an instance of the :c:type:`PyCFunction_Type` type or "
510+
"a subtype of it. This function always succeeds."
511+
msgstr""
512+
513+
msgid""
514+
"This is the same as :c:func:`PyCFunction_Check`, but does not account for "
515+
"subtypes."
516+
msgstr""
517+
488518
msgid"Equivalent to ``PyCMethod_New(ml, self, module, NULL)``."
489519
msgstr""
490520

491521
msgid"Equivalent to ``PyCMethod_New(ml, self, NULL, NULL)``."
492522
msgstr""
493523

524+
msgid""
525+
"Get the function's flags on *func* as they were passed to :c:member:"
526+
"`~PyMethodDef.ml_flags`."
527+
msgstr""
528+
529+
msgid""
530+
"If *func* is not a C function object, this fails with an exception. *func* "
531+
"must not be ``NULL``."
532+
msgstr""
533+
534+
msgid""
535+
"This function returns the function's flags on success, and ``-1`` with an "
536+
"exception set on failure."
537+
msgstr""
538+
539+
msgid""
540+
"This is the same as :c:func:`PyCFunction_GetFlags`, but without error or "
541+
"type checking."
542+
msgstr""
543+
544+
msgid""
545+
"Get the function pointer on *func* as it was passed to :c:member:"
546+
"`~PyMethodDef.ml_meth`."
547+
msgstr""
548+
549+
msgid""
550+
"This function returns the function pointer on success, and ``NULL`` with an "
551+
"exception set on failure."
552+
msgstr""
553+
554+
msgid""
555+
"This is the same as :c:func:`PyCFunction_GetFunction`, but without error or "
556+
"type checking."
557+
msgstr""
558+
559+
msgid""
560+
"Get the\"self\" object on *func*. This is the object that would be passed "
561+
"to the first argument of a :c:type:`PyCFunction`. For C function objects "
562+
"created through a :c:type:`PyMethodDef` on a :c:type:`PyModuleDef`, this is "
563+
"the resulting module object."
564+
msgstr""
565+
566+
msgid""
567+
"This function returns a :term:`borrowed reference` to the\"self\" object on "
568+
"success, and ``NULL`` with an exception set on failure."
569+
msgstr""
570+
571+
msgid""
572+
"This is the same as :c:func:`PyCFunction_GetSelf`, but without error or type "
573+
"checking."
574+
msgstr""
575+
494576
msgid"Accessing attributes of extension types"
495577
msgstr""
496578

‎library/xml.sax.utils.po‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version:Python 3.14\n"
1010
"Report-Msgid-Bugs-To:\n"
11-
"POT-Creation-Date:2025-11-15 14:12+0000\n"
11+
"POT-Creation-Date:2025-11-17 14:14+0000\n"
1212
"PO-Revision-Date:2025-09-16 00:02+0000\n"
1313
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"
1414
"id/)\n"
@@ -52,7 +52,7 @@ msgstr ""
5252
msgid""
5353
"You can unescape other strings of data by passing a dictionary as the "
5454
"optional *entities* parameter. The keys and values must all be strings; "
55-
"each key will be replaced with its corresponding value. ``'&amp'``, "
55+
"each key will be replaced with its corresponding value. ``'&amp;'``, "
5656
"``'&lt;'``, and ``'&gt;'`` are always unescaped, even if *entities* is "
5757
"provided."
5858
msgstr""

‎whatsnew/changelog.po‎

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-15 14:12+0000\n"
14+
"POT-Creation-Date: 2025-11-17 14:14+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -130,6 +130,13 @@ msgid ""
130130
"assume that threads are always available in Tcl 9 and later."
131131
msgstr ""
132132

133+
msgid ""
134+
":gh:`137109`: The :mod:`os.fork` and related forking APIs will no longer "
135+
"warn in the common case where Linux or macOS platform APIs return the number "
136+
"of threads in a process and find the answer to be 1 even when a :func:`os."
137+
"register_at_fork` ``after_in_parent=`` callback (re)starts a thread."
138+
msgstr ""
139+
133140
msgid ""
134141
":gh:`141314`: Fix assertion failure in :meth:`io.TextIOWrapper.tell` when "
135142
"reading files with standalone carriage return (``\\r``) line endings."
@@ -158,6 +165,11 @@ msgid ""
158165
"segmentation fault. Use non-capturing groups (?:...) instead."
159166
msgstr ""
160167

168+
msgid ""
169+
":gh:`125115`: Refactor the :mod:`pdb` parsing issue so positional arguments "
170+
"can pass through intuitively."
171+
msgstr ""
172+
161173
msgid ""
162174
":gh:`140815`: :mod:`faulthandler` now detects if a frame or a code object is "
163175
"invalid or freed. Patch by Victor Stinner."
@@ -579,6 +591,11 @@ msgstr ""
579591
msgid ":gh:`136507`: Fix mimetypes CLI to handle multiple file parameters."
580592
msgstr ""
581593

594+
msgid ""
595+
":gh:`136057`: Fixed the bug in :mod:`pdb` and :mod:`bdb` where ``next`` and "
596+
"``step`` can't go over the line if a loop exists in the line."
597+
msgstr ""
598+
582599
msgid ""
583600
":gh:`135386`: Fix opening a :mod:`dbm.sqlite3` database for reading from "
584601
"read-only file or directory."
@@ -690,6 +707,18 @@ msgid ""
690707
"section."
691708
msgstr ""
692709

710+
msgid ""
711+
":gh:`141528`: Suggest using :meth:`concurrent.interpreters.Interpreter."
712+
"close` instead of the private ``_interpreters.destroy`` function when "
713+
"warning about remaining subinterpreters. Patch by Sergey Miryanov."
714+
msgstr ""
715+
716+
msgid ""
717+
":gh:`141312`: Fix the assertion failure in the ``__setstate__`` method of "
718+
"the range iterator when a non-integer argument is passed. Patch by Sergey "
719+
"Miryanov."
720+
msgstr ""
721+
693722
msgid ""
694723
":gh:`140939`: Fix memory leak when :class:`bytearray` or :class:`bytes` is "
695724
"formated with the ``%*b`` format with a large width that results in a :exc:"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp