COMMITS
/ Objects/floatobject.c March 6, 2017
S
bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). (#518)
Serhiy Storchaka committed
March 5, 2017
S
bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)
Serhiy Storchaka committed
December 4, 2016
V
Backed out changeset b9c9691c72c5
Victor Stinner committed
December 1, 2016
V
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner committed
November 20, 2016
S
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka committed
S
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
Serhiy Storchaka committed
September 9, 2016
B
Issue #26331: Implement the parsing part of PEP 515.
Brett Cannon committed
September 3, 2016
June 3, 2016
S
Issue #26983: float() now always return an instance of exact float.
Serhiy Storchaka committed
May 12, 2016
S
Issue #27005: Fixed the call of PyObject_CallFunctionObjArgs().
Serhiy Storchaka committed
S
Issue #27005: Optimized the float.fromhex() class method for exact float.
Serhiy Storchaka committed
April 11, 2016
S
Issue #26200: Restored more safe usages of Py_SETREF.
Serhiy Storchaka committed
April 6, 2016
S
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka committed
December 29, 2015
S
Clean up float.as_integer_ratio().
Serhiy Storchaka committed
S
Issue #25971: Optimized creating Fractions from floats by 2 times and from
Serhiy Storchaka committed
November 25, 2015
S
Issue #24731: Fixed crash on converting objects with special methods
Serhiy Storchaka committed
S
Issue #24731: Fixed crash on converting objects with special methods
Serhiy Storchaka committed
November 7, 2015
M
Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary
Martin Panter committed
M
Issue #24802: Merge null termination fixes from 3.4 into 3.5
Martin Panter committed
April 15, 2015
S
Issue 19933: Provide default argument for ndigits in round. Patch by Vajrasky Kok.
Steve Dower committed
March 6, 2015
B
merge 3.4 (#23590)
Benjamin Peterson committed
B
fix potential refleak in PyFloat_AsDouble (closes #23590)
Benjamin Peterson committed
February 2, 2015
S
Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()
Serhiy Storchaka committed
S
Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()
Serhiy Storchaka committed
September 28, 2014
S
Removed redundant casts to `char *`.
Serhiy Storchaka committed
December 4, 2013
C
Silence expression result unused warnings with clang.
Christian Heimes committed
November 24, 2013
Z
Issue #3158: doctest can now find doctests in functions and methods
Zachary Ware committed
November 7, 2013
E
#17080: improve error message of float/complex when the wrong type is passed.
Ezio Melotti committed
October 5, 2013
E
#19069: merge with 3.3.
Ezio Melotti committed
E
#19069: use imperative mood in float object docstrings. Patch by Marco Buttu.
Ezio Melotti committed
August 27, 2013
S
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka committed
S
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka committed
August 13, 2013
A
Issue #18722: Remove uses of the "register" keyword in C code.
Antoine Pitrou committed
July 22, 2013
V
Issue #18520: Add a new PyStructSequence_InitType2() function, same than
Victor Stinner committed
June 4, 2013
V
Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros
Victor Stinner committed
April 17, 2013
V
Close #17694: Add minimum length to _PyUnicodeWriter
Victor Stinner committed
January 27, 2013
E
Fix a few typos and a double semicolon. Patch by Eitan Adler.
Ezio Melotti committed
June 22, 2012
D
Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues
David Malcolm committed
May 29, 2012
V
Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args)
Victor Stinner committed
March 30, 2012
K
Issue #14435: Remove special block allocation code from floatobject.c
Kristján Valur Jónsson committed
January 27, 2012
M
Merge 3.2 -> default (issue 13889)
Mark Dickinson committed
M
October 14, 2011
V
Issue #13088: Add shared Py_hexdigits constant to format a number into base 16
Victor Stinner committed
September 28, 2011
M
Implement PEP 393.
Martin v. Löwis committed
August 11, 2011
B
Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.
Brian Curtin committed
March 14, 2011
J
Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2
Jesus Cea committed
February 22, 2011
B
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon committed
December 4, 2010
M
M
Issue #10596: Fix float.__mod__ to have the same behaviour as
Mark Dickinson committed
M
Remove some unecessary '#ifdef Py_NAN's from floatobject.c
Mark Dickinson committed