88msgstr ""
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
2121msgid "Built-in Constants"
2222msgstr ""
2323
24- #: ../../library /constants.rst:6
24+ #: ../../builtins /constants.rst:6
2525msgid "A small number of constants live in the built-in namespace. They are:"
2626msgstr ""
2727
28- #: ../../library /constants.rst:10
28+ #: ../../builtins /constants.rst:10
2929msgid ""
3030"The false value of the :class:`bool` type. Assignments to ``False`` are "
3131"illegal and raise a :exc:`SyntaxError`."
3232msgstr ""
3333
34- #: ../../library /constants.rst:16
34+ #: ../../builtins /constants.rst:16
3535msgid ""
3636"The true value of the :class:`bool` type. Assignments to ``True`` are "
3737"illegal and raise a :exc:`SyntaxError`."
3838msgstr ""
3939
40- #: ../../library /constants.rst:22
40+ #: ../../builtins /constants.rst:22
4141msgid ""
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."
4646msgstr ""
4747
48- #: ../../library /constants.rst:30
48+ #: ../../builtins /constants.rst:30
4949msgid ""
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."
5858msgstr ""
5959
60- #: ../../library /constants.rst:40
60+ #: ../../builtins /constants.rst:40
6161msgid ""
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."
6969msgstr ""
7070
71- #: ../../library /constants.rst:47
71+ #: ../../builtins /constants.rst:47
7272msgid "See :ref:`implementing-the-arithmetic-operations` for examples."
7373msgstr ""
7474
75- #: ../../library /constants.rst:51
75+ #: ../../builtins /constants.rst:51
7676msgid ""
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."
8080msgstr ""
8181
82- #: ../../library /constants.rst:56
82+ #: ../../builtins /constants.rst:56
8383msgid "Evaluating :data:`!NotImplemented` in a boolean context was deprecated."
8484msgstr ""
8585
86- #: ../../library /constants.rst:59
86+ #: ../../builtins /constants.rst:59
8787msgid ""
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."
9191msgstr ""
9292
93- #: ../../library /constants.rst:68
93+ #: ../../builtins /constants.rst:68
9494msgid ""
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."
9999msgstr ""
100100
101- #: ../../library /constants.rst:76
101+ #: ../../builtins /constants.rst:76
102102msgid ""
103103"This constant is true if Python was not started with an :option:`-O` option. "
104104"See also the :keyword:`assert` statement."
105105msgstr ""
106106
107- #: ../../library /constants.rst:82
107+ #: ../../builtins /constants.rst:82
108108msgid ""
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."
112112msgstr ""
113113
114- #: ../../library /constants.rst:90
114+ #: ../../builtins /constants.rst:90
115115msgid "Constants added by the :mod:`site` module"
116116msgstr ""
117117
118- #: ../../library /constants.rst:92
118+ #: ../../builtins /constants.rst:92
119119msgid ""
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."
124124msgstr ""
125125
126- #: ../../library /constants.rst:100
126+ #: ../../builtins /constants.rst:100
127127msgid ""
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."
131131msgstr ""
132132
133- #: ../../library /constants.rst:108
133+ #: ../../builtins /constants.rst:108
134134msgid ""
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`)."
139139msgstr ""
140140
141- #: ../../library /constants.rst:116
141+ #: ../../builtins /constants.rst:116
142142msgid ""
143143"Objects that when printed or called, print the text of copyright or credits, "
144144"respectively."
145145msgstr ""
146146
147- #: ../../library /constants.rst:121
147+ #: ../../builtins /constants.rst:121
148148msgid ""
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)."
152152msgstr ""
153153
154- #: ../../library /constants.rst:65
154+ #: ../../builtins /constants.rst:65
155155msgid "..."
156156msgstr ""
157157
158- #: ../../library /constants.rst:65
158+ #: ../../builtins /constants.rst:65
159159msgid "ellipsis literal"
160160msgstr ""
0 commit comments