@@ -8,7 +8,7 @@ msgstr ""
8
8
"Project-Id-Version : Python 3.7\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
10
"POT-Creation-Date : 2019-05-06 11:59-0400\n "
11
- "PO-Revision-Date : 2019-05-22 13:07 +0200\n "
11
+ "PO-Revision-Date : 2019-05-22 14:21 +0200\n "
12
12
"MIME-Version : 1.0\n "
13
13
"Content-Type : text/plain; charset=UTF-8\n "
14
14
"Content-Transfer-Encoding : 8bit\n "
@@ -176,30 +176,44 @@ msgid ""
176
176
"an unknown set of names into the interpreter, possibly hiding some things "
177
177
"you have already defined."
178
178
msgstr ""
179
+ "Esto importa todos los nombres excepto los que inician con un guion bajo "
180
+ "(``_``). La mayoría de las veces los programadores de Python no usan esto ya "
181
+ "que introduce en el intérprete un conjunto de nombres desconocido, "
182
+ "posiblemente escondiendo algunas de las definiciones previas."
179
183
180
184
#: ../Doc/tutorial/modules.rst:111
181
185
msgid ""
182
186
"Note that in general the practice of importing ``*`` from a module or "
183
187
"package is frowned upon, since it often causes poorly readable code. "
184
188
"However, it is okay to use it to save typing in interactive sessions."
185
189
msgstr ""
190
+ "Nota que en general la práctica de importar ``*`` de un módulo o paquete "
191
+ "está muy mal vista, ya que frecuentemente genera código poco legible. Sin "
192
+ "embargo, está bien usarlo para ahorrar tecleo en sesiones interactivas."
186
193
187
194
#: ../Doc/tutorial/modules.rst:115
188
195
msgid ""
189
196
"If the module name is followed by :keyword:`!as`, then the name following :"
190
197
"keyword:`!as` is bound directly to the imported module."
191
198
msgstr ""
199
+ "Si el nombre del módulo es seguido por :keyword:`!as`, el nombre siguiendo :"
200
+ "keyword:`!as` queda ligado directamente al módulo importado."
192
201
193
202
#: ../Doc/tutorial/modules.rst:124
194
203
msgid ""
195
204
"This is effectively importing the module in the same way that ``import "
196
205
"fibo`` will do, with the only difference of it being available as ``fib``."
197
206
msgstr ""
207
+ "Esto es básicamente importar el módulo de la misma forma que se haría con "
208
+ "``import fibo``, con la única diferencia en que se encuentra accesible como "
209
+ "``fib``."
198
210
199
211
#: ../Doc/tutorial/modules.rst:127
200
212
msgid ""
201
213
"It can also be used when utilising :keyword:`from` with similar effects::"
202
214
msgstr ""
215
+ "También se puede utilizar cuando se utiliza :keyword:`from` con efectos "
216
+ "similares::"
203
217
204
218
#: ../Doc/tutorial/modules.rst:136
205
219
msgid ""
0 commit comments