@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.12\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2025-04-04 14:56 +0000\n "
15+ "POT-Creation-Date : 2025-04-11 14:54 +0000\n "
1616"PO-Revision-Date : 2024-05-11 00:32+0000\n "
1717"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1818"Language-Team : Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n "
@@ -2821,22 +2821,22 @@ msgstr ""
28212821
28222822#: ../../faq/programming.rst:1870
28232823msgid ""
2824- "1) Assignments create new names but do not change object identity. After "
2825- "the assignment ``new = old``, it is guaranteed that ``new is old``."
2824+ "Assignments create new names but do not change object identity. After the "
2825+ "assignment ``new = old``, it is guaranteed that ``new is old``."
28262826msgstr ""
28272827
28282828#: ../../faq/programming.rst:1873
28292829msgid ""
2830- "2) Putting an object in a container that stores object references does not "
2830+ "Putting an object in a container that stores object references does not "
28312831"change object identity. After the list assignment ``s[0] = x``, it is "
28322832"guaranteed that ``s[0] is x``."
28332833msgstr ""
28342834
28352835#: ../../faq/programming.rst:1877
28362836msgid ""
2837- "3) If an object is a singleton, it means that only one instance of that "
2838- "object can exist. After the assignments ``a = None`` and ``b = None``, it "
2839- "is guaranteed that ``a is b`` because ``None`` is a singleton."
2837+ "If an object is a singleton, it means that only one instance of that object "
2838+ "can exist. After the assignments ``a = None`` and ``b = None``, it is "
2839+ "guaranteed that ``a is b`` because ``None`` is a singleton."
28402840msgstr ""
28412841
28422842#: ../../faq/programming.rst:1881
0 commit comments