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 103a8fb commit 69f453cCopy full SHA for 69f453c
spec/API_specification/signatures/constants.py
@@ -1,21 +1,21 @@
1
-e = None
+e = 2.718281828459045
2
"""
3
IEEE 754 floating-point representation of Euler's constant.
4
5
``e = 2.71828182845904523536028747135266249775724709369995...``
6
7
8
-inf = None
+inf = float('inf')
9
10
IEEE 754 floating-point representation of (positive) infinity.
11
12
13
-nan = None
+nan = float('nan')
14
15
IEEE 754 floating-point representation of Not a Number (``NaN``).
16
17
18
-pi = None
+pi = 3.141592653589793
19
20
IEEE 754 floating-point representation of the mathematical constant ``π``.
21
0 commit comments