Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 49fb49c

Browse files
committed
match.pos.end.lastindex.lastgroup
1 parent 4a52083 commit 49fb49c

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

library/re.po

Lines changed: 14 additions & 1 deletion
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: 2020-05-24 23:17+0200\n"
14+
"PO-Revision-Date: 2020-05-24 23:24+0200\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -2126,13 +2126,19 @@ msgid ""
21262126
"`~Pattern.match` method of a :ref:`regex object <re-objects>`. This is the "
21272127
"index into the string at which the RE engine started looking for a match."
21282128
msgstr ""
2129+
"El valor de *pos* que fue pasado al método :meth:`~Pattern.search` o :meth:"
2130+
"`~Pattern.match` de un :ref:`regex object <re-objects>`. Este es el índice "
2131+
"de la cadena en la que el motor RE comenzó a buscar una coincidencia."
21292132

21302133
#: ../Doc/library/re.rst:1299
21312134
msgid ""
21322135
"The value of *endpos* which was passed to the :meth:`~Pattern.search` or :"
21332136
"meth:`~Pattern.match` method of a :ref:`regex object <re-objects>`. This is "
21342137
"the index into the string beyond which the RE engine will not go."
21352138
msgstr ""
2139+
"El valor de *endpos* que se pasó al método :meth:`~Pattern.search` o :meth:"
2140+
"`~Pattern.match` de un :ref:`regex object <re-objects>`. Este es el índice "
2141+
"de la cadena más allá de la cual el motor RE no irá."
21362142

21372143
#: ../Doc/library/re.rst:1306
21382144
msgid ""
@@ -2142,12 +2148,19 @@ msgid ""
21422148
"``'ab'``, while the expression ``(a)(b)`` will have ``lastindex == 2``, if "
21432149
"applied to the same string."
21442150
msgstr ""
2151+
"El índice entero del último grupo de captura coincidente, o``None`` si no "
2152+
"hay ningún grupo coincidente. Por ejemplo, las expresiones ``(a)b``, ``((a)"
2153+
"(b))`` y ``((ab))`` tendrán ``lastindex == 1`` si se aplican a la cadena "
2154+
"``'ab'``, mientras que la expresión ``(a)(b)`` tendrá ``lastindex == 2``, si "
2155+
"se aplica a la misma cadena."
21452156

21462157
#: ../Doc/library/re.rst:1315
21472158
msgid ""
21482159
"The name of the last matched capturing group, or ``None`` if the group "
21492160
"didn't have a name, or if no group was matched at all."
21502161
msgstr ""
2162+
"El nombre del último grupo capturador coincidente, o``None`` si el grupo no "
2163+
"tenía nombre, o si no había ningún grupo coincidente."
21512164

21522165
#: ../Doc/library/re.rst:1321
21532166
msgid ""

0 commit comments

Comments
 (0)