# SOME DESCRIPTIVE TITLE. # Copyright (C) 2001-2025, Python Software Foundation # This file is distributed under the same license as the Python package. # FIRST AUTHOR , YEAR. # # Translators: # Rafael Fontenelle , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.12\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-01-03 14:53+0000\n" "PO-Revision-Date: 2025-07-18 19:57+0000\n" "Last-Translator: Rafael Fontenelle , 2025\n" "Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/" "teams/5390/pt_BR/)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " "1000000 == 0 ? 1 : 2;\n" #: ../../c-api/apiabiversion.rst:7 msgid "API and ABI Versioning" msgstr "API e Versionamento de ABI" #: ../../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 "" "O CPython expõe seu número de versão nas seguintes macros. Note que estes " "correspondem com o código da versão que está **construída**, não " "necessariamente a versão usada no **run time**." #: ../../c-api/apiabiversion.rst:13 msgid "" "See :ref:`stable` for a discussion of API and ABI stability across versions." msgstr "" "Veja :ref:`stable` para uma discussão da estabilidade da API e ABI através " "das versões." #: ../../c-api/apiabiversion.rst:17 msgid "The ``3`` in ``3.4.1a2``." msgstr "O ``3`` em ``3.4.1a2``." #: ../../c-api/apiabiversion.rst:21 msgid "The ``4`` in ``3.4.1a2``." msgstr "O ``4`` em ``3.4.1a2``." #: ../../c-api/apiabiversion.rst:25 msgid "The ``1`` in ``3.4.1a2``." msgstr "O ``1`` em ``3.4.1a2``." #: ../../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 "" "O ``a`` em ``3.4.1a2``. Isto pode ser ``0xA`` para alfa, ``0xB`` para beta, " "``0xC`` para o candidato a lançamento ou ``0xF`` para final." #: ../../c-api/apiabiversion.rst:35 msgid "The ``2`` in ``3.4.1a2``. Zero for final releases." msgstr "O ``2`` em ``3.4.1a2``. Zero para os lançamentos finais." #: ../../c-api/apiabiversion.rst:39 msgid "The Python version number encoded in a single integer." msgstr "O número da versão do Python codificado em um único inteiro." #: ../../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 "" "As informações da versão subjacente podem ser achadas tratando-as como um " "número de 32 bits da seguinte maneira:" #: ../../c-api/apiabiversion.rst:45 msgid "Bytes" msgstr "Bytes" #: ../../c-api/apiabiversion.rst:45 msgid "Bits (big endian order)" msgstr "Bits (big endian order)" #: ../../c-api/apiabiversion.rst:45 msgid "Meaning" msgstr "Significado" #: ../../c-api/apiabiversion.rst:45 msgid "Value for ``3.4.1a2``" msgstr "Valor para ``3.4.1a2``" #: ../../c-api/apiabiversion.rst:47 msgid "1" msgstr "1" #: ../../c-api/apiabiversion.rst:47 msgid "1-8" msgstr "1-8" #: ../../c-api/apiabiversion.rst:47 msgid "``PY_MAJOR_VERSION``" msgstr "``PY_MAJOR_VERSION``" #: ../../c-api/apiabiversion.rst:47 msgid "``0x03``" msgstr "``0x03``" #: ../../c-api/apiabiversion.rst:49 msgid "2" msgstr "2" #: ../../c-api/apiabiversion.rst:49 msgid "9-16" msgstr "9-16" #: ../../c-api/apiabiversion.rst:49 msgid "``PY_MINOR_VERSION``" msgstr "``PY_MINOR_VERSION``" #: ../../c-api/apiabiversion.rst:49 msgid "``0x04``" msgstr "``0x04``" #: ../../c-api/apiabiversion.rst:51 msgid "3" msgstr "3" #: ../../c-api/apiabiversion.rst:51 msgid "17-24" msgstr "17-24" #: ../../c-api/apiabiversion.rst:51 msgid "``PY_MICRO_VERSION``" msgstr "``PY_MICRO_VERSION``" #: ../../c-api/apiabiversion.rst:51 msgid "``0x01``" msgstr "``0x01``" #: ../../c-api/apiabiversion.rst:53 msgid "4" msgstr "4" #: ../../c-api/apiabiversion.rst:53 msgid "25-28" msgstr "25-28" #: ../../c-api/apiabiversion.rst:53 msgid "``PY_RELEASE_LEVEL``" msgstr "``PY_RELEASE_LEVEL``" #: ../../c-api/apiabiversion.rst:53 msgid "``0xA``" msgstr "``0xA``" #: ../../c-api/apiabiversion.rst:55 msgid "29-32" msgstr "29-32" #: ../../c-api/apiabiversion.rst:55 msgid "``PY_RELEASE_SERIAL``" msgstr "``PY_RELEASE_SERIAL``" #: ../../c-api/apiabiversion.rst:55 msgid "``0x2``" msgstr "``0x2``" #: ../../c-api/apiabiversion.rst:58 msgid "" "Thus ``3.4.1a2`` is hexversion ``0x030401a2`` and ``3.10.0`` is hexversion " "``0x030a00f0``." msgstr "" "Assim ``3.4.1a2`` é a versão hex ``0x030401a2`` e ``3.10.0`` é a versãos hex " "``0x030a00f0``." #: ../../c-api/apiabiversion.rst:61 msgid "Use this for numeric comparisons, e.g. ``#if PY_VERSION_HEX >= ...``." msgstr "" "Use isso para comparações numéricas como, por exemplo, ``#if PY_VERSION_HEX " ">= ...``." #: ../../c-api/apiabiversion.rst:63 msgid "This version is also available via the symbol :c:var:`Py_Version`." msgstr "" "Esta versão também está disponível através do símbolo :c:var:`Py_Version`." #: ../../c-api/apiabiversion.rst:67 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 "" "O número da versão do runtime do Python codificado em um único inteiro " "constante, com o mesmo formato da macro :c:macro:`PY_VERSION_HEX`. Ele " "contém a versão do Python usada em tempo de execução." #: ../../c-api/apiabiversion.rst:73 msgid "All the given macros are defined in :source:`Include/patchlevel.h`." msgstr "" "Todas as macros dadas estão definidas em :source:`Include/patchlevel.h`."