Skip to content

Commit e8c641b

Browse files
authored
Merge pull request #6 from python/sync-upstream-3.14
Sync mit Upstream-Änderungen (3.14)
2 parents 88a15e8 + 9f29298 commit e8c641b

33 files changed

Lines changed: 25309 additions & 18832 deletions

builtins/constants.po

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-09-05 16:53+0200\n"
11+
"POT-Creation-Date: 2026-09-23 06:17+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1313
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
1414
"Language: de\n"
@@ -17,35 +17,35 @@ msgstr ""
1717
"Content-Transfer-Encoding: 8bit\n"
1818
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919

20-
#: ../../library/constants.rst:4
20+
#: ../../builtins/constants.rst:4
2121
msgid "Built-in Constants"
2222
msgstr ""
2323

24-
#: ../../library/constants.rst:6
24+
#: ../../builtins/constants.rst:6
2525
msgid "A small number of constants live in the built-in namespace. They are:"
2626
msgstr ""
2727

28-
#: ../../library/constants.rst:10
28+
#: ../../builtins/constants.rst:10
2929
msgid ""
3030
"The false value of the :class:`bool` type. Assignments to ``False`` are "
3131
"illegal and raise a :exc:`SyntaxError`."
3232
msgstr ""
3333

34-
#: ../../library/constants.rst:16
34+
#: ../../builtins/constants.rst:16
3535
msgid ""
3636
"The true value of the :class:`bool` type. Assignments to ``True`` are "
3737
"illegal and raise a :exc:`SyntaxError`."
3838
msgstr ""
3939

40-
#: ../../library/constants.rst:22
40+
#: ../../builtins/constants.rst:22
4141
msgid ""
4242
"An object frequently used to represent the absence of a value, as when "
4343
"default arguments are not passed to a function. Assignments to ``None`` are "
4444
"illegal and raise a :exc:`SyntaxError`. ``None`` is the sole instance of "
4545
"the :class:`~types.NoneType` type."
4646
msgstr ""
4747

48-
#: ../../library/constants.rst:30
48+
#: ../../builtins/constants.rst:30
4949
msgid ""
5050
"A special value which should be returned by the binary special methods (e."
5151
"g. :meth:`~object.__eq__`, :meth:`~object.__lt__`, :meth:`~object.__add__`, :"
@@ -57,7 +57,7 @@ msgid ""
5757
"`types.NotImplementedType` type."
5858
msgstr ""
5959

60-
#: ../../library/constants.rst:40
60+
#: ../../builtins/constants.rst:40
6161
msgid ""
6262
"When a binary (or in-place) method returns :data:`!NotImplemented` the "
6363
"interpreter will try the reflected operation on the other type (or some "
@@ -68,93 +68,93 @@ msgid ""
6868
"code."
6969
msgstr ""
7070

71-
#: ../../library/constants.rst:47
71+
#: ../../builtins/constants.rst:47
7272
msgid "See :ref:`implementing-the-arithmetic-operations` for examples."
7373
msgstr ""
7474

75-
#: ../../library/constants.rst:51
75+
#: ../../builtins/constants.rst:51
7676
msgid ""
7777
":data:`!NotImplemented` and :exc:`!NotImplementedError` are not "
7878
"interchangeable. This constant should only be used as described above; see :"
7979
"exc:`NotImplementedError` for details on correct usage of the exception."
8080
msgstr ""
8181

82-
#: ../../library/constants.rst:56
82+
#: ../../builtins/constants.rst:56
8383
msgid "Evaluating :data:`!NotImplemented` in a boolean context was deprecated."
8484
msgstr ""
8585

86-
#: ../../library/constants.rst:59
86+
#: ../../builtins/constants.rst:59
8787
msgid ""
8888
"Evaluating :data:`!NotImplemented` in a boolean context now raises a :exc:"
8989
"`TypeError`. It previously evaluated to :const:`True` and emitted a :exc:"
9090
"`DeprecationWarning` since Python 3.9."
9191
msgstr ""
9292

93-
#: ../../library/constants.rst:68
93+
#: ../../builtins/constants.rst:68
9494
msgid ""
9595
"The same as the ellipsis literal \"``...``\", an object frequently used to "
9696
"indicate that something is omitted. Assignment to ``Ellipsis`` is possible, "
9797
"but assignment to ``...`` raises a :exc:`SyntaxError`. ``Ellipsis`` is the "
9898
"sole instance of the :class:`types.EllipsisType` type."
9999
msgstr ""
100100

101-
#: ../../library/constants.rst:76
101+
#: ../../builtins/constants.rst:76
102102
msgid ""
103103
"This constant is true if Python was not started with an :option:`-O` option. "
104104
"See also the :keyword:`assert` statement."
105105
msgstr ""
106106

107-
#: ../../library/constants.rst:82
107+
#: ../../builtins/constants.rst:82
108108
msgid ""
109109
"The names :data:`None`, :data:`False`, :data:`True` and :data:`__debug__` "
110110
"cannot be reassigned (assignments to them, even as an attribute name, raise :"
111111
"exc:`SyntaxError`), so they can be considered \"true\" constants."
112112
msgstr ""
113113

114-
#: ../../library/constants.rst:90
114+
#: ../../builtins/constants.rst:90
115115
msgid "Constants added by the :mod:`site` module"
116116
msgstr ""
117117

118-
#: ../../library/constants.rst:92
118+
#: ../../builtins/constants.rst:92
119119
msgid ""
120120
"The :mod:`site` module (which is imported automatically during startup, "
121121
"except if the :option:`-S` command-line option is given) adds several "
122122
"constants to the built-in namespace. They are useful for the interactive "
123123
"interpreter shell and should not be used in programs."
124124
msgstr ""
125125

126-
#: ../../library/constants.rst:100
126+
#: ../../builtins/constants.rst:100
127127
msgid ""
128128
"Objects that when printed, print a message like \"Use quit() or Ctrl-D (i.e. "
129129
"EOF) to exit\", and when accessed directly in the interactive interpreter or "
130130
"called as functions, raise :exc:`SystemExit` with the specified exit code."
131131
msgstr ""
132132

133-
#: ../../library/constants.rst:108
133+
#: ../../builtins/constants.rst:108
134134
msgid ""
135135
"Object that when printed, prints the message \"Type help() for interactive "
136136
"help, or help(object) for help about object.\", and when accessed directly "
137137
"in the interactive interpreter, invokes the built-in help system (see :func:"
138138
"`help`)."
139139
msgstr ""
140140

141-
#: ../../library/constants.rst:116
141+
#: ../../builtins/constants.rst:116
142142
msgid ""
143143
"Objects that when printed or called, print the text of copyright or credits, "
144144
"respectively."
145145
msgstr ""
146146

147-
#: ../../library/constants.rst:121
147+
#: ../../builtins/constants.rst:121
148148
msgid ""
149149
"Object that when printed, prints the message \"Type license() to see the "
150150
"full license text\", and when called, displays the full license text in a "
151151
"pager-like fashion (one screen at a time)."
152152
msgstr ""
153153

154-
#: ../../library/constants.rst:65
154+
#: ../../builtins/constants.rst:65
155155
msgid "..."
156156
msgstr ""
157157

158-
#: ../../library/constants.rst:65
158+
#: ../../builtins/constants.rst:65
159159
msgid "ellipsis literal"
160160
msgstr ""

0 commit comments

Comments
 (0)