@@ -71,109 +71,133 @@ msgid ""
71
71
"Monitoring functions should not be called with an exception set, except "
72
72
"those listed below as working with the current exception."
73
73
msgstr ""
74
+ "Funções de monitoramento não devem ser chamadas com uma exceção definida, "
75
+ "exceto as marcadas abaixo como funções que trabalham com a exceção atual."
74
76
75
77
#: ../../c-api/monitoring.rst:35
76
78
msgid ""
77
79
"Representation of the state of an event type. It is allocated by the user "
78
80
"while its contents are maintained by the monitoring API functions described "
79
81
"below."
80
82
msgstr ""
83
+ "Representação do estado de um tipo de evento. Alocada pelo usuário, enquanto "
84
+ "o seu conteúdo é mantido pelas funções da API de monitoramento descritas "
85
+ "abaixo."
81
86
82
87
#: ../../c-api/monitoring.rst:39
83
88
msgid ""
84
89
"All of the functions below return 0 on success and -1 (with an exception "
85
90
"set) on error."
86
91
msgstr ""
92
+ "Todas as funções abaixo retornam 0 para indicar sucesso e -1 (com uma "
93
+ "exceção definida) para indicar erro."
87
94
88
95
#: ../../c-api/monitoring.rst:41
89
96
msgid "See :mod:`sys.monitoring` for descriptions of the events."
90
- msgstr ""
97
+ msgstr "Veja :mod:`sys.monitoring` para descrições dos eventos. "
91
98
92
99
#: ../../c-api/monitoring.rst:45
93
100
msgid "Fire a ``PY_START`` event."
94
- msgstr ""
101
+ msgstr "Dispara um evento ``PY_START``. "
95
102
96
103
#: ../../c-api/monitoring.rst:50
97
104
msgid "Fire a ``PY_RESUME`` event."
98
- msgstr ""
105
+ msgstr "Dispara um evento ``PY_RESUME``. "
99
106
100
107
#: ../../c-api/monitoring.rst:55
101
108
msgid "Fire a ``PY_RETURN`` event."
102
- msgstr ""
109
+ msgstr "Dispara um evento ``PY_RETURN``. "
103
110
104
111
#: ../../c-api/monitoring.rst:60
105
112
msgid "Fire a ``PY_YIELD`` event."
106
- msgstr ""
113
+ msgstr "Dispara um evento ``PY_YIELD``. "
107
114
108
115
#: ../../c-api/monitoring.rst:65
109
116
msgid "Fire a ``CALL`` event."
110
- msgstr ""
117
+ msgstr "Dispara um evento ``CALL``. "
111
118
112
119
#: ../../c-api/monitoring.rst:70
113
120
msgid "Fire a ``LINE`` event."
114
- msgstr ""
121
+ msgstr "Dispara um evento ``LINE``. "
115
122
116
123
#: ../../c-api/monitoring.rst:75
117
124
msgid "Fire a ``JUMP`` event."
118
- msgstr ""
125
+ msgstr "Dispara um evento ``JUMP``. "
119
126
120
127
#: ../../c-api/monitoring.rst:80
121
128
msgid "Fire a ``BRANCH`` event."
122
- msgstr ""
129
+ msgstr "Dispara um evento ``BRANCH``. "
123
130
124
131
#: ../../c-api/monitoring.rst:85
125
132
msgid "Fire a ``C_RETURN`` event."
126
- msgstr ""
133
+ msgstr "Dispara um evento ``C_RETURN``. "
127
134
128
135
#: ../../c-api/monitoring.rst:90
129
136
msgid ""
130
137
"Fire a ``PY_THROW`` event with the current exception (as returned by :c:func:"
131
138
"`PyErr_GetRaisedException`)."
132
139
msgstr ""
140
+ "Dispara um evento ``PY_THROW`` com a exceção atual (conforme retornada por :"
141
+ "c:func:`PyErr_GetRaisedException`)."
133
142
134
143
#: ../../c-api/monitoring.rst:96
135
144
msgid ""
136
145
"Fire a ``RAISE`` event with the current exception (as returned by :c:func:"
137
146
"`PyErr_GetRaisedException`)."
138
147
msgstr ""
148
+ "Dispara um evento ``RAISE`` com a exceção atual (conforme retornada por :c:"
149
+ "func:`PyErr_GetRaisedException`)."
139
150
140
151
#: ../../c-api/monitoring.rst:102
141
152
msgid ""
142
153
"Fire a ``C_RAISE`` event with the current exception (as returned by :c:func:"
143
154
"`PyErr_GetRaisedException`)."
144
155
msgstr ""
156
+ "Dispara um evento ``C_RAISE`` com a exceção atual (conforme retornada por :c:"
157
+ "func:`PyErr_GetRaisedException`)."
145
158
146
159
#: ../../c-api/monitoring.rst:108
147
160
msgid ""
148
161
"Fire a ``RERAISE`` event with the current exception (as returned by :c:func:"
149
162
"`PyErr_GetRaisedException`)."
150
163
msgstr ""
164
+ "Dispara um evento ``RERAISE`` com a exceção atual (conforme retornada por :c:"
165
+ "func:`PyErr_GetRaisedException`)."
151
166
152
167
#: ../../c-api/monitoring.rst:114
153
168
msgid ""
154
169
"Fire an ``EXCEPTION_HANDLED`` event with the current exception (as returned "
155
170
"by :c:func:`PyErr_GetRaisedException`)."
156
171
msgstr ""
172
+ "Dispara um evento ``EXCEPTION_HANDLED`` com a exceção atual (conforme "
173
+ "retornada por :c:func:`PyErr_GetRaisedException`)."
157
174
158
175
#: ../../c-api/monitoring.rst:120
159
176
msgid ""
160
177
"Fire a ``PY_UNWIND`` event with the current exception (as returned by :c:"
161
178
"func:`PyErr_GetRaisedException`)."
162
179
msgstr ""
180
+ "Dispara um evento ``PY_UNWIND`` com a exceção atual (conforme retornada por :"
181
+ "c:func:`PyErr_GetRaisedException`)."
163
182
164
183
#: ../../c-api/monitoring.rst:126
165
184
msgid ""
166
185
"Fire a ``STOP_ITERATION`` event. If ``value`` is an instance of :exc:"
167
186
"`StopIteration`, it is used. Otherwise, a new :exc:`StopIteration` instance "
168
187
"is created with ``value`` as its argument."
169
188
msgstr ""
189
+ "Dispara um evento ``STOP_ITERATION``. Se ``value`` for uma instância de :exc:"
190
+ "`StopIteration`, ele é usado. Caso contrário, uma nova instância de :exc:"
191
+ "`StopIteration` é criada com ``value`` como o argumento."
170
192
171
193
#: ../../c-api/monitoring.rst:131
172
194
msgid "Managing the Monitoring State"
173
- msgstr ""
195
+ msgstr "Gerenciando o Estado de um Monitoramento "
174
196
175
197
#: ../../c-api/monitoring.rst:133
176
198
msgid ""
177
199
"Monitoring states can be managed with the help of monitoring scopes. A scope "
178
200
"would typically correspond to a python function."
179
201
msgstr ""
202
+ "Estados de monitoramento podem ser gerenciados com a ajuda de escopos de "
203
+ "monitoramento. Um escopo corresponderia tipicamente a um função python."
0 commit comments