Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
python-docs-es/c-api/marshal.po at pythonversion-sphinx-variable · python/python-docs-es · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
python-docs-es
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
412
Star
368
Code
Issues
423
Pull requests
17
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Files
Expand file tree
pythonversion-sphinx-variable
Breadcrumbs
python-docs-es
/
c-api
/
marshal.po
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
172 lines (156 loc) · 7.2 KB
pythonversion-sphinx-variable
Breadcrumbs
python-docs-es
/
c-api
/
marshal.po
Copy path
Top
File metadata and controls
Code
Blame
172 lines (156 loc) · 7.2 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#
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/python/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
:
2022-10-25 19:47+0200\n
"
"
PO-Revision-Date
:
2021-08-01 20:28+0200\n
"
"
Last-Translator
:
Cristián Maureira-Fredes <cmaureirafredes@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-Transfer-Encoding
:
8bit\n
"
"
Generated-By
:
Babel 2.10.3\n
"
#:
../Doc/c-api/marshal.rst:6
msgid
"Data marshalling support"
msgstr
"Soporte de empaquetado (*marshalling*) de datos"
#:
../Doc/c-api/marshal.rst:8
msgid
""
"These routines allow C code to work with serialized objects using the same "
"data format as the :mod:`marshal` module. There are functions to write data "
"into the serialization format, and additional functions that can be used to "
"read the data back. Files used to store marshalled data must be opened in "
"binary mode."
msgstr
""
"Estas rutinas permiten que el código C funcione con objetos serializados "
"utilizando el mismo formato de datos que el módulo :mod:`marshal`. Hay "
"funciones para escribir datos en el formato de serialización y funciones "
"adicionales que se pueden usar para volver a leer los datos. Los archivos "
"utilizados para almacenar datos ordenados deben abrirse en modo binario."
#:
../Doc/c-api/marshal.rst:14
msgid
"Numeric values are stored with the least significant byte first."
msgstr
""
"Los valores numéricos se almacenan con el byte menos significativo primero."
#:
../Doc/c-api/marshal.rst:16
msgid
""
"The module supports two versions of the data format: version 0 is the "
"historical version, version 1 shares interned strings in the file, and upon "
"unmarshalling. Version 2 uses a binary format for floating point numbers. "
"``Py_MARSHAL_VERSION`` indicates the current file format (currently 2)."
msgstr
""
"El módulo admite dos versiones del formato de datos: la versión 0 es la "
"versión histórica, la versión 1 comparte cadenas de caracteres internas en "
"el archivo y al desempaquetar (*unmarshalling*). La versión 2 usa un formato "
"binario para números de punto flotante. ``Py_MARSHAL_VERSION`` indica el "
"formato de archivo actual (actualmente 2)."
#:
../Doc/c-api/marshal.rst:24
msgid
""
"Marshal a :c:expr:`long` integer, *value*, to *file*. This will only write "
"the least-significant 32 bits of *value*; regardless of the size of the "
"native :c:expr:`long` type. *version* indicates the file format."
msgstr
""
#:
../Doc/c-api/marshal.rst:31
msgid
""
"Marshal a Python object, *value*, to *file*. *version* indicates the file "
"format."
msgstr
""
"Empaqueta (*marshal*) un objeto Python, *value*, a un archivo *file*. "
"*version* indica el formato del archivo."
#:
../Doc/c-api/marshal.rst:37
msgid
""
"Return a bytes object containing the marshalled representation of *value*. "
"*version* indicates the file format."
msgstr
""
"Retorna un objeto de bytes que contiene la representación empaquetada "
"(*marshalled*) de *value*. *version* indica el formato del archivo."
#:
../Doc/c-api/marshal.rst:41
msgid
"The following functions allow marshalled values to be read back in."
msgstr
""
"Las siguientes funciones permiten volver a leer los valores empaquetados "
"(*marshalled*)."
#:
../Doc/c-api/marshal.rst:46
#,
fuzzy
msgid
""
"Return a C :c:expr:`long` from the data stream in a :c:expr:`FILE*` opened "
"for reading. Only a 32-bit value can be read in using this function, "
"regardless of the native size of :c:expr:`long`."
msgstr
""
"Retorna un C :c:type:`long` del flujo de datos en un :c:type:`FILE*` abierto "
"para lectura. Solo se puede leer un valor de 32 bits con esta función, "
"independientemente del tamaño nativo de :c:type:`long`."
#:
../Doc/c-api/marshal.rst:50
../Doc/c-api/marshal.rst:60
msgid
""
"On error, sets the appropriate exception (:exc:`EOFError`) and returns "
"``-1``."
msgstr
""
"En caso de error, establece la excepción apropiada (:exc:`EOFError`) y "
"retorna ``-1``."
#:
../Doc/c-api/marshal.rst:56
#,
fuzzy
msgid
""
"Return a C :c:expr:`short` from the data stream in a :c:expr:`FILE*` opened "
"for reading. Only a 16-bit value can be read in using this function, "
"regardless of the native size of :c:expr:`short`."
msgstr
""
"Retorna un C :c:type:`short` desde el flujo de datos en un :c:type:`FILE*` "
"abierto para lectura. Solo se puede leer un valor de 16 bits con esta "
"función, independientemente del tamaño nativo de :c:type:`short`."
#:
../Doc/c-api/marshal.rst:66
#,
fuzzy
msgid
""
"Return a Python object from the data stream in a :c:expr:`FILE*` opened for "
"reading."
msgstr
""
"Retorna un objeto Python del flujo de datos en un :c:type:`FILE*` abierto "
"para lectura."
#:
../Doc/c-api/marshal.rst:69
../Doc/c-api/marshal.rst:83
#:
../Doc/c-api/marshal.rst:92
msgid
""
"On error, sets the appropriate exception (:exc:`EOFError`, :exc:`ValueError` "
"or :exc:`TypeError`) and returns ``NULL``."
msgstr
""
"En caso de error, establece la excepción apropiada (:exc:`EOFError`, :exc:"
"`ValueError` o :exc:`TypeError`) y retorna ``NULL``."
#:
../Doc/c-api/marshal.rst:75
#,
fuzzy
msgid
""
"Return a Python object from the data stream in a :c:expr:`FILE*` opened for "
"reading. Unlike :c:func:`PyMarshal_ReadObjectFromFile`, this function "
"assumes that no further objects will be read from the file, allowing it to "
"aggressively load file data into memory so that the de-serialization can "
"operate from data in memory rather than reading a byte at a time from the "
"file. Only use these variant if you are certain that you won't be reading "
"anything else from the file."
msgstr
""
"Retorna un objeto Python del flujo de datos en un :c:type:`FILE*` abierto "
"para lectura. A diferencia de :c:func:`PyMarshal_ReadObjectFromFile`, esta "
"función asume que no se leerán más objetos del archivo, lo que le permite "
"cargar agresivamente los datos del archivo en la memoria para que la "
"deserialización pueda operar desde los datos en la memoria en lugar de leer "
"un byte a la vez desde el archivo. Solo use esta variante si está seguro de "
"que no leerá nada más del archivo."
#:
../Doc/c-api/marshal.rst:89
msgid
""
"Return a Python object from the data stream in a byte buffer containing "
"*len* bytes pointed to by *data*."
msgstr
""
"Retorna un objeto Python del flujo de datos en un búfer de bytes que "
"contiene *len* bytes a los que apunta *data*."
#~
msgid ""
#~
"Marshal a :c:type:`long` integer, *value*, to *file*. This will only "
#~
"write the least-significant 32 bits of *value*; regardless of the size of "
#~
"the native :c:type:`long` type. *version* indicates the file format."
#~
msgstr ""
#~
"Empaqueta (*marshal*) un entero :c:type:`long`, *value*, a un archivo "
#~
"*file*. Esto solo escribirá los 32 bits menos significativos de *value*; "
#~
"independientemente del tamaño del tipo nativo :c:type:`long`. *version* "
#~
"indica el formato del archivo."
You can’t perform that action at this time.