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

Commit1419301

Browse files
authored
[create-pull-request] automated change
1 parentbf62d35 commit1419301

File tree

3 files changed

+31
-36
lines changed

3 files changed

+31
-36
lines changed

‎c-api/hash.po‎

Lines changed: 17 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Translation of python-newest.c-api--hash.
1+
#SOME DESCRIPTIVE TITLE.
22
# Copyright (C) 2001 Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -19,8 +19,8 @@ msgstr ""
1919
"MIME-Version:1.0\n"
2020
"Content-Type:text/plain; charset=UTF-8\n"
2121
"Content-Transfer-Encoding:8bit\n"
22+
"Language:id\n"
2223
"Plural-Forms:nplurals=1; plural=0;\n"
23-
"X-Generator:Poedit 3.6\n"
2424

2525
msgid"PyHash API"
2626
msgstr"PyHash API"
@@ -30,90 +30,76 @@ msgid ""
3030
msgstr"Lihat juga :c:member:`PyTypeObject.tp_hash` dan :ref:`numeric-hash`"
3131

3232
msgid"Hash value type: signed integer."
33-
msgstr"Tipe nilai hash: signed integer."
33+
msgstr""
3434

3535
msgid"Hash value type: unsigned integer."
36-
msgstr"Tipe nilai hash: unsigned integer."
36+
msgstr""
3737

3838
msgid""
3939
"The `Mersenne prime <https://en.wikipedia.org/wiki/Mersenne_prime>`_ ``P = "
4040
"2**n -1``, used for numeric hash scheme."
4141
msgstr""
42-
"`Bilangan prima Mersenne <https://en.wikipedia.org/wiki/Mersenne_prime>`_ "
43-
"``P = 2**n -1``, digunakan untuk skema hash numerik."
4442

4543
msgid"The exponent ``n`` of ``P`` in :c:macro:`PyHASH_MODULUS`."
46-
msgstr"Eksponen ``n`` dari ``P`` di dalam :c:macro:`PyHASH_MODULUS`."
44+
msgstr""
4745

4846
msgid"Prime multiplier used in string and various other hashes."
49-
msgstr"Pengganda prima digunakan dalam string dan berbagai macam hash."
47+
msgstr""
5048

5149
msgid"The hash value returned for a positive infinity."
52-
msgstr"Nilai hash dikembalikan dalam bentuk positif tak terhingga."
50+
msgstr""
5351

5452
msgid"The multiplier used for the imaginary part of a complex number."
5553
msgstr""
56-
"Pengganda digunakan untuk bagian imajiner dari suatu bilangan kompleks."
5754

5855
msgid"Hash function definition used by :c:func:`PyHash_GetFuncDef`."
59-
msgstr"Definisi fungsi hash digunakan oleh :c:func:`PyHash_GetFuncDef`."
56+
msgstr""
6057

6158
msgid"Hash function name (UTF-8 encoded string)."
62-
msgstr"Nama fungsi hash (UTF-8 encoded string)."
59+
msgstr""
6360

6461
msgid"Internal size of the hash value in bits."
65-
msgstr"Ukuran internal hash dalam bentuk bits."
62+
msgstr""
6663

6764
msgid"Size of seed input in bits."
68-
msgstr"Ukuran input seed dalam bits."
65+
msgstr""
6966

7067
msgid"Get the hash function definition."
71-
msgstr"Dapatkan definisi fungsi hash."
68+
msgstr""
7269

7370
msgid":pep:`456`\"Secure and interchangeable hash algorithm\"."
74-
msgstr":pep:`456` “Algoritma hash yang aman dan dapat dipertukarkan“."
71+
msgstr""
7572

7673
msgid""
7774
"Hash a pointer value: process the pointer value as an integer (cast it to "
7875
"``uintptr_t`` internally). The pointer is not dereferenced."
7976
msgstr""
80-
"Hash sebuah nilai pointer: proses nilai pointer sebagai integer (ubah ke "
81-
"bentuk ``uintptr_t`` secara internal). Pointer tidak dilakukan dereferensi."
8277

8378
msgid"The function cannot fail: it cannot return ``-1``."
84-
msgstr"Fungsi tidak bisa gagal: ia tidak bisa mengembalikan nilai ``-1``."
79+
msgstr""
8580

8681
msgid""
8782
"Compute and return the hash value of a buffer of *len* bytes starting at "
8883
"address *ptr*. The hash is guaranteed to match that of :class:`bytes`, :"
8984
"class:`memoryview`, and other built-in objects that implement the :ref:"
9085
"`buffer protocol <bufferobjects>`."
9186
msgstr""
92-
"Komputasi dan kembalikan nilai hash dari sebuah penyangga dari *len* bytes "
93-
"dimulai dari alamat *ptr*. Hash dijamin untuk cocok "
94-
"pada :class:`bytes`, :class:`memoryview`, dan bawaan objek yang lain yang "
95-
"mengimplementasikan :ref:`buffer protocol <bufferobjects>`."
9687

9788
msgid""
9889
"Use this function to implement hashing for immutable objects whose :c:member:"
9990
"`~PyTypeObject.tp_richcompare` function compares to another object's buffer."
10091
msgstr""
101-
"Gunakan fungsi ini untuk implementasikan hashing pada objek yang tidak "
102-
"dapat berubah dimana fungsi :c:member:`~PyTypeObject.tp_richcompare` "
103-
"dibandingkan pada penyangga objek yang lain."
10492

10593
msgid"*len* must be greater than or equal to ``0``."
106-
msgstr"*len* harus lebih besar atau sama dengan ``0``."
94+
msgstr""
10795

10896
msgid"This function always succeeds."
109-
msgstr"Fungsi ini selalu berhasil."
97+
msgstr""
11098

11199
msgid""
112100
"Generic hashing function that is meant to be put into a type object's "
113101
"``tp_hash`` slot. Its result only depends on the object's identity."
114102
msgstr""
115-
"Fungsi generik hashing yang dimaksudkan untuk ditaruh pada tipe objek "
116-
"``tp_hash``. Hasilnya hanya bergantung dari identitas objek itu."
117103

118104
msgid"In CPython, it is equivalent to :c:func:`Py_HashPointer`."
119-
msgstr"Di CPython, itu sama dengan :c:func:`Py_HashPointer`."
105+
msgstr""

‎library/dataclasses.po‎

Lines changed: 8 additions & 4 deletions
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-08-07 20:38+0000\n"
14+
"POT-Creation-Date:2025-08-21 14:19+0000\n"
1515
"PO-Revision-Date:2025-08-02 17:34+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -225,9 +225,13 @@ msgstr ""
225225

226226
msgid""
227227
"*frozen*: If true (the default is ``False``), assigning to fields will "
228-
"generate an exception. This emulates read-only frozen instances. If :meth:"
229-
"`~object.__setattr__` or :meth:`~object.__delattr__` is defined in the "
230-
"class, then :exc:`TypeError` is raised. See the discussion below."
228+
"generate an exception. This emulates read-only frozen instances. See the :"
229+
"ref:`discussion <dataclasses-frozen>` below."
230+
msgstr""
231+
232+
msgid""
233+
"If :meth:`~object.__setattr__` or :meth:`~object.__delattr__` is defined in "
234+
"the class and *frozen* is true, then :exc:`TypeError` is raised."
231235
msgstr""
232236

233237
msgid""

‎whatsnew/changelog.po‎

Lines changed: 6 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-08-19 14:18+0000\n"
14+
"POT-Creation-Date: 2025-08-21 14:19+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:35+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -47,6 +47,11 @@ msgid ""
4747
"Pablo Galindo."
4848
msgstr ""
4949

50+
msgid ""
51+
":gh:`137728`: Fix the JIT's handling of many local variables. This "
52+
"previously caused a segfault."
53+
msgstr ""
54+
5055
msgid "Python 3.14.0 release candidate 2"
5156
msgstr ""
5257

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp