@@ -9,7 +9,7 @@ msgstr ""
9
9
"Project-Id-Version : Python 3.8\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
11
"POT-Creation-Date : 2019-05-06 11:59-0400\n "
12
- "PO-Revision-Date : 2021-08-23 08:58 +0100\n "
12
+ "PO-Revision-Date : 2021-08-24 09:08 +0100\n "
13
13
"Language-Team : python-doc-es\n "
14
14
"MIME-Version : 1.0\n "
15
15
"Content-Type : text/plain; charset=UTF-8\n "
@@ -507,12 +507,10 @@ msgstr ""
507
507
"para una descripción de los nuevos ganchos de importación."
508
508
509
509
#: ../Doc/whatsnew/2.3.rst:338
510
- #, fuzzy
511
510
msgid "PEP 277: Unicode file name support for Windows NT"
512
511
msgstr "PEP 277: Soporte de nombres de archivo Unicode para Windows NT"
513
512
514
513
#: ../Doc/whatsnew/2.3.rst:340
515
- #, fuzzy
516
514
msgid ""
517
515
"On Windows NT, 2000, and XP, the system stores file names as Unicode "
518
516
"strings. Traditionally, Python has represented file names as byte strings, "
@@ -524,7 +522,6 @@ msgstr ""
524
522
"nombres de archivo sean inaccesibles."
525
523
526
524
#: ../Doc/whatsnew/2.3.rst:344
527
- #, fuzzy
528
525
msgid ""
529
526
"Python now allows using arbitrary Unicode strings (within the limitations of "
530
527
"the file system) for all functions that expect file names, most notably the :"
@@ -540,7 +537,6 @@ msgstr ""
540
537
"directorio actual como una cadena Unicode."
541
538
542
539
#: ../Doc/whatsnew/2.3.rst:350
543
- #, fuzzy
544
540
msgid ""
545
541
"Byte strings still work as file names, and on Windows Python will "
546
542
"transparently convert them to Unicode using the ``mbcs`` encoding."
@@ -550,7 +546,6 @@ msgstr ""
550
546
"codificación ``mbcs``."
551
547
552
548
#: ../Doc/whatsnew/2.3.rst:353
553
- #, fuzzy
554
549
msgid ""
555
550
"Other systems also allow Unicode strings as file names but convert them to "
556
551
"byte strings before passing them to the system, which can cause a :exc:"
@@ -565,18 +560,15 @@ msgstr ""
565
560
"attr:`os.path.supports_unicode_filenames`, un valor booleano."
566
561
567
562
#: ../Doc/whatsnew/2.3.rst:359
568
- #, fuzzy
569
563
msgid "Under MacOS, :func:`os.listdir` may now return Unicode filenames."
570
564
msgstr ""
571
565
"En MacOS, :func:`os.listdir` ahora puede retornar nombres de archivo Unicode."
572
566
573
567
#: ../Doc/whatsnew/2.3.rst:365
574
- #, fuzzy
575
568
msgid ":pep:`277` - Unicode file name support for Windows NT"
576
569
msgstr ":pep:`277` - Soporte de nombres de archivo Unicode para Windows NT"
577
570
578
571
#: ../Doc/whatsnew/2.3.rst:365
579
- #, fuzzy
580
572
msgid ""
581
573
"Written by Neil Hodgson; implemented by Neil Hodgson, Martin von Löwis, and "
582
574
"Mark Hammond."
@@ -585,12 +577,10 @@ msgstr ""
585
577
"Mark Hammond."
586
578
587
579
#: ../Doc/whatsnew/2.3.rst:375
588
- #, fuzzy
589
580
msgid "PEP 278: Universal Newline Support"
590
581
msgstr "PEP 278: Soporte universal de nuevas líneas"
591
582
592
583
#: ../Doc/whatsnew/2.3.rst:377
593
- #, fuzzy
594
584
msgid ""
595
585
"The three major operating systems used today are Microsoft Windows, Apple's "
596
586
"Macintosh OS, and the various Unix derivatives. A minor irritation of cross-"
@@ -609,7 +599,6 @@ msgstr ""
609
599
"carro más una nueva línea."
610
600
611
601
#: ../Doc/whatsnew/2.3.rst:384
612
- #, fuzzy
613
602
msgid ""
614
603
"Python's file objects can now support end of line conventions other than the "
615
604
"one followed by the platform on which Python is running. Opening a file with "
@@ -627,7 +616,6 @@ msgstr ""
627
616
"`readline`."
628
617
629
618
#: ../Doc/whatsnew/2.3.rst:391
630
- #, fuzzy
631
619
msgid ""
632
620
"Universal newline support is also used when importing modules and when "
633
621
"executing a file with the :func:`execfile` function. This means that Python "
@@ -640,7 +628,6 @@ msgstr ""
640
628
"operativos sin necesidad de convertir los finales de línea."
641
629
642
630
#: ../Doc/whatsnew/2.3.rst:396
643
- #, fuzzy
644
631
msgid ""
645
632
"This feature can be disabled when compiling Python by specifying the :option:"
646
633
"`!--without-universal-newlines` switch when running Python's :program:"
@@ -651,52 +638,44 @@ msgstr ""
651
638
"`configure` de Python."
652
639
653
640
#: ../Doc/whatsnew/2.3.rst:403
654
- #, fuzzy
655
641
msgid ":pep:`278` - Universal Newline Support"
656
642
msgstr ":pep:`278` - Soporte universal de nuevas líneas"
657
643
658
644
#: ../Doc/whatsnew/2.3.rst:404
659
- #, fuzzy
660
645
msgid "Written and implemented by Jack Jansen."
661
646
msgstr "Escrito y ejecutado por Jack Jansen."
662
647
663
648
#: ../Doc/whatsnew/2.3.rst:412
664
- #, fuzzy
665
649
msgid "PEP 279: enumerate()"
666
- msgstr "PEP 279: enumerar ()"
650
+ msgstr "PEP 279: enumerate ()"
667
651
668
652
#: ../Doc/whatsnew/2.3.rst:414
669
- #, fuzzy
670
653
msgid ""
671
654
"A new built-in function, :func:`enumerate`, will make certain loops a bit "
672
655
"clearer. ``enumerate(thing)``, where *thing* is either an iterator or a "
673
656
"sequence, returns an iterator that will return ``(0, thing[0])``, ``(1, "
674
657
"thing[1])``, ``(2, thing[2])``, and so forth."
675
658
msgstr ""
676
659
"Una nueva función incorporada, :func:`enumerate`, hará que ciertos bucles "
677
- "sean un poco más claros. ``enumerar (cosa)``, donde *cosa* es un iterador o "
660
+ "sean un poco más claros. ``enumerate (cosa)``, donde *cosa* es un iterador o "
678
661
"una secuencia, retorna un iterador que retornará ``(0, cosa[0])``, ``(1, "
679
662
"cosa[1])``, ``(2, cosa[2])``, y así sucesivamente."
680
663
681
664
#: ../Doc/whatsnew/2.3.rst:419
682
- #, fuzzy
683
665
msgid "A common idiom to change every element of a list looks like this::"
684
666
msgstr ""
685
667
"Un modismo común para cambiar cada elemento de una lista tiene el siguiente "
686
668
"aspecto::"
687
669
688
670
#: ../Doc/whatsnew/2.3.rst:426
689
- #, fuzzy
690
671
msgid "This can be rewritten using :func:`enumerate` as::"
691
672
msgstr "Esto se puede reescribir usando :func:`enumerate` como::"
692
673
693
674
#: ../Doc/whatsnew/2.3.rst:435
694
- #, fuzzy
695
675
msgid ":pep:`279` - The enumerate() built-in function"
696
676
msgstr ":pep:`279` - La función incorporada enumerate()"
697
677
698
678
#: ../Doc/whatsnew/2.3.rst:436
699
- #, fuzzy
700
679
msgid "Written and implemented by Raymond D. Hettinger."
701
680
msgstr "Escrito y ejecutado por Raymond D. Hettinger."
702
681
0 commit comments