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

Traducido archivo library/http.client.po#533

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
Merged
Changes from1 commit
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
PrevPrevious commit
Traducido archivo library/http.client.po
  • Loading branch information
mayuti committedJul 7, 2020
commitcb4c0973ead347d2657b0ecbf7e541349a5d8d03
26 changes: 13 additions & 13 deletionslibrary/http.client.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
"PO-Revision-Date: 2020-07-06 21:08-0300\n"
"PO-Revision-Date: 2020-07-07 10:14-0300\n"
"Language-Team: python-doc-es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand DownExpand Up@@ -193,7 +193,7 @@ msgid ""
"Class whose instances are returned upon successful connection. Not "
"instantiated directly by user."
msgstr ""
"Clase cuyas instancias sedevuelven tras una conexión exitosa. No son "
"Clase cuyas instancias seretornan tras una conexión exitosa. No son "
"instancias realizadas directamente por el usuario."

#: ../Doc/library/http.client.rst:119
Expand DownExpand Up@@ -226,7 +226,7 @@ msgid ""
"msg` and :attr:`http.server.BaseHTTPRequestHandler.headers`). After "
"returning, the file pointer *fp* is ready to read the HTTP body."
msgstr ""
"Esta funcióndevuelve una instancia de :class:`http.client.HTTPMessage` que "
"Esta funciónretorna una instancia de :class:`http.client.HTTPMessage` que "
"contiene los campos de encabezado, pero no un *payload* (lo mismo que :attr:"
"`HTTPResponse.msg` y :attr:`http.server.BaseHTTPRequestHandler.headers` ) "
"Después de regresar, el puntero de archivo *fp* está listo para leer el "
Expand DownExpand Up@@ -376,8 +376,8 @@ msgstr ""
"tal cual. Si es un objeto :term:`file object`, se envía el contenido del "
"archivo; Este objeto de archivo debe soportar al menos el método ``read()``. "
"Si el objeto de archivo es una instancia de :clase:`io.TextIOBase`, los "
"datosdevueltos por el método ``read()`` se codificarán como ISO-8859-1, de "
"lo contrario, los datosdevueltos por ``read()`` se envía como está. Si "
"datosretornados por el método ``read()`` se codificarán como ISO-8859-1, de "
"lo contrario, los datosretornados por ``read()`` se envía como está. Si "
"*body* es un iterable, los elementos del iterable se envían tal cual hasta "
"que se agota el iterable."

Expand DownExpand Up@@ -459,7 +459,7 @@ msgid ""
"server. Returns an :class:`HTTPResponse` instance."
msgstr ""
"Debe llamarse después de enviar una solicitud para obtener la respuesta del "
"servidor.Devuelve una instancia de :class:`HTTPResponse`."
"servidor.Retorna una instancia de :class:`HTTPResponse`."

#: ../Doc/library/http.client.rst:316
msgid ""
Expand DownExpand Up@@ -673,15 +673,15 @@ msgstr ""
#: ../Doc/library/http.client.rst:453
msgid "Reads and returns the response body, or up to the next *amt* bytes."
msgstr ""
"Lee ydevuelve el cuerpo de respuesta, o hasta los siguientes bytes *amt*."
"Lee yretorna el cuerpo de respuesta, o hasta los siguientes bytes *amt*."

#: ../Doc/library/http.client.rst:457
msgid ""
"Reads up to the next len(b) bytes of the response body into the buffer *b*. "
"Returns the number of bytes read."
msgstr ""
"Lee hasta los siguientes bytes ``len(b)`` del cuerpo de respuesta en el "
"búfer *b*.Devuelve el número de bytes leídos."
"búfer *b*.Retorna el número de bytes leídos."

#: ../Doc/library/http.client.rst:464
msgid ""
Expand All@@ -690,19 +690,19 @@ msgid ""
"return all of the values joined by ', '. If 'default' is any iterable other "
"than a single string, its elements are similarly returned joined by commas."
msgstr ""
"Devuelve el valor del encabezado *name* o *default* si no hay un encabezado "
"Retorna el valor del encabezado *name* o *default* si no hay un encabezado "
"que coincida con *name*. Si hay más de un encabezado con el nombre *name*, "
"devuelva todos los valores unidos por ', '. Si es 'default' es cualquier "
"iterable que no sea una sola cadena de caracteres, sus elementos se "
"devuelven de manera similar unidos por comas."

#: ../Doc/library/http.client.rst:471
msgid "Return a list of (header, value) tuples."
msgstr "Devuelve una lista de tuplas (encabezado, valor)."
msgstr "Retorna una lista de tuplas (encabezado, valor)."

#: ../Doc/library/http.client.rst:475
msgid "Return the ``fileno`` of the underlying socket."
msgstr "Devuelve el ``fileno`` del socket implícito."
msgstr "Retorna el ``fileno`` del socket implícito."

#: ../Doc/library/http.client.rst:479
msgid ""
Expand DownExpand Up@@ -739,7 +739,7 @@ msgstr ""

#: ../Doc/library/http.client.rst:502
msgid "Is ``True`` if the stream is closed."
msgstr "Es ``True`` si la transmisión está cerrada."
msgstr "Es ``True`` si la transmisión está cerrada."

#: ../Doc/library/http.client.rst:505
msgid "Examples"
Expand All@@ -755,7 +755,7 @@ msgid ""
"``HEAD`` method never returns any data. ::"
msgstr ""
"Aquí hay una sesión de ejemplo que usa el método ``HEAD``. Tenga en cuenta "
"que el método ``HEAD`` nuncadevuelve ningún dato. ::"
"que el método ``HEAD`` nuncaretorna ningún dato. ::"

#: ../Doc/library/http.client.rst:547
msgid "Here is an example session that shows how to ``POST`` requests::"
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp