Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Updates from 3.8.3#289

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
gilgamezh merged 4 commits into3.8from3.8.3
May 21, 2020
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletionsc-api/weakref.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,18 +10,17 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
"POT-Creation-Date: 2020-05-17 14:49+0200\n"
"PO-Revision-Date: 2020-05-07 09:39+0200\n"
"Last-Translator: \n"
"Language: es\n"
"Language-Team: python-doc-es (https://mail.python.org/mailman3/lists/docs-es."
"python.org)\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.8.0\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Last-Translator: \n"
"Language: es\n"
"X-Generator: Poedit 2.3\n"

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

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

#: ../Doc/c-api/weakref.rst:43
#, fuzzy
msgid ""
"Return a weak reference proxy object for the object *ob*. This will always "
"return a new reference, but is not guaranteed to create a new object; an "
"existing proxy object may be returned. The second parameter, *callback*, "
"can be a callable object that receivesnotificación when *ob* is garbage "
"can be a callable object that receivesnotification when *ob* is garbage "
"collected; it should accept a single parameter, which will be the weak "
"reference object itself. *callback* may also be ``None`` or ``NULL``. If "
"*ob* is not a weakly-referencable object, or if *callback* is not callable, "
Expand Down
2 changes: 1 addition & 1 deletioncpython
Open in desktop
22 changes: 13 additions & 9 deletionsfaq/library.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
# Copyright (C) 2001-2020, Python Software Foundation
# This file is distributed under the same license as the Python package.
# Maintained by the python-doc-es workteam.
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
# docs-es@python.org /
# https://mail.python.org/mailman3/lists/docs-es.python.org/
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
# get the list of volunteers
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date:2019-05-06 11:59-0400\n"
"POT-Creation-Date:2020-05-17 14:49+0200\n"
"PO-Revision-Date: 2020-05-10 21:32+0100\n"
"Last-Translator: Sergio Delgado Quintero <sdelquin@gmail.com>\n"
"Language: es\n"
"Language-Team: python-doc-es\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Last-Translator: Sergio Delgado Quintero <sdelquin@gmail.com>\n"
"Language: es\n"
"X-Generator: Poedit 2.3\n"
"Generated-By: Babel 2.8.0\n"

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

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

#: ../Doc/faq/library.rst:492
#, fuzzy
msgid ""
"The :mod:`shutil` module contains a :func:`~shutil.copyfile` function. Note "
"that on MacOS 9 it doesn't copy the resource fork and*Finder* info."
"that on MacOS 9 it doesn't copy the resource fork and Finder info."
msgstr ""
"El módulo :mod:`shutil` contiene una función :func:`~shutil.copyfile`. "
"Nótese que en MacOS 9 no copia el *fork* del recurso ni la información de "
Expand Down
22 changes: 0 additions & 22 deletionswhatsnew/changelog.po
View file
Open in desktop

This file was deleted.


[8]ページ先頭

©2009-2025 Movatter.jp