@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version :Python 3.12\n "
13
13
"Report-Msgid-Bugs-To :\n "
14
- "POT-Creation-Date :2025-04-04 14:56 +0000\n "
14
+ "POT-Creation-Date :2025-04-11 14:54 +0000\n "
15
15
"PO-Revision-Date :2024-05-11 00:32+0000\n "
16
16
"Last-Translator :Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
17
17
"Language-Team :Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -4007,31 +4007,23 @@ msgstr ""
4007
4007
4008
4008
#: ../../faq/programming.rst:1870
4009
4009
msgid ""
4010
- "1) Assignments create new names but do not change object identity. After "
4011
- "the assignment ``new = old``, it is guaranteed that ``new is old``."
4010
+ "Assignments create new names but do not change object identity. After the "
4011
+ "assignment ``new = old``, it is guaranteed that ``new is old``."
4012
4012
msgstr ""
4013
- "1) Atribuições criam novos nomes, mas não alteram a identidade do objeto. "
4014
- "Após a atribuição ``new = old``, é garantido que ``new is old``."
4015
4013
4016
4014
#: ../../faq/programming.rst:1873
4017
4015
msgid ""
4018
- "2) Putting an object in a container that stores object references does not "
4016
+ "Putting an object in a container that stores object references does not "
4019
4017
"change object identity. After the list assignment ``s[0] = x``, it is "
4020
4018
"guaranteed that ``s[0] is x``."
4021
4019
msgstr ""
4022
- "2) Colocar um objeto em um contêiner que armazena referências de objetos não "
4023
- "altera a identidade do objeto. Após a lista atribuição ``s[0] = x``, é "
4024
- "garantido que ``s[0] is x``."
4025
4020
4026
4021
#: ../../faq/programming.rst:1877
4027
4022
msgid ""
4028
- "3) If an object is a singleton, it means that only one instance of that "
4029
- "object can exist. After the assignments ``a = None`` and ``b = None``, it "
4030
- "is guaranteed that ``a is b`` because ``None`` is a singleton."
4023
+ "If an object is a singleton, it means that only one instance of that object "
4024
+ "can exist. After the assignments ``a = None`` and ``b = None``, it is "
4025
+ "guaranteed that ``a is b`` because ``None`` is a singleton."
4031
4026
msgstr ""
4032
- "3) Se um objeto for um Singleton, isso significa que só pode existir uma "
4033
- "instância desse objeto. Depois de atribuição ``a = None`` e ``b = None``, é "
4034
- "garantido que ``a is b`` porque ``None`` é um Singleton."
4035
4027
4036
4028
#: ../../faq/programming.rst:1881
4037
4029
msgid ""