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

Skip to content

Commit 2e341ca

Browse files
committed
match.__getitem__
1 parent 028efd3 commit 2e341ca

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

library/re.po

Lines changed: 11 additions & 3 deletions
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:00+0200\n"
14+
"PO-Revision-Date: 2020-05-24 23:03+0200\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -2013,24 +2013,32 @@ msgid ""
20132013
"string argument is not used as a group name in the pattern, an :exc:"
20142014
"`IndexError` exception is raised."
20152015
msgstr ""
2016+
"Si la expresión regular usa la sintaxis ``(?P<name>...)``, los argumentos "
2017+
"*groupN* también pueden ser cadenas que identifican a los grupos por su "
2018+
"nombre de grupo. Si un argumento de cadena no se usa como nombre de grupo "
2019+
"en el patrón, se produce una excepción :exc:`IndexError`."
20162020

20172021
#: ../Doc/library/re.rst:1187
20182022
msgid "A moderately complicated example::"
2019-
msgstr ""
2023+
msgstr "Un ejemplo moderadamente complicado::"
20202024

20212025
#: ../Doc/library/re.rst:1195
20222026
msgid "Named groups can also be referred to by their index::"
2023-
msgstr ""
2027+
msgstr "Los grupos nombrados también pueden ser referidos por su índice::"
20242028

20252029
#: ../Doc/library/re.rst:1202
20262030
msgid "If a group matches multiple times, only the last match is accessible::"
20272031
msgstr ""
2032+
"Si un grupo coincide varias veces, sólo se puede acceder a la última "
2033+
"coincidencia::"
20282034

20292035
#: ../Doc/library/re.rst:1211
20302036
msgid ""
20312037
"This is identical to ``m.group(g)``. This allows easier access to an "
20322038
"individual group from a match::"
20332039
msgstr ""
2040+
"Esto es idéntico a ``m.group(g)``. Esto permite un acceso más fácil a un "
2041+
"grupo individual de una coincidencia::"
20342042

20352043
#: ../Doc/library/re.rst:1227
20362044
msgid ""

0 commit comments

Comments
 (0)