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

Skip to content

Commit d821b62

Browse files
committed
Raw String Notation
1 parent 4fbb44f commit d821b62

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

library/re.po

Lines changed: 10 additions & 2 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-23 23:44+0200\n"
14+
"PO-Revision-Date: 2020-05-23 23:48+0200\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -2234,7 +2234,7 @@ msgstr ""
22342234

22352235
#: ../Doc/library/re.rst:1586
22362236
msgid "Raw String Notation"
2237-
msgstr ""
2237+
msgstr "Notación de cadena raw"
22382238

22392239
#: ../Doc/library/re.rst:1588
22402240
msgid ""
@@ -2243,6 +2243,10 @@ msgid ""
22432243
"prefixed with another one to escape it. For example, the two following "
22442244
"lines of code are functionally identical::"
22452245
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::"
22462250

22472251
#: ../Doc/library/re.rst:1598
22482252
msgid ""
@@ -2251,6 +2255,10 @@ msgid ""
22512255
"Without raw string notation, one must use ``\"\\\\\\\\\"``, making the "
22522256
"following lines of code functionally identical::"
22532257
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::"
22542262

22552263
#: ../Doc/library/re.rst:1610
22562264
msgid "Writing a Tokenizer"

0 commit comments

Comments
 (0)