We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f42063 commit ad707afCopy full SHA for ad707af
1 file changed
peps/pep-0791.rst
@@ -97,6 +97,13 @@ and issue `python/cpython#81313
97
* ``fibonacci()`` --- `Fibonacci sequence
98
<https://en.wikipedia.org/wiki/Fibonacci_sequence>`_.
99
100
+Separated namespace eliminates possible name clash with existing
101
+:external+py3.14:mod:`math`'s module functions. For example, possible names
102
+``ceil_div()`` or ``ceildiv()`` for integer ceiling division will interfere
103
+with the :external+py3.14:func:`~math.ceil` (which is for :class:`float`'s and
104
+*sometimes* does right things for integer division, as an accident --- but
105
+`usually not <https://discuss.python.org/t/91269/6>`_).
106
+
107
108
Rationale
109
=========
0 commit comments