1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2024 , Python Software Foundation
2
+ # Copyright (C) 2001-2025 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
@@ -15,7 +15,7 @@ msgid ""
15
15
msgstr ""
16
16
"Project-Id-Version : Python 3.13\n "
17
17
"Report-Msgid-Bugs-To : \n "
18
- "POT-Creation-Date : 2024-12-27 14:16 +0000\n "
18
+ "POT-Creation-Date : 2025-01-10 14:17 +0000\n "
19
19
"PO-Revision-Date : 2021-06-28 00:49+0000\n "
20
20
"Last-Translator : tomo, 2024\n "
21
21
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -696,6 +696,13 @@ msgstr ""
696
696
697
697
#: ../../c-api/object.rst:498
698
698
msgid ""
699
+ "This is the same as :c:func:`PyObject_DelItem`, but *key* is specified as a :"
700
+ "c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
701
+ "`PyObject*`."
702
+ msgstr ""
703
+
704
+ #: ../../c-api/object.rst:505
705
+ msgid ""
699
706
"This is equivalent to the Python expression ``dir(o)``, returning a "
700
707
"(possibly empty) list of strings appropriate for the object argument, or "
701
708
"``NULL`` if there was an error. If the argument is ``NULL``, this is like "
@@ -709,7 +716,7 @@ msgstr ""
709
716
"様に、現在のローカルな名前を返します; この場合、アクティブな実行フレームがな"
710
717
"ければ ``NULL`` を返しますが、 :c:func:`PyErr_Occurred` は偽を返します。"
711
718
712
- #: ../../c-api/object.rst:507
719
+ #: ../../c-api/object.rst:514
713
720
msgid ""
714
721
"This is equivalent to the Python expression ``iter(o)``. It returns a new "
715
722
"iterator for the object argument, or the object itself if the object is "
@@ -721,14 +728,14 @@ msgstr ""
721
728
"す。オブジェクトが反復処理不可能であった場合には :exc:`TypeError` を送出して "
722
729
"``NULL`` を返します。"
723
730
724
- #: ../../c-api/object.rst:515
731
+ #: ../../c-api/object.rst:522
725
732
msgid ""
726
733
"This is equivalent to the Python ``__iter__(self): return self`` method. It "
727
734
"is intended for :term:`iterator` types, to be used in the :c:member:"
728
735
"`PyTypeObject.tp_iter` slot."
729
736
msgstr ""
730
737
731
- #: ../../c-api/object.rst:521
738
+ #: ../../c-api/object.rst:528
732
739
msgid ""
733
740
"This is the equivalent to the Python expression ``aiter(o)``. Takes an :"
734
741
"class:`AsyncIterable` object and returns an :class:`AsyncIterator` for it. "
@@ -737,67 +744,67 @@ msgid ""
737
744
"``NULL`` if the object cannot be iterated."
738
745
msgstr ""
739
746
740
- #: ../../c-api/object.rst:531
747
+ #: ../../c-api/object.rst:538
741
748
msgid "Get a pointer to subclass-specific data reserved for *cls*."
742
749
msgstr ""
743
750
744
- #: ../../c-api/object.rst:533
751
+ #: ../../c-api/object.rst:540
745
752
msgid ""
746
753
"The object *o* must be an instance of *cls*, and *cls* must have been "
747
754
"created using negative :c:member:`PyType_Spec.basicsize`. Python does not "
748
755
"check this."
749
756
msgstr ""
750
757
751
- #: ../../c-api/object.rst:537
758
+ #: ../../c-api/object.rst:544
752
759
msgid "On error, set an exception and return ``NULL``."
753
760
msgstr ""
754
761
755
- #: ../../c-api/object.rst:543
762
+ #: ../../c-api/object.rst:550
756
763
msgid ""
757
764
"Return the size of the instance memory space reserved for *cls*, i.e. the "
758
765
"size of the memory :c:func:`PyObject_GetTypeData` returns."
759
766
msgstr ""
760
767
761
- #: ../../c-api/object.rst:546
768
+ #: ../../c-api/object.rst:553
762
769
msgid ""
763
770
"This may be larger than requested using :c:member:`-PyType_Spec.basicsize "
764
771
"<PyType_Spec.basicsize>`; it is safe to use this larger size (e.g. with :c:"
765
772
"func:`!memset`)."
766
773
msgstr ""
767
774
768
- #: ../../c-api/object.rst:549
775
+ #: ../../c-api/object.rst:556
769
776
msgid ""
770
777
"The type *cls* **must** have been created using negative :c:member:"
771
778
"`PyType_Spec.basicsize`. Python does not check this."
772
779
msgstr ""
773
780
774
- #: ../../c-api/object.rst:553
781
+ #: ../../c-api/object.rst:560
775
782
msgid "On error, set an exception and return a negative value."
776
783
msgstr ""
777
784
778
- #: ../../c-api/object.rst:559
785
+ #: ../../c-api/object.rst:566
779
786
msgid ""
780
787
"Get a pointer to per-item data for a class with :c:macro:"
781
788
"`Py_TPFLAGS_ITEMS_AT_END`."
782
789
msgstr ""
783
790
784
- #: ../../c-api/object.rst:562
791
+ #: ../../c-api/object.rst:569
785
792
msgid ""
786
793
"On error, set an exception and return ``NULL``. :py:exc:`TypeError` is "
787
794
"raised if *o* does not have :c:macro:`Py_TPFLAGS_ITEMS_AT_END` set."
788
795
msgstr ""
789
796
790
- #: ../../c-api/object.rst:570
797
+ #: ../../c-api/object.rst:577
791
798
msgid "Visit the managed dictionary of *obj*."
792
799
msgstr ""
793
800
794
- #: ../../c-api/object.rst:572 ../../c-api/object.rst:581
801
+ #: ../../c-api/object.rst:579 ../../c-api/object.rst:588
795
802
msgid ""
796
803
"This function must only be called in a traverse function of the type which "
797
804
"has the :c:macro:`Py_TPFLAGS_MANAGED_DICT` flag set."
798
805
msgstr ""
799
806
800
- #: ../../c-api/object.rst:579
807
+ #: ../../c-api/object.rst:586
801
808
msgid "Clear the managed dictionary of *obj*."
802
809
msgstr ""
803
810
0 commit comments