-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathasyncio-graph.po
More file actions
172 lines (142 loc) · 4.89 KB
/
asyncio-graph.po
File metadata and controls
172 lines (142 loc) · 4.89 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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001 Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.14\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-04-07 15:02+0000\n"
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
"id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
msgid "Call Graph Introspection"
msgstr ""
msgid "**Source code:** :source:`Lib/asyncio/graph.py`"
msgstr ""
msgid ""
"asyncio has powerful runtime call graph introspection utilities to trace the "
"entire call graph of a running *coroutine* or *task*, or a suspended "
"*future*. These utilities and the underlying machinery can be used from "
"within a Python program or by external profilers and debuggers."
msgstr ""
msgid ""
"Print the async call graph for the current task or the provided :class:"
"`Task` or :class:`Future`."
msgstr ""
msgid ""
"This function prints entries starting from the top frame and going down "
"towards the invocation point."
msgstr ""
msgid ""
"The function receives an optional *future* argument. If not passed, the "
"current running task will be used."
msgstr ""
msgid ""
"If the function is called on *the current task*, the optional keyword-only "
"*depth* argument can be used to skip the specified number of frames from top "
"of the stack."
msgstr ""
msgid ""
"If the optional keyword-only *limit* argument is provided, each call stack "
"in the resulting graph is truncated to include at most ``abs(limit)`` "
"entries. If *limit* is positive, the entries left are the closest to the "
"invocation point. If *limit* is negative, the topmost entries are left. If "
"*limit* is omitted or ``None``, all entries are present. If *limit* is "
"``0``, the call stack is not printed at all, only \"awaited by\" information "
"is printed."
msgstr ""
msgid ""
"If *file* is omitted or ``None``, the function will print to :data:`sys."
"stdout`."
msgstr ""
msgid "**Example:**"
msgstr ""
msgid "The following Python code:"
msgstr ""
msgid ""
"import asyncio\n"
"\n"
"async def test():\n"
" asyncio.print_call_graph()\n"
"\n"
"async def main():\n"
" async with asyncio.TaskGroup() as g:\n"
" g.create_task(test(), name='test')\n"
"\n"
"asyncio.run(main())"
msgstr ""
msgid "will print::"
msgstr ""
msgid ""
"* Task(name='test', id=0x1039f0fe0)\n"
"+ Call stack:\n"
"| File 't2.py', line 4, in async test()\n"
"+ Awaited by:\n"
" * Task(name='Task-1', id=0x103a5e060)\n"
" + Call stack:\n"
" | File 'taskgroups.py', line 107, in async TaskGroup.__aexit__()\n"
" | File 't2.py', line 7, in async main()"
msgstr ""
msgid ""
"Like :func:`print_call_graph`, but returns a string. If *future* is ``None`` "
"and there's no current task, the function returns an empty string."
msgstr ""
msgid ""
"Capture the async call graph for the current task or the provided :class:"
"`Task` or :class:`Future`."
msgstr ""
msgid ""
"The function receives an optional *future* argument. If not passed, the "
"current running task will be used. If there's no current task, the function "
"returns ``None``."
msgstr ""
msgid "Returns a ``FutureCallGraph`` data class object:"
msgstr ""
msgid "``FutureCallGraph(future, call_stack, awaited_by)``"
msgstr ""
msgid ""
"Where *future* is a reference to a :class:`Future` or a :class:`Task` (or "
"their subclasses.)"
msgstr ""
msgid "``call_stack`` is a tuple of ``FrameCallGraphEntry`` objects."
msgstr ""
msgid "``awaited_by`` is a tuple of ``FutureCallGraph`` objects."
msgstr ""
msgid "``FrameCallGraphEntry(frame)``"
msgstr ""
msgid ""
"Where *frame* is a frame object of a regular Python function in the call "
"stack."
msgstr ""
msgid "Low level utility functions"
msgstr ""
msgid ""
"To introspect an async call graph asyncio requires cooperation from control "
"flow structures, such as :func:`shield` or :class:`TaskGroup`. Any time an "
"intermediate :class:`Future` object with low-level APIs like :meth:`Future."
"add_done_callback() <asyncio.Future.add_done_callback>` is involved, the "
"following two functions should be used to inform asyncio about how exactly "
"such intermediate future objects are connected with the tasks they wrap or "
"control."
msgstr ""
msgid "Record that *future* is awaited on by *waiter*."
msgstr ""
msgid ""
"Both *future* and *waiter* must be instances of :class:`Future` or :class:"
"`Task` or their subclasses, otherwise the call would have no effect."
msgstr ""
msgid ""
"A call to ``future_add_to_awaited_by()`` must be followed by an eventual "
"call to the :func:`future_discard_from_awaited_by` function with the same "
"arguments."
msgstr ""
msgid "Record that *future* is no longer awaited on by *waiter*."
msgstr ""