index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
floatobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416)
Serhiy Storchaka
2019-05-19
1
-2/+2
*
bpo-36793: Remove unneeded __str__ definitions. (GH-13081)
Serhiy Storchaka
2019-05-06
1
-1/+1
*
bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)
Victor Stinner
2019-01-22
1
-1/+2
*
bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674)
Victor Stinner
2018-11-23
1
-1/+1
*
bpo-35059: Convert PyObject_INIT() to function (GH-10077)
Victor Stinner
2018-10-26
1
-1/+1
*
Fix typo and edit for clarity in the docstrings of sys.float_info. (GH-2251)
Stefano Taschini
2018-03-26
1
-3/+2
*
bpo-31979: Simplify transforming decimals to ASCII (#4336)
Serhiy Storchaka
2017-11-13
1
-4/+3
*
bpo-31373: remove overly strict float range checks (#3486)
Benjamin Peterson
2017-09-11
1
-2/+2
*
bpo-31373: fix undefined floating-point demotions (#3396)
Benjamin Peterson
2017-09-07
1
-4/+6
*
Update Argument Clinic generated code for bpo-29878. (#1001)
Serhiy Storchaka
2017-04-05
1
-1/+1
*
bpo-29878: Add global instances of int for 0 and 1. (#852)
Serhiy Storchaka
2017-03-30
1
-10/+4
*
bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)
Serhiy Storchaka
2017-03-19
1
-17/+16
*
bpo-20185: Convert float object implementation to Argument Clinic. (#543)
Serhiy Storchaka
2017-03-11
1
-156/+213
*
bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() an...
Serhiy Storchaka
2017-03-06
1
-8/+3
*
bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)
Serhiy Storchaka
2017-03-05
1
-0/+6
*
Backed out changeset b9c9691c72c5
Victor Stinner
2016-12-04
1
-1/+1
*
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner
2016-12-01
1
-1/+1
*
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka
2016-11-20
1
-3/+3
*
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
Serhiy Storchaka
2016-11-20
1
-2/+2
*
Issue #26331: Implement the parsing part of PEP 515.
Brett Cannon
2016-09-09
1
-23/+36
*
Issue #11734: Add support for IEEE 754 half-precision floats to the struct mo...
Mark Dickinson
2016-09-03
1
-1/+183
*
Issue #26983: float() now always return an instance of exact float.
Serhiy Storchaka
2016-06-03
1
-16/+30
*
Issue #27005: Fixed the call of PyObject_CallFunctionObjArgs().
Serhiy Storchaka
2016-05-12
1
-1/+1
*
Issue #27005: Optimized the float.fromhex() class method for exact float.
Serhiy Storchaka
2016-05-12
1
-6/+5
*
Issue #26200: Restored more safe usages of Py_SETREF.
Serhiy Storchaka
2016-04-11
1
-2/+2
|
\
*
\
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-2/+2
|
\
\
|
|
/
*
|
Clean up float.as_integer_ratio().
Serhiy Storchaka
2015-12-29
1
-20/+16
*
|
Issue #25971: Optimized creating Fractions from floats by 2 times and from
Serhiy Storchaka
2015-12-29
1
-6/+6
|
/
*
Issue #24731: Fixed crash on converting objects with special methods
Serhiy Storchaka
2015-11-25
1
-1/+1
|
\
|
*
Issue #24731: Fixed crash on converting objects with special methods
Serhiy Storchaka
2015-11-25
1
-1/+1
*
|
Issue #24802: Merge null termination fixes from 3.4 into 3.5
Martin Panter
2015-11-07
1
-0/+15
|
\
\
|
|
/
|
*
Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary
Martin Panter
2015-11-07
1
-0/+15
*
|
Issue 19933: Provide default argument for ndigits in round. Patch by Vajrasky...
Steve Dower
2015-04-15
1
-2/+3
*
|
merge 3.4 (#23590)
Benjamin Peterson
2015-03-06
1
-0/+1
|
\
\
|
|
/
|
*
fix potential refleak in PyFloat_AsDouble (closes #23590)
Benjamin Peterson
2015-03-06
1
-0/+1
*
|
Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()
Serhiy Storchaka
2015-02-02
1
-1/+7
|
\
\
|
|
/
|
*
Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()
Serhiy Storchaka
2015-02-02
1
-1/+7
*
|
Removed redundant casts to `char *`.
Serhiy Storchaka
2014-09-28
1
-2/+2
|
/
*
Silence expression result unused warnings with clang.
Christian Heimes
2013-12-04
1
-1/+1
*
Issue #3158: doctest can now find doctests in functions and methods
Zachary Ware
2013-11-24
1
-1/+1
*
#17080: improve error message of float/complex when the wrong type is passed.
Ezio Melotti
2013-11-07
1
-2/+3
*
#19069: merge with 3.3.
Ezio Melotti
2013-10-05
1
-11/+11
|
\
|
*
#19069: use imperative mood in float object docstrings. Patch by Marco Buttu.
Ezio Melotti
2013-10-05
1
-11/+11
*
|
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-4/+4
|
\
\
|
|
/
|
*
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-4/+4
*
|
Issue #18722: Remove uses of the "register" keyword in C code.
Antoine Pitrou
2013-08-13
1
-2/+2
*
|
Issue #18520: Add a new PyStructSequence_InitType2() function, same than
Victor Stinner
2013-07-22
1
-3/+6
*
|
Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros
Victor Stinner
2013-06-04
1
-9/+4
*
|
Close #17694: Add minimum length to _PyUnicodeWriter
Victor Stinner
2013-04-17
1
-1/+1
|
/
*
Fix a few typos and a double semicolon. Patch by Eitan Adler.
Ezio Melotti
2013-01-27
1
-1/+1
[next]