-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathcall.po
More file actions
703 lines (606 loc) Β· 35.1 KB
/
call.po
File metadata and controls
703 lines (606 loc) Β· 35.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2020, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.9\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-08 03:37+0900\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dong-gweon Oh <flowdas@gmail.com>\n"
"Language-Team: Korean (https://python.flowdas.com)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.7.0\n"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:6
msgid "Call Protocol"
msgstr "νΈμΆ νλ‘ν μ½"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:8
msgid ""
"CPython supports two different calling protocols: *tp_call* and "
"vectorcall."
msgstr "CPythonμ λ κ°μ§ νΈμΆ νλ‘ν μ½μ μ§μν©λλ€: *tp_call*\\κ³Ό 벑ν°μ½(vectorcall)."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:12
msgid "The *tp_call* Protocol"
msgstr "*tp_call* νλ‘ν μ½"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:14
msgid ""
"Instances of classes that set :c:member:`~PyTypeObject.tp_call` are "
"callable. The signature of the slot is::"
msgstr ""
":c:member:`~PyTypeObject.tp_call`\\μ μ€μ νλ ν΄λμ€μ μΈμ€ν΄μ€λ μ½λ¬λΈμ
λλ€. μ¬λ‘―μ μλͺ
μ λ€μκ³Ό "
"κ°μ΅λλ€::"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:19
msgid ""
"A call is made using a tuple for the positional arguments and a dict for "
"the keyword arguments, similarly to ``callable(*args, **kwargs)`` in "
"Python code. *args* must be non-NULL (use an empty tuple if there are no "
"arguments) but *kwargs* may be *NULL* if there are no keyword arguments."
msgstr ""
"νμ΄μ¬ μ½λμ ``callable(*args, **kwargs)`` μ μ μ¬νκ², μμΉ μΈμλ₯Ό μν ννκ³Ό ν€μλ μΈμλ₯Ό μν "
"λμ
λ리λ₯Ό μ¬μ©νμ¬ νΈμΆν©λλ€. *args*\\λ NULLμ΄ μλμ΄μΌ ν©λλ€ (μΈμκ° μμΌλ©΄ λΉ ννμ μ¬μ©νμμμ€). νμ§λ§ "
"ν€μλ μΈμκ° μμΌλ©΄ *kwargs*\\λ *NULL*\\μΌ μ μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:25
msgid ""
"This convention is not only used by *tp_call*: "
":c:member:`~PyTypeObject.tp_new` and :c:member:`~PyTypeObject.tp_init` "
"also pass arguments this way."
msgstr ""
"μ΄ κ·μΉμ *tp_call*\\μμλ§ μ¬μ©λλ κ²μ΄ μλλλ€: :c:member:`~PyTypeObject.tp_new`\\μ "
":c:member:`~PyTypeObject.tp_init`\\λ μΈμλ₯Ό μ΄λ° μμΌλ‘ μ λ¬ν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:29
msgid ""
"To call an object, use :c:func:`PyObject_Call` or other :ref:`call API "
"<capi-call>`."
msgstr ""
"κ°μ²΄λ₯Ό νΈμΆνλ €λ©΄, :c:func:`PyObject_Call`\\μ΄λ λ€λ₯Έ :ref:`νΈμΆ API <capi-call>`\\λ₯Ό "
"μ¬μ©νμμμ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:36
msgid "The Vectorcall Protocol"
msgstr "벑ν°μ½(Vectorcall) νλ‘ν μ½"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:40
msgid ""
"The vectorcall protocol was introduced in :pep:`590` as an additional "
"protocol for making calls more efficient."
msgstr "벑ν°μ½ νλ‘ν μ½μ :pep:`590`\\μμ νΈμΆ ν¨μ¨μ λμ΄κΈ° μν μΆκ° νλ‘ν μ½λ‘ λμ
λμμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:43
msgid ""
"As rule of thumb, CPython will prefer the vectorcall for internal calls "
"if the callable supports it. However, this is not a hard rule. "
"Additionally, some third-party extensions use *tp_call* directly (rather "
"than using :c:func:`PyObject_Call`). Therefore, a class supporting "
"vectorcall must also implement :c:member:`~PyTypeObject.tp_call`. "
"Moreover, the callable must behave the same regardless of which protocol "
"is used. The recommended way to achieve this is by setting "
":c:member:`~PyTypeObject.tp_call` to :c:func:`PyVectorcall_Call`. This "
"bears repeating:"
msgstr ""
"κ²½ν κ·μΉμΌλ‘, CPythonμ μ½λ¬λΈμ΄ μ§μνλ©΄ λ΄λΆ νΈμΆμ λν΄ λ²‘ν°μ½μ μ νΈν©λλ€. κ·Έλ¬λ μ΄κ²μ μ격ν κ·μΉμ΄ μλλλ€. "
"λν, μΌλΆ μ μΌμ νμ₯μ (:c:func:`PyObject_call`\\μ μ¬μ©νμ§ μκ³ ) *tp_call*\\μ μ§μ "
"μ¬μ©ν©λλ€. λ°λΌμ, 벑ν°μ½μ μ§μνλ ν΄λμ€λ :c:member:`~PyTypeObject.tp_call`\\μ ꡬνν΄μΌ ν©λλ€."
" λν, μ΄λ€ νλ‘ν μ½μ μ¬μ©νλμ§μ κ΄κ³μμ΄ μ½λ¬λΈμ λμΌνκ² μλν΄μΌ ν©λλ€. μ΄λ₯Ό μν΄ κΆμ₯λλ λ°©λ²μ "
":c:member:`~PyTypeObject.tp_call`\\μ :c:func:`PyVectorcall_Call`\\λ‘ μ€μ νλ "
"κ²μ
λλ€. μ΄κ²μ΄ λ°λ³΅μ μ²λ¦¬ν©λλ€:"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:57
msgid ""
"A class supporting vectorcall **must** also implement "
":c:member:`~PyTypeObject.tp_call` with the same semantics."
msgstr ""
"벑ν°μ½μ μ§μνλ ν΄λμ€λ κ°μ μλ―Έκ° μλλ‘ :c:member:`~PyTypeObject.tp_call`\\μ **λ°λμ** "
"ꡬνν΄μΌ ν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:60
msgid ""
"A class should not implement vectorcall if that would be slower than "
"*tp_call*. For example, if the callee needs to convert the arguments to "
"an args tuple and kwargs dict anyway, then there is no point in "
"implementing vectorcall."
msgstr ""
"*tp_call*\\λ³΄λ€ λλ €μ§λ€λ©΄ ν΄λμ€λ 벑ν°μ½μ ꡬνν΄μλ μ λ©λλ€. μλ₯Ό λ€μ΄, νΌνΈμΆμκ° μ΄μ°¨νΌ μΈμλ₯Ό μΈμ ννκ³Ό "
"kwargs λμ
λλ¦¬λ‘ λ³νν΄μΌ νλ©΄, 벑ν°μ½μ ꡬνν μ΄μ κ° μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:65
msgid ""
"Classes can implement the vectorcall protocol by enabling the "
":const:`Py_TPFLAGS_HAVE_VECTORCALL` flag and setting "
":c:member:`~PyTypeObject.tp_vectorcall_offset` to the offset inside the "
"object structure where a *vectorcallfunc* appears. This is a pointer to a"
" function with the following signature:"
msgstr ""
"ν΄λμ€λ :const:`Py_TPFLAGS_HAVE_VECTORCALL` νλκ·Έλ₯Ό νμ±ννκ³ "
":c:member:`~PyTypeObject.tp_vectorcall_offset`\\μ *vectorcallfunc* κ° λ±μ₯νλ"
" κ°μ²΄ ꡬ쑰체 λ΄λΆμ μ€νμ
μΌλ‘ μ€μ νμ¬ λ²‘ν°μ½ νλ‘ν μ½μ ꡬνν μ μμ΅λλ€. μ΄κ²μ λ€μκ³Ό κ°μ μλͺ
μ κ°λ ν¨μλ₯Ό κ°λ¦¬ν€λ "
"ν¬μΈν°μ
λλ€:"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:73
msgid "*callable* is the object being called."
msgstr "*callable*\\μ νΈμΆλλ κ°μ²΄μ
λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:75
msgid "*args* is a C array consisting of the positional arguments followed by the"
msgstr "*args*\\λ μμΉ μΈμμ κ·Έ λ€λ₯Ό λ°λ₯΄λ ν€μλ μΈμμ κ°μΌλ‘ ꡬμ±λ C λ°°μ΄μ
λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:75
msgid ""
"values of the keyword arguments. This can be *NULL* if there are no "
"arguments."
msgstr "μΈμκ° μμΌλ©΄ *NULL*\\μΌ μ μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:79
msgid "*nargsf* is the number of positional arguments plus possibly the"
msgstr "*nargsf*\\λ μμΉ μΈμμ μμ"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:78
msgid ""
":const:`PY_VECTORCALL_ARGUMENTS_OFFSET` flag. To get the actual number of"
" positional arguments from *nargsf*, use :c:func:`PyVectorcall_NARGS`."
msgstr ""
":const:`PY_VECTORCALL_ARGUMENTS_OFFSET` νλκ·Έλ₯Ό λν κ²μ
λλ€. *nargsf*\\μμ μ€μ μμΉ "
"μΈμ μλ₯Ό μ»μΌλ €λ©΄, :c:func:`PyVectorcall_NARGS`\\λ₯Ό μ¬μ©νμμμ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:85
msgid "*kwnames* is a tuple containing the names of the keyword arguments;"
msgstr "*kwnames*\\λ ν€μλ μΈμμ μ΄λ¦μ ν¬ν¨νλ ννμ
λλ€;"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:82
msgid ""
"in other words, the keys of the kwargs dict. These names must be strings "
"(instances of ``str`` or a subclass) and they must be unique. If there "
"are no keyword arguments, then *kwnames* can instead be *NULL*."
msgstr ""
"λ€μ λ§ν΄, kwargs λμ
λ리μ ν€. μ΄ μ΄λ¦λ€μ λ¬Έμμ΄(``str``\\μ΄λ μλΈ ν΄λμ€μ μΈμ€ν΄μ€)μ΄μ΄μΌνλ©° κ³ μ ν΄μΌ "
"ν©λλ€. ν€μλ μΈμκ° μμΌλ©΄, *kwnames*\\λ λμ *NULL*\\μΌ μ μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:89
msgid ""
"If this flag is set in a vectorcall *nargsf* argument, the callee is "
"allowed to temporarily change ``args[-1]``. In other words, *args* points"
" to argument 1 (not 0) in the allocated vector. The callee must restore "
"the value of ``args[-1]`` before returning."
msgstr ""
"μ΄ νλκ·Έκ° λ²‘ν°μ½ *nargsf* μΈμμ μ€μ λλ©΄, νΌνΈμΆμλ μΌμμ μΌλ‘ ``args[-1]``\\μ λ³κ²½ν μ μμ΅λλ€. μ¦, "
"*args*\\λ ν λΉλ 벑ν°μμ μΈμ 1(0μ΄ μλλλ€)μ κ°λ¦¬ν΅λλ€. νΌνΈμΆμλ λ°ννκΈ° μ μ ``args[-1]`` κ°μ "
"볡μν΄μΌ ν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:94
msgid ""
"For :c:func:`PyObject_VectorcallMethod`, this flag means instead that "
"``args[0]`` may be changed."
msgstr ""
":c:func:`PyObject_VectorcallMethod` μ κ²½μ°, μ΄ νλκ·Έλ λμ ``args[0]``\\μ΄ λ³κ²½λ μ "
"μμμ μλ―Έν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:97
msgid ""
"Whenever they can do so cheaply (without additional allocation), callers "
"are encouraged to use :const:`PY_VECTORCALL_ARGUMENTS_OFFSET`. Doing so "
"will allow callables such as bound methods to make their onward calls "
"(which include a prepended *self* argument) very efficiently."
msgstr ""
"(μΆκ° ν λΉ μμ΄) μ λ ΄νκ² ν μ μμ λλ§λ€, νΈμΆμλ "
":const:`PY_VECTORCALL_ARGUMENTS_OFFSET`\\μ μ¬μ©νλ κ²μ΄ μ’μ΅λλ€. μ΄λ κ² νλ©΄ μ°κ²°λ λ©μλμ "
"κ°μ μ½λ¬λΈμ΄ νμ νΈμΆ(μμ *self* μΈμλ₯Ό ν¬ν¨νλ)μ λ§€μ° ν¨μ¨μ μΌλ‘ λ§λ€ μ μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:102
msgid ""
"To call an object that implements vectorcall, use a :ref:`call API <capi-"
"call>` function as with any other callable. :c:func:`PyObject_Vectorcall`"
" will usually be most efficient."
msgstr ""
"벑ν°μ½μ ꡬννλ κ°μ²΄λ₯Ό νΈμΆνλ €λ©΄, λ€λ₯Έ μ½λ¬λΈκ³Ό λ§μ°¬κ°μ§λ‘ :ref:`νΈμΆ API <capi-call>` ν¨μλ₯Ό μ¬μ©νμμμ€. "
":c:func:`PyObject_Vectorcall`\\μ μΌλ°μ μΌλ‘ κ°μ₯ ν¨μ¨μ μ
λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:109
msgid ""
"In CPython 3.8, the vectorcall API and related functions were available "
"provisionally under names with a leading underscore: "
"``_PyObject_Vectorcall``, ``_Py_TPFLAGS_HAVE_VECTORCALL``, "
"``_PyObject_VectorcallMethod``, ``_PyVectorcall_Function``, "
"``_PyObject_CallOneArg``, ``_PyObject_CallMethodNoArgs``, "
"``_PyObject_CallMethodOneArg``. Additionally, ``PyObject_VectorcallDict``"
" was available as ``_PyObject_FastCallDict``. The old names are still "
"defined as aliases of the new, non-underscored names."
msgstr ""
"CPython 3.8μμ 벑ν°μ½ APIμ κ΄λ ¨ ν¨μλ μμ λ°μ€μ΄ λΆμ μ΄λ¦μΌλ‘ μ μ μ μΌλ‘ μ¬μ©ν μ μμμ΅λλ€: "
"``_PyObject_Vectorcall``, ``_Py_TPFLAGS_HAVE_VECTORCALL``, "
"``_PyObject_VectorcallMethod``, ``_PyVectorcall_Function``, "
"``_PyObject_CallOneArg``, ``_PyObject_CallMethodNoArgs``, "
"``_PyObject_CallMethodOneArg``. λν, ``PyObject_VectorcallDict``\\λ "
"``_PyObject_FastCallDict``\\λ‘ μ 곡λμμ΅λλ€. μ΄μ μ΄λ¦μ μ¬μ ν λ°μ€μ΄ μλ μλ‘μ΄ μ΄λ¦μ λ³μΉμΌλ‘ "
"μ μλ©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:121
msgid "Recursion Control"
msgstr "μ¬κ· μ μ΄"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:123
msgid ""
"When using *tp_call*, callees do not need to worry about :ref:`recursion "
"<recursion>`: CPython uses :c:func:`Py_EnterRecursiveCall` and "
":c:func:`Py_LeaveRecursiveCall` for calls made using *tp_call*."
msgstr ""
"*tp_call*\\μ μ¬μ©ν λ, νΌνΈμΆμλ :ref:`μ¬κ· <recursion>`\\μ λν΄ κ±±μ ν νμκ° μμ΅λλ€: "
"CPythonμ *tp_call*\\μ μ¬μ©νμ¬ νΈμΆν κ²½μ° :c:func:`Py_EnterRecursiveCall` κ³Ό "
":c:func:`Py_LeaveRecursiveCall` μ μ¬μ©ν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:128
msgid ""
"For efficiency, this is not the case for calls done using vectorcall: the"
" callee should use *Py_EnterRecursiveCall* and *Py_LeaveRecursiveCall* if"
" needed."
msgstr ""
"ν¨μ¨μ±μ μν΄, 벑ν°μ½μ μ¬μ©νμ¬ νΈμΆν κ²½μ°μλ κ·Έλ μ§ μμ΅λλ€: νΌνΈμΆμλ νμνλ©΄ *Py_EnterRecursiveCall* "
"κ³Ό *Py_LeaveRecursiveCall* μ μ¬μ©ν΄μΌ ν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:134
msgid "Vectorcall Support API"
msgstr "벑ν°μ½ μ§μ API"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:138
msgid ""
"Given a vectorcall *nargsf* argument, return the actual number of "
"arguments. Currently equivalent to::"
msgstr "벑ν°μ½ *nargsf* μΈμκ° μ£Όμ΄μ§λ©΄, μ€μ μΈμ μλ₯Ό λ°νν©λλ€. νμ¬ λ€μκ³Ό λλ±ν©λλ€::"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:144
msgid ""
"However, the function ``PyVectorcall_NARGS`` should be used to allow for "
"future extensions."
msgstr "κ·Έλ¬λ, ν₯ν νμ₯μ μν΄ ``PyVectorcall_NARGS`` ν¨μλ₯Ό μ¬μ©ν΄μΌ ν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:147
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:161
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:175
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:259
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:346
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:360
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:375
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:391
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:413
msgid "This function is not part of the :ref:`limited API <stable>`."
msgstr "μ΄ ν¨μλ :ref:`μ νλ API <stable>`\\μ μΌλΆκ° μλλλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:153
msgid ""
"If *op* does not support the vectorcall protocol (either because the type"
" does not or because the specific instance does not), return *NULL*. "
"Otherwise, return the vectorcall function pointer stored in *op*. This "
"function never raises an exception."
msgstr ""
"*op*\\κ° λ²‘ν°μ½ νλ‘ν μ½μ μ§μνμ§ μμΌλ©΄ (νμ΄ μ§μνμ§ μκ±°λ μΈμ€ν΄μ€κ° μ§μνμ§ μκΈ° λλ¬Έμ), *NULL*\\μ "
"λ°νν©λλ€. κ·Έλ μ§ μμΌλ©΄, *op*\\μ μ μ₯λ 벑ν°μ½ ν¨μ ν¬μΈν°λ₯Ό λ°νν©λλ€. μ΄ ν¨μλ μμΈλ₯Ό λ°μμν€μ§ μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:158
msgid ""
"This is mostly useful to check whether or not *op* supports vectorcall, "
"which can be done by checking ``PyVectorcall_Function(op) != NULL``."
msgstr ""
"μ΄κ²μ *op*\\κ° λ²‘ν°μ½μ μ§μνλμ§λ₯Ό νμΈνλ λ° μ£Όλ‘ μ μ©νλ©°, ``PyVectorcall_Function(op) != "
"NULL``\\μ νμΈνμ¬ μν ν μ μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:167
msgid ""
"Call *callable*'s :c:type:`vectorcallfunc` with positional and keyword "
"arguments given in a tuple and dict, respectively."
msgstr ""
"ννκ³Ό λμ
λ리μ κ°κ° μ£Όμ΄μ§ μμΉμ ν€μλ μΈμλ‘ *callable*\\μ :c:type:`vectorcallfunc` λ₯Ό "
"νΈμΆν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:170
msgid ""
"This is a specialized function, intended to be put in the "
":c:member:`~PyTypeObject.tp_call` slot or be used in an implementation of"
" ``tp_call``. It does not check the :const:`Py_TPFLAGS_HAVE_VECTORCALL` "
"flag and it does not fall back to ``tp_call``."
msgstr ""
"μ΄κ²μ :c:member:`~PyTypeObject.tp_call` μ¬λ‘―μ λ£κ±°λ ``tp_call`` ꡬνμ μ¬μ©νκΈ° μν νΉμ "
"ν¨μμ
λλ€. :const:`Py_TPFLAGS_HAVE_VECTORCALL` νλκ·Έλ₯Ό νμΈνμ§ μκ³ ``tp_call``\\λ‘ ν΄ "
"λ°±νμ§ μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:183
msgid "Object Calling API"
msgstr "κ°μ²΄ νΈμΆ API"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:185
msgid ""
"Various functions are available for calling a Python object. Each "
"converts its arguments to a convention supported by the called object β "
"either *tp_call* or vectorcall. In order to do as litle conversion as "
"possible, pick one that best fits the format of data you have available."
msgstr ""
"νμ΄μ¬ κ°μ²΄λ₯Ό νΈμΆνκΈ° μν΄ λ€μν ν¨μλ₯Ό μ¬μ©ν μ μμ΅λλ€. κ°κ°μ μΈμλ₯Ό νΈμΆλ κ°μ²΄κ° μ§μνλ κ·μΉμΌλ‘ λ³νν©λλ€ - "
"*tp_call* λλ 벑ν°μ½. κ°λ₯ν ν μ μ λ³νμ μννλ €λ©΄, μ¬μ© κ°λ₯ν λ°μ΄ν° νμμ κ°μ₯ μ ν©ν κ²μ μ ννμμμ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:191
msgid ""
"The following table summarizes the available functions; please see "
"individual documentation for details."
msgstr "λ€μ νλ μ¬μ© κ°λ₯ν ν¨μλ₯Ό μμ½ν κ²μ
λλ€; μμΈν λ΄μ©μ κ°λ³ μ€λͺ
μλ₯Ό μ°Έμ‘°νμμμ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:195
msgid "Function"
msgstr "ν¨μ"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:195
msgid "callable"
msgstr "μ½λ¬λΈ"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:195
msgid "args"
msgstr "args"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:195
msgid "kwargs"
msgstr "kwargs"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:197
msgid ":c:func:`PyObject_Call`"
msgstr ":c:func:`PyObject_Call`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:197
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:199
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:201
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:203
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:205
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:209
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:217
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:219
msgid "``PyObject *``"
msgstr "``PyObject *``"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:197
msgid "tuple"
msgstr "νν"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:197
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:219
msgid "dict/``NULL``"
msgstr "λμ
λ리/``NULL``"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:199
msgid ":c:func:`PyObject_CallNoArgs`"
msgstr ":c:func:`PyObject_CallNoArgs`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:199
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:201
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:203
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:205
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:207
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:209
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:211
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:213
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:215
msgid "---"
msgstr "---"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:201
msgid ":c:func:`PyObject_CallOneArg`"
msgstr ":c:func:`PyObject_CallOneArg`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:201
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:215
msgid "1 object"
msgstr "1 κ°μ²΄"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:203
msgid ":c:func:`PyObject_CallObject`"
msgstr ":c:func:`PyObject_CallObject`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:203
msgid "tuple/``NULL``"
msgstr "νν/``NULL``"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:205
msgid ":c:func:`PyObject_CallFunction`"
msgstr ":c:func:`PyObject_CallFunction`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:205
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:207
msgid "format"
msgstr "ν¬λ§·(format)"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:207
msgid ":c:func:`PyObject_CallMethod`"
msgstr ":c:func:`PyObject_CallMethod`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:207
msgid "obj + ``char*``"
msgstr "obj + ``char*``"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:209
msgid ":c:func:`PyObject_CallFunctionObjArgs`"
msgstr ":c:func:`PyObject_CallFunctionObjArgs`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:209
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:211
msgid "variadic"
msgstr "κ°λ³(variadic)"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:211
msgid ":c:func:`PyObject_CallMethodObjArgs`"
msgstr ":c:func:`PyObject_CallMethodObjArgs`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:211
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:213
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:215
msgid "obj + name"
msgstr "obj + name"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:213
msgid ":c:func:`PyObject_CallMethodNoArgs`"
msgstr ":c:func:`PyObject_CallMethodNoArgs`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:215
msgid ":c:func:`PyObject_CallMethodOneArg`"
msgstr ":c:func:`PyObject_CallMethodOneArg`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:217
msgid ":c:func:`PyObject_Vectorcall`"
msgstr ":c:func:`PyObject_Vectorcall`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:217
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:219
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:221
msgid "vectorcall"
msgstr "벑ν°μ½"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:219
msgid ":c:func:`PyObject_VectorcallDict`"
msgstr ":c:func:`PyObject_VectorcallDict`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:221
msgid ":c:func:`PyObject_VectorcallMethod`"
msgstr ":c:func:`PyObject_VectorcallMethod`"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:221
msgid "arg + name"
msgstr "arg + name"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:227
msgid ""
"Call a callable Python object *callable*, with arguments given by the "
"tuple *args*, and named arguments given by the dictionary *kwargs*."
msgstr ""
"νν *args*\\λ‘ μ£Όμ΄μ§ μΈμμ λμ
λ리 *kwargs*\\λ‘ μ£Όμ΄μ§ μ΄λ¦μλ μΈμλ‘ μ½λ¬λΈ νμ΄μ¬ κ°μ²΄ "
"*callable*\\μ νΈμΆν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:230
msgid ""
"*args* must not be *NULL*; use an empty tuple if no arguments are needed."
" If no named arguments are needed, *kwargs* can be *NULL*."
msgstr ""
"*args*\\λ *NULL*\\μ΄ μλμ΄μΌ ν©λλ€γ
£ μΈμκ° νμ μμΌλ©΄ λΉ ννμ μ¬μ©νμμμ€. μ΄λ¦μλ μΈμκ° νμνμ§ μμΌλ©΄,"
" *kwargs*\\λ *NULL*\\μΌ μ μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:233
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:245
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:256
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:269
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:281
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:301
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:320
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:334
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:343
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:357
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:372
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:410
msgid ""
"Return the result of the call on success, or raise an exception and "
"return *NULL* on failure."
msgstr "μ±κ³΅νλ©΄ νΈμΆ κ²°κ³Όλ₯Ό λ°ννκ³ , μ€ν¨νλ©΄ μμΈλ₯Ό λ°μμν€κ³ *NULL*\\μ λ°νν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:236
msgid ""
"This is the equivalent of the Python expression: ``callable(*args, "
"**kwargs)``."
msgstr "μ΄κ²μ λ€μ νμ΄μ¬ ννμκ³Ό λλ±ν©λλ€: ``callable(*args, **kwargs)``."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:242
msgid ""
"Call a callable Python object *callable* without any arguments. It is the"
" most efficient way to call a callable Python object without any "
"argument."
msgstr ""
"μΈμ μμ΄ μ½λ¬λΈ νμ΄μ¬ κ°μ²΄ *callable*\\μ νΈμΆν©λλ€. μΈμ μμ΄ μ½λ¬λΈ νμ΄μ¬ κ°μ²΄λ₯Ό νΈμΆνλ κ°μ₯ ν¨μ¨μ μΈ "
"λ°©λ²μ
λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:253
msgid ""
"Call a callable Python object *callable* with exactly 1 positional "
"argument *arg* and no keyword arguments."
msgstr "μ νν 1κ°μ μμΉ μΈμ *arg*\\λ‘ ν€μλ μΈμ μμ΄ μ½λ¬λΈ νμ΄μ¬ κ°μ²΄ *callable*\\μ νΈμΆν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:266
msgid ""
"Call a callable Python object *callable*, with arguments given by the "
"tuple *args*. If no arguments are needed, then *args* can be *NULL*."
msgstr ""
"νν *args*\\μ μν΄ μ£Όμ΄μ§ μΈμλ‘ μ½λ¬λΈ νμ΄μ¬ κ°μ²΄ *callable*\\μ νΈμΆν©λλ€. μΈμκ° νμνμ§ μμΌλ©΄ "
"*args*\\λ *NULL*\\μΌ μ μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:272
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:284
msgid "This is the equivalent of the Python expression: ``callable(*args)``."
msgstr "μ΄κ²μ λ€μ νμ΄μ¬ ννμκ³Ό λλ±ν©λλ€: ``callable(*args)``."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:277
msgid ""
"Call a callable Python object *callable*, with a variable number of C "
"arguments. The C arguments are described using a :c:func:`Py_BuildValue` "
"style format string. The format can be *NULL*, indicating that no "
"arguments are provided."
msgstr ""
"κ°λ³ κ°μμ C μΈμλ‘ μ½λ¬λΈ νμ΄μ¬ κ°μ²΄ *callable*\\μ νΈμΆν©λλ€. C μΈμλ "
":c:func:`Py_BuildValue` μ€νμΌ ν¬λ§· λ¬Έμμ΄μ μ¬μ©νμ¬ κΈ°μ λ©λλ€. formatμ *NULL*\\μΌ μ μμΌλ©°, "
"μΈμκ° μ 곡λμ§ μμμ λνλ
λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:286
msgid ""
"Note that if you only pass :c:type:`PyObject *` args, "
":c:func:`PyObject_CallFunctionObjArgs` is a faster alternative."
msgstr ""
":c:type:`PyObject *` μΈμλ§ μ λ¬νλ€λ©΄ :c:func:`PyObject_CallFunctionObjArgs` κ° λ"
" λΉ λ₯Έ λμμμ μ μνμμμ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:289
msgid "The type of *format* was changed from ``char *``."
msgstr "*format*\\μ νμ΄ ``char *``\\μμ λ³κ²½λμμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:295
msgid ""
"Call the method named *name* of object *obj* with a variable number of C "
"arguments. The C arguments are described by a :c:func:`Py_BuildValue` "
"format string that should produce a tuple."
msgstr ""
"κ°λ³ κ°μμ C μΈμλ₯Ό μ¬μ©νμ¬ κ°μ²΄ *obj*\\μ *name*\\μ΄λΌλ μ΄λ¦μ λ©μλλ₯Ό νΈμΆν©λλ€. C μΈμλ ννμ μμ±ν΄μΌ "
"νλ :c:func:`Py_BuildValue` ν¬λ§· λ¬Έμμ΄λ‘ κΈ°μ λ©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:299
msgid "The format can be *NULL*, indicating that no arguments are provided."
msgstr "formatμ *NULL*\\μΌ μ μμΌλ©°, μΈμκ° μ 곡λμ§ μμμ λνλ
λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:304
msgid ""
"This is the equivalent of the Python expression: ``obj.name(arg1, arg2, "
"...)``."
msgstr "μ΄κ²μ λ€μ νμ΄μ¬ ννμκ³Ό λλ±ν©λλ€: ``obj.name(arg1, arg2, ...)``."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:307
msgid ""
"Note that if you only pass :c:type:`PyObject *` args, "
":c:func:`PyObject_CallMethodObjArgs` is a faster alternative."
msgstr ""
":c:type:`PyObject *` μΈμλ§ μ λ¬νλ€λ©΄ :c:func:`PyObject_CallMethodObjArgs` κ° λ "
"λΉ λ₯Έ λμμμ μ μνμμμ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:310
msgid "The types of *name* and *format* were changed from ``char *``."
msgstr "*name*\\κ³Ό *format*\\μ νμ΄ ``char *``\\μμ λ³κ²½λμμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:316
msgid ""
"Call a callable Python object *callable*, with a variable number of "
":c:type:`PyObject *` arguments. The arguments are provided as a variable"
" number of parameters followed by *NULL*."
msgstr ""
"κ°λ³ κ°μμ :c:type:`PyObject *` μΈμλ‘ μ½λ¬λΈ νμ΄μ¬ κ°μ²΄ *callable*\\μ νΈμΆν©λλ€. μΈμλ "
"*NULL*\\λ‘ λλλ κ°λ³ κ°μμ λ§€κ° λ³μλ‘ μ 곡λ©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:323
msgid ""
"This is the equivalent of the Python expression: ``callable(arg1, arg2, "
"...)``."
msgstr "μ΄κ²μ λ€μ νμ΄μ¬ ννμκ³Ό λλ±ν©λλ€: ``callable(arg1, arg2, ...)``."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:329
msgid ""
"Call a method of the Python object *obj*, where the name of the method is"
" given as a Python string object in *name*. It is called with a variable"
" number of :c:type:`PyObject *` arguments. The arguments are provided as"
" a variable number of parameters followed by *NULL*."
msgstr ""
"νμ΄μ¬ κ°μ²΄ *obj*\\μ λ©μλλ₯Ό νΈμΆν©λλ€. μ¬κΈ°μ λ©μλ μ΄λ¦μ *name*\\μμ νμ΄μ¬ λ¬Έμμ΄ κ°μ²΄λ‘ μ 곡λ©λλ€. κ°λ³ "
"κ°μμ :c:type:`PyObject *` μΈμλ‘ νΈμΆλ©λλ€. μΈμλ *NULL*\\λ‘ λλλ κ°λ³ κ°μμ λ§€κ° λ³μλ‘ "
"μ 곡λ©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:340
msgid ""
"Call a method of the Python object *obj* without arguments, where the "
"name of the method is given as a Python string object in *name*."
msgstr ""
"μΈμ μμ΄ νμ΄μ¬ κ°μ²΄ *obj*\\μ λ©μλλ₯Ό νΈμΆν©λλ€. μ¬κΈ°μ λ©μλ μ΄λ¦μ *name*\\μμ νμ΄μ¬ λ¬Έμμ΄ κ°μ²΄λ‘ "
"μ 곡λ©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:353
msgid ""
"Call a method of the Python object *obj* with a single positional "
"argument *arg*, where the name of the method is given as a Python string "
"object in *name*."
msgstr ""
"λ¨μΌ μμΉ μΈμ *arg*\\λ‘ νμ΄μ¬ κ°μ²΄ *obj*\\μ λ©μλλ₯Ό νΈμΆν©λλ€. μ¬κΈ°μ λ©μλ μ΄λ¦μ *name*\\μμ νμ΄μ¬ "
"λ¬Έμμ΄ κ°μ²΄λ‘ μ 곡λ©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:367
msgid ""
"Call a callable Python object *callable*. The arguments are the same as "
"for :c:type:`vectorcallfunc`. If *callable* supports vectorcall_, this "
"directly calls the vectorcall function stored in *callable*."
msgstr ""
"μ½λ¬λΈ νμ΄μ¬ κ°μ²΄ *callable*\\μ νΈμΆν©λλ€. μΈμλ :c:type:`vectorcallfunc` μ κ°μ΅λλ€. "
"*callable*\\μ΄ `벑ν°μ½ <vectorcall_>`_\\μ μ§μνλ©΄, *callable*\\μ μ μ₯λ 벑ν°μ½ ν¨μλ₯Ό μ§μ "
"νΈμΆν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:381
msgid ""
"Call *callable* with positional arguments passed exactly as in the "
"vectorcall_ protocol, but with keyword arguments passed as a dictionary "
"*kwdict*. The *args* array contains only the positional arguments."
msgstr ""
"μμΉ μΈμκ° `벑ν°μ½ <vectorcall_>`_ νλ‘ν μ½κ³Ό μ νν μΌμΉνμ§λ§ λμ
λ리 *kwdict*\\λ‘ μ λ¬λ ν€μλ μΈμλ‘ "
"*callable*\\μ νΈμΆν©λλ€. *args* λ°°μ΄μ μμΉ μΈμλ§ ν¬ν¨ν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:385
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 already has a dictionary ready to use for the keyword "
"arguments, but not a tuple for the positional arguments."
msgstr ""
"λ΄λΆμ μΌλ‘ μ¬μ©λλ νλ‘ν μ½κ³Ό κ΄κ³μμ΄, μΈμλ₯Ό λ³νν΄μΌ ν©λλ€. λ°λΌμ, μ΄ ν¨μλ νΈμΆμμκ² μ΄λ―Έ ν€μλ μΈμλ‘ μ¬μ©ν μ€λΉκ° "
"λ λμ
λλ¦¬κ° μμ§λ§, μμΉ μΈμμ λν ννμ΄ μμ λλ§ μ¬μ©ν΄μΌ ν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:397
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 is *args[0]*, and the *args* array starting at *args[1]* "
"represents the arguments of the call. There must be at least one "
"positional argument. *nargsf* is the number of positional arguments "
"including *args[0]*, plus :const:`PY_VECTORCALL_ARGUMENTS_OFFSET` if the "
"value of ``args[0]`` may temporarily be changed. Keyword arguments can be"
" passed just like in :c:func:`PyObject_Vectorcall`."
msgstr ""
"벑ν°μ½ νΈμΆ κ·μΉμ μ¬μ©νμ¬ λ©μλλ₯Ό νΈμΆν©λλ€. λ©μλ μ΄λ¦μ νμ΄μ¬ λ¬Έμμ΄ *name*\\μΌλ‘ μ 곡λ©λλ€. λ©μλκ° νΈμΆλλ "
"κ°μ²΄λ *args[0]*\\μ΄λ©°, *args[1]*\\μμ μμνλ *args* λ°°μ΄μ νΈμΆμ μΈμλ₯Ό λνλ
λλ€. νλ μ΄μμ μμΉ"
" μΈμκ° μμ΄μΌ ν©λλ€. *nargsf*\\λ *args[0]*\\μ ν¬ν¨ν μμΉ μΈμμ μμ΄λ©°, ``args[0]`` κ°μ΄ "
"μΌμμ μΌλ‘ λ³κ²½λ μ μμΌλ©΄ :const:`PY_VECTORCALL_ARGUMENTS_OFFSET`\\μ΄ λν΄μ§λλ€. ν€μλ μΈμλ"
" :c:func:`PyObject_Vectorcall`\\μμμ²λΌ μ λ¬λ μ μμ΅λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:406
msgid ""
"If the object has the :const:`Py_TPFLAGS_METHOD_DESCRIPTOR` feature, this"
" will call the unbound method object with the full *args* vector as "
"arguments."
msgstr ""
"κ°μ²΄μ :const:`Py_TPFLAGS_METHOD_DESCRIPTOR` κΈ°λ₯μ΄ μμΌλ©΄, μ 체 *args* 벑ν°λ₯Ό μΈμλ‘ μ°κ²°λμ§"
" μμ λ©μλ κ°μ²΄λ₯Ό νΈμΆν©λλ€."
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:419
msgid "Call Support API"
msgstr "νΈμΆ μ§μ API"
#: /Users/flowdas/works/docs/python-docs-ko/src/Doc/c-api/call.rst:423
msgid ""
"Determine if the object *o* is callable. Return ``1`` if the object is "
"callable and ``0`` otherwise. This function always succeeds."
msgstr ""
"κ°μ²΄ *o*\\κ° μ½λ¬λΈ μΈμ§ νλ³ν©λλ€. κ°μ²΄κ° μ½λ¬λΈ μ΄λ©΄ ``1``\\μ, κ·Έλ μ§ μμΌλ©΄ ``0``\\μ λ°νν©λλ€. μ΄ "
"ν¨μλ νμ μ±κ³΅ν©λλ€."