mirror of
https://github.com/python/cpython.git
synced 2026-05-17 18:08:50 -04:00
Feature #1534
Added PyFloat_GetMax(), PyFloat_GetMin() and PyFloat_GetInfo() to the float API. Added a dictionary sys.float_info with information about the internal floating point type to the sys module.
This commit is contained in:
@@ -1169,6 +1169,8 @@ _PySys_Init(void)
|
||||
PyInt_FromLong(PyInt_GetMax()));
|
||||
SET_SYS_FROM_STRING("py3kwarning",
|
||||
PyBool_FromLong(Py_Py3kWarningFlag));
|
||||
SET_SYS_FROM_STRING("float_info",
|
||||
PyFloat_GetInfo());
|
||||
#ifdef Py_USING_UNICODE
|
||||
SET_SYS_FROM_STRING("maxunicode",
|
||||
PyInt_FromLong(PyUnicode_GetMax()));
|
||||
|
||||
Reference in New Issue
Block a user