Skip to content

Commit 11905dc

Browse files
author
Adolfo Hristo David Roque Gámez
committed
doctest: traduce la seccion DocTest Objects
1 parent 760f567 commit 11905dc

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

library/doctest.po

+25-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
14-
"PO-Revision-Date: 2021-02-09 10:16-0500\n"
14+
"PO-Revision-Date: 2021-02-09 10:32-0500\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1906,26 +1906,33 @@ msgstr ""
19061906

19071907
#: ../Doc/library/doctest.rst:1185
19081908
msgid "DocTest Objects"
1909-
msgstr ""
1909+
msgstr "Objetos DocTest"
19101910

19111911
#: ../Doc/library/doctest.rst:1190
19121912
msgid ""
19131913
"A collection of doctest examples that should be run in a single namespace. "
19141914
"The constructor arguments are used to initialize the attributes of the same "
19151915
"names."
19161916
msgstr ""
1917+
"Una colección de ejemplos de doctest que deben ejecutarse en un sólo nombre "
1918+
"de espacios. Se usan los argumentos del constructor para inicializar los "
1919+
"atributos de los mismos nombres."
19171920

19181921
#: ../Doc/library/doctest.rst:1194
19191922
msgid ""
19201923
":class:`DocTest` defines the following attributes. They are initialized by "
19211924
"the constructor, and should not be modified directly."
19221925
msgstr ""
1926+
":class:`DocTest` define los siguientes atributos. Son inicializados por el "
1927+
"constructor, y no deben ser modificados directamente."
19231928

19241929
#: ../Doc/library/doctest.rst:1200
19251930
msgid ""
19261931
"A list of :class:`Example` objects encoding the individual interactive "
19271932
"Python examples that should be run by this test."
19281933
msgstr ""
1934+
"Una lista de objetos :class:`Example` codificando los ejemplos interactivos "
1935+
"de Python individuales que esta prueba debe ejecutar."
19291936

19301937
#: ../Doc/library/doctest.rst:1206
19311938
msgid ""
@@ -1934,32 +1941,48 @@ msgid ""
19341941
"the examples (such as binding new variables) will be reflected in :attr:"
19351942
"`globs` after the test is run."
19361943
msgstr ""
1944+
"El nombre de espacios (alias *globals*) en que los ejemplos se deben "
1945+
"ejecutar. Este es un diccionario que mapea nombres a valores. Cualquier "
1946+
"cambio al nombre de espacios hecho por los ejemplos (tal como juntar nuevas "
1947+
"variables) se reflejará en :attr:`globs`después de que se ejecute la prueba."
19371948

19381949
#: ../Doc/library/doctest.rst:1214
19391950
msgid ""
19401951
"A string name identifying the :class:`DocTest`. Typically, this is the name "
19411952
"of the object or file that the test was extracted from."
19421953
msgstr ""
1954+
"Un nombre de cadena de caracteres que identifica el :class:`DocTest`. "
1955+
"Normalmente, este es el nombre del objeto o archivo del que se extrajo la "
1956+
"prueba."
19431957

19441958
#: ../Doc/library/doctest.rst:1220
19451959
msgid ""
19461960
"The name of the file that this :class:`DocTest` was extracted from; or "
19471961
"``None`` if the filename is unknown, or if the :class:`DocTest` was not "
19481962
"extracted from a file."
19491963
msgstr ""
1964+
"El nombre del archivo del que se extrajo este :class:`DocTest`; o ``None`` "
1965+
"si el nombre del archivo se desconoce, o si :class:`DocTest` no se extrajo "
1966+
"de un archivo."
19501967

19511968
#: ../Doc/library/doctest.rst:1227
19521969
msgid ""
19531970
"The line number within :attr:`filename` where this :class:`DocTest` begins, "
19541971
"or ``None`` if the line number is unavailable. This line number is zero-"
19551972
"based with respect to the beginning of the file."
19561973
msgstr ""
1974+
"El número de línea dentro de :attr:`filename` donde este :class:`DocTest` "
1975+
"comienza, o ``None`` si el número de línea no está disponible. Este número "
1976+
"de línea es comienza en 0 con respecto al comienzo del archivo."
19571977

19581978
#: ../Doc/library/doctest.rst:1234
19591979
msgid ""
19601980
"The string that the test was extracted from, or ``None`` if the string is "
19611981
"unavailable, or if the test was not extracted from a string."
19621982
msgstr ""
1983+
"La cadena de caracteres del que se extrajo la cadena, o ``None`` si la "
1984+
"cadena no está disponible, o si la prueba no se extrajo de una cadena de "
1985+
"caracteres."
19631986

19641987
#: ../Doc/library/doctest.rst:1241
19651988
msgid "Example Objects"

0 commit comments

Comments
 (0)