@@ -11,7 +11,7 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2020-05-05 12:54+0200\n "
14
- "PO-Revision-Date : 2020-05-23 23:44 +0200\n "
14
+ "PO-Revision-Date : 2020-05-23 23:48 +0200\n "
15
15
"Language-Team : python-doc-es\n "
16
16
"MIME-Version : 1.0\n "
17
17
"Content-Type : text/plain; charset=UTF-8\n "
@@ -2234,7 +2234,7 @@ msgstr ""
2234
2234
2235
2235
#: ../Doc/library/re.rst:1586
2236
2236
msgid "Raw String Notation"
2237
- msgstr ""
2237
+ msgstr "Notación de cadena raw "
2238
2238
2239
2239
#: ../Doc/library/re.rst:1588
2240
2240
msgid ""
@@ -2243,6 +2243,10 @@ msgid ""
2243
2243
"prefixed with another one to escape it. For example, the two following "
2244
2244
"lines of code are functionally identical::"
2245
2245
msgstr ""
2246
+ "La notación de cadena raw (``r \" text\" ``) mantiene limpias las expresiones "
2247
+ "regulares. Sin ella, cada barra invertida (``'\\ '``) en una expresión "
2248
+ "regular tendría que ser precedida por otra para escaparla. Por ejemplo, las "
2249
+ "dos siguientes líneas de código son funcionalmente idénticas::"
2246
2250
2247
2251
#: ../Doc/library/re.rst:1598
2248
2252
msgid ""
@@ -2251,6 +2255,10 @@ msgid ""
2251
2255
"Without raw string notation, one must use ``\"\\\\\\\\\" ``, making the "
2252
2256
"following lines of code functionally identical::"
2253
2257
msgstr ""
2258
+ "Cuando uno quiere igualar una barra inversa literal, debe escaparse en la "
2259
+ "expresión regular. Con la notación de cadena raw, esto significa ``r\"\\\\ "
2260
+ "\" ``. Sin la notación de cadena, uno debe usar ``\"\\\\\\\\\" ``, haciendo "
2261
+ "que las siguientes líneas de código sean funcionalmente idénticas::"
2254
2262
2255
2263
#: ../Doc/library/re.rst:1610
2256
2264
msgid "Writing a Tokenizer"
0 commit comments