Skip to content

Commit 8b57601

Browse files
authored
Merge pull request #289 from PyCampES/3.8.3
Updates from 3.8.3
2 parents 6b50c94 + 6bfa91b commit 8b57601

File tree

4 files changed

+23
-40
lines changed

4 files changed

+23
-40
lines changed

c-api/weakref.po

+9-8
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,17 @@ msgid ""
1010
msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
13-
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
13+
"POT-Creation-Date: 2020-05-17 14:49+0200\n"
1414
"PO-Revision-Date: 2020-05-07 09:39+0200\n"
15+
"Last-Translator: \n"
16+
"Language: es\n"
1517
"Language-Team: python-doc-es (https://mail.python.org/mailman3/lists/docs-es."
1618
"python.org)\n"
19+
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
1720
"MIME-Version: 1.0\n"
18-
"Content-Type: text/plain; charset=UTF-8\n"
21+
"Content-Type: text/plain; charset=utf-8\n"
1922
"Content-Transfer-Encoding: 8bit\n"
2023
"Generated-By: Babel 2.8.0\n"
21-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
22-
"Last-Translator: \n"
23-
"Language: es\n"
24-
"X-Generator: Poedit 2.3\n"
2524

2625
#: ../Doc/c-api/weakref.rst:6
2726
msgid "Weak Reference Objects"
@@ -52,11 +51,12 @@ msgid "Return true if *ob* is a proxy object."
5251
msgstr "Retorna verdad (true) si *ob* es un objeto proxy."
5352

5453
#: ../Doc/c-api/weakref.rst:31
54+
#, fuzzy
5555
msgid ""
5656
"Return a weak reference object for the object *ob*. This will always return "
5757
"a new reference, but is not guaranteed to create a new object; an existing "
5858
"reference object may be returned. The second parameter, *callback*, can be "
59-
"a callable object that receives notificación when *ob* is garbage collected; "
59+
"a callable object that receives notification when *ob* is garbage collected; "
6060
"it should accept a single parameter, which will be the weak reference object "
6161
"itself. *callback* may also be ``None`` or ``NULL``. If *ob* is not a "
6262
"weakly-referencable object, or if *callback* is not callable, ``None``, or "
@@ -73,11 +73,12 @@ msgstr ""
7373
"``NULL``, esto retornará ``NULL`` y causará un :exc:`TypeError`."
7474

7575
#: ../Doc/c-api/weakref.rst:43
76+
#, fuzzy
7677
msgid ""
7778
"Return a weak reference proxy object for the object *ob*. This will always "
7879
"return a new reference, but is not guaranteed to create a new object; an "
7980
"existing proxy object may be returned. The second parameter, *callback*, "
80-
"can be a callable object that receives notificación when *ob* is garbage "
81+
"can be a callable object that receives notification when *ob* is garbage "
8182
"collected; it should accept a single parameter, which will be the weak "
8283
"reference object itself. *callback* may also be ``None`` or ``NULL``. If "
8384
"*ob* is not a weakly-referencable object, or if *callback* is not callable, "

faq/library.po

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
# Copyright (C) 2001-2020, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
33
# Maintained by the python-doc-es workteam.
4-
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
5-
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
4+
# docs-es@python.org /
5+
# https://mail.python.org/mailman3/lists/docs-es.python.org/
6+
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
7+
# get the list of volunteers
68
#
79
msgid ""
810
msgstr ""
911
"Project-Id-Version: Python 3.8\n"
1012
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2019-05-06 11:59-0400\n"
13+
"POT-Creation-Date: 2020-05-17 14:49+0200\n"
1214
"PO-Revision-Date: 2020-05-10 21:32+0100\n"
15+
"Last-Translator: Sergio Delgado Quintero <sdelquin@gmail.com>\n"
16+
"Language: es\n"
1317
"Language-Team: python-doc-es\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
1419
"MIME-Version: 1.0\n"
15-
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Type: text/plain; charset=utf-8\n"
1621
"Content-Transfer-Encoding: 8bit\n"
17-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
18-
"Last-Translator: Sergio Delgado Quintero <sdelquin@gmail.com>\n"
19-
"Language: es\n"
20-
"X-Generator: Poedit 2.3\n"
22+
"Generated-By: Babel 2.8.0\n"
2123

2224
#: ../Doc/faq/library.rst:5
2325
msgid "Library and Extension FAQ"
@@ -567,6 +569,7 @@ msgstr ""
567569
"sólo puede correr mientras el GIL esté activado."
568570

569571
#: ../Doc/faq/library.rst:421
572+
#, python-format
570573
msgid ""
571574
"Back in the days of Python 1.5, Greg Stein actually implemented a "
572575
"comprehensive patch set (the \"free threading\" patches) that removed the "
@@ -725,9 +728,10 @@ msgid "How do I copy a file?"
725728
msgstr "¿Cómo copio un fichero?"
726729

727730
#: ../Doc/faq/library.rst:492
731+
#, fuzzy
728732
msgid ""
729733
"The :mod:`shutil` module contains a :func:`~shutil.copyfile` function. Note "
730-
"that on MacOS 9 it doesn't copy the resource fork and *Finder* info."
734+
"that on MacOS 9 it doesn't copy the resource fork and Finder info."
731735
msgstr ""
732736
"El módulo :mod:`shutil` contiene una función :func:`~shutil.copyfile`. "
733737
"Nótese que en MacOS 9 no copia el *fork* del recurso ni la información de "

whatsnew/changelog.po

-22
This file was deleted.

0 commit comments

Comments
 (0)