# 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-10-30 21:22-0300\n" "Last-Translator: \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/apiabiversion.rst:7 msgid "API and ABI Versioning" msgstr "Versiones de API y ABI" #: ../Doc/c-api/apiabiversion.rst:9 msgid "" "CPython exposes its version number in the following macros. Note that these " "correspond to the version code is **built** with, not necessarily the " "version used at **run time**." msgstr "" "CPython expone su número de versión en las siguientes macros. Tenga en " "cuenta que estos corresponden a la versión con la que se **construye** el " "código, no necesariamente la versión utilizada en **tiempo de ejecución**." #: ../Doc/c-api/apiabiversion.rst:13 msgid "" "See :ref:`stable` for a discussion of API and ABI stability across versions." msgstr "" "Consulte :ref:`stable` para obtener una discusión sobre la estabilidad de " "API y ABI en todas las versiones." #: ../Doc/c-api/apiabiversion.rst:17 msgid "The ``3`` in ``3.4.1a2``." msgstr "El ``3`` en ``3.4.1a2``." #: ../Doc/c-api/apiabiversion.rst:21 msgid "The ``4`` in ``3.4.1a2``." msgstr "El ``4`` en ``3.4.1a2``." #: ../Doc/c-api/apiabiversion.rst:25 msgid "The ``1`` in ``3.4.1a2``." msgstr "El ``1`` en ``3.4.1a2``." #: ../Doc/c-api/apiabiversion.rst:29 msgid "" "The ``a`` in ``3.4.1a2``. This can be ``0xA`` for alpha, ``0xB`` for beta, " "``0xC`` for release candidate or ``0xF`` for final." msgstr "" "La ``a`` en ``3.4.1a2``. Puede ser ``0xA`` para la versión alfa, ``0xB`` " "para la versión beta, ``0xC`` para la versión candidata o ``0xF`` para la " "versión final." #: ../Doc/c-api/apiabiversion.rst:35 msgid "The ``2`` in ``3.4.1a2``. Zero for final releases." msgstr "El ``2`` en ``3.4.1a2``, cero para lanzamientos finales." #: ../Doc/c-api/apiabiversion.rst:39 msgid "The Python version number encoded in a single integer." msgstr "El número de versión de Python codificado en un solo entero." #: ../Doc/c-api/apiabiversion.rst:41 msgid "" "The underlying version information can be found by treating it as a 32 bit " "number in the following manner:" msgstr "" "La información de la versión subyacente se puede encontrar tratándola como " "un número de 32 bits de la siguiente manera:" #: ../Doc/c-api/apiabiversion.rst:45 msgid "Bytes" msgstr "Bytes" #: ../Doc/c-api/apiabiversion.rst:45 msgid "Bits (big endian order)" msgstr "Bits (orden *big-endian*)" #: ../Doc/c-api/apiabiversion.rst:45 msgid "Meaning" msgstr "Significado" #: ../Doc/c-api/apiabiversion.rst:45 msgid "Value for ``3.4.1a2``" msgstr "Valor para ``3.4.1a2``" #: ../Doc/c-api/apiabiversion.rst:47 msgid "1" msgstr "1" #: ../Doc/c-api/apiabiversion.rst:47 msgid "1-8" msgstr "1-8" #: ../Doc/c-api/apiabiversion.rst:47 msgid "``PY_MAJOR_VERSION``" msgstr "``PY_MAJOR_VERSION``" #: ../Doc/c-api/apiabiversion.rst:47 msgid "``0x03``" msgstr "``0x03``" #: ../Doc/c-api/apiabiversion.rst:49 msgid "2" msgstr "2" #: ../Doc/c-api/apiabiversion.rst:49 msgid "9-16" msgstr "9-16" #: ../Doc/c-api/apiabiversion.rst:49 msgid "``PY_MINOR_VERSION``" msgstr "``PY_MINOR_VERSION``" #: ../Doc/c-api/apiabiversion.rst:49 msgid "``0x04``" msgstr "``0x04``" #: ../Doc/c-api/apiabiversion.rst:51 msgid "3" msgstr "3" #: ../Doc/c-api/apiabiversion.rst:51 msgid "17-24" msgstr "17-24" #: ../Doc/c-api/apiabiversion.rst:51 msgid "``PY_MICRO_VERSION``" msgstr "``PY_MICRO_VERSION``" #: ../Doc/c-api/apiabiversion.rst:51 msgid "``0x01``" msgstr "``0x01``" #: ../Doc/c-api/apiabiversion.rst:53 msgid "4" msgstr "4" #: ../Doc/c-api/apiabiversion.rst:53 msgid "25-28" msgstr "25-28" #: ../Doc/c-api/apiabiversion.rst:53 msgid "``PY_RELEASE_LEVEL``" msgstr "``PY_RELEASE_LEVEL``" #: ../Doc/c-api/apiabiversion.rst:53 msgid "``0xA``" msgstr "``0xA``" #: ../Doc/c-api/apiabiversion.rst:55 msgid "29-32" msgstr "29-32" #: ../Doc/c-api/apiabiversion.rst:55 msgid "``PY_RELEASE_SERIAL``" msgstr "``PY_RELEASE_SERIAL``" #: ../Doc/c-api/apiabiversion.rst:55 msgid "``0x2``" msgstr "``0x2``" #: ../Doc/c-api/apiabiversion.rst:58 msgid "" "Thus ``3.4.1a2`` is hexversion ``0x030401a2`` and ``3.10.0`` is hexversion " "``0x030a00f0``." msgstr "" "Así, ``3.4.1a2`` es la hexadecimal ``0x030401a2`` y ``3.10.0`` es la " "hexadecimal ``0x030a00f0``." #: ../Doc/c-api/apiabiversion.rst:61 msgid "This version is also available via the symbol :data:`Py_Version`." msgstr "" #: ../Doc/c-api/apiabiversion.rst:65 msgid "" "The Python runtime version number encoded in a single constant integer, with " "the same format as the :c:macro:`PY_VERSION_HEX` macro. This contains the " "Python version used at run time." msgstr "" #: ../Doc/c-api/apiabiversion.rst:71 msgid "All the given macros are defined in :source:`Include/patchlevel.h`." msgstr "Todas las macros dadas se definen en :source:`Include/patchlevel.h`."