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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Simpler solution to handling non-IEEE 754 environments.
Raymond Hettinger
2008-02-02
1
-13/+3
*
Add protection from weirdness while scaling the mantissa to an integer.
Raymond Hettinger
2008-02-01
1
-5/+10
*
Fix int/long typecase. Add check for non-binary floating point.
Raymond Hettinger
2008-02-01
1
-2/+9
*
labs() takes a long for an input.
Raymond Hettinger
2008-02-01
1
-1/+1
*
Integer ratio should return ints instead of longs whereever possible.
Raymond Hettinger
2008-02-01
1
-2/+8
*
Issue #1996: float.as_integer_ratio() should return fraction in lowest terms.
Raymond Hettinger
2008-02-01
1
-85/+18
*
The previous change was causing a segfault after multiple calls to Py_Initial...
Christian Heimes
2008-01-30
1
-9/+5
*
Fixed some references leaks in sys.
Christian Heimes
2008-01-30
1
-1/+0
*
Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detec...
Christian Heimes
2008-01-30
1
-18/+81
*
Factor-out common code with a new macro
Raymond Hettinger
2008-01-28
1
-4/+4
*
Make PySet_Add() work with frozensets.
Raymond Hettinger
2008-01-28
1
-15/+4
*
static PyObject* variables should use PyString_InternFromString() instead of ...
Christian Heimes
2008-01-28
3
-9/+10
*
Added clear cache methods to clear the internal type lookup cache for ref lea...
Christian Heimes
2008-01-27
1
-0/+18
*
Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() because
Jeffrey Yasskin
2008-01-27
1
-0/+159
*
Whitespace cleanup
Neal Norwitz
2008-01-27
1
-5/+5
*
#1473257: add generator.gi_code attribute that refers to
Georg Brandl
2008-01-26
1
-0/+5
*
Revert PySet_Add() changes.
Raymond Hettinger
2008-01-26
1
-0/+5
*
Update test code for change to PySet_Add().
Raymond Hettinger
2008-01-26
1
-1/+0
*
Make PySet_Add() work with frozensets. Works like PyTuple_SetItem() to build...
Raymond Hettinger
2008-01-26
1
-4/+0
*
Use the right (portable) definition of the max of a Py_ssize_t.
Thomas Wouters
2008-01-25
1
-1/+1
*
Rewrite the list_inline_repeat overflow check slightly differently.
Guido van Rossum
2008-01-25
1
-6/+7
*
Changes 54857 and 54840 broke code and were reverted in Py2.5 just before
Raymond Hettinger
2008-01-25
2
-8/+8
*
Backport of several functions from Python 3.0 to 2.6 including PyUnicode_From...
Christian Heimes
2008-01-25
2
-165/+630
*
Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64)
Neal Norwitz
2008-01-25
1
-0/+5
*
Fix test67.py from issue #1303614.
Guido van Rossum
2008-01-24
1
-0/+5
*
Indentation normalization.
Georg Brandl
2008-01-19
1
-8/+8
*
Fix an edge case whereby the __del__() method of a classic class could
Guido van Rossum
2008-01-18
1
-0/+10
*
Silence Coverity false alerts with CIDs #172, #183, #184
Christian Heimes
2008-01-18
1
-0/+1
*
Temporarily revert 59967 until GC can be added.
Raymond Hettinger
2008-01-15
1
-1/+1
*
Issue 1820: structseq objects did not work with the % formatting operator or...
Raymond Hettinger
2008-01-15
1
-1/+1
*
Added more comments to the new structseq repr code and implemented several of...
Christian Heimes
2008-01-14
1
-17/+36
*
Now that I've learnt about structseq objects I felt like converting sys.float...
Christian Heimes
2008-01-14
1
-29/+78
*
I missed the most important file
Christian Heimes
2008-01-14
1
-5/+58
*
Re-apply patch #1700288 (first applied in r59931, rolled back in r59940)
Amaury Forgeot d'Arc
2008-01-14
2
-6/+208
*
Back out r59931 - test_ctypes fails with it.
Georg Brandl
2008-01-13
2
-208/+6
*
Patch #1700288: Method cache optimization, by Armin Rigo, ported to
Georg Brandl
2008-01-12
2
-6/+208
*
Make Python compile with --disable-unicode.
Georg Brandl
2008-01-07
1
-0/+2
*
Continue rolling back pep-3141 changes that changed behavior from 2.5. This
Jeffrey Yasskin
2008-01-05
3
-121/+3
*
Make math.{floor,ceil}({int,long}) return float again for backwards
Jeffrey Yasskin
2008-01-04
2
-4/+4
*
Bug #1481296: Fixed long(float('nan'))!=0L.
Christian Heimes
2008-01-04
1
-0/+3
*
Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...
Christian Heimes
2008-01-03
1
-1/+1
*
Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just
Jeffrey Yasskin
2008-01-03
4
-63/+271
*
Fix refleak
Neal Norwitz
2007-12-31
1
-0/+1
*
Fix refleak introduced in r59576.
Georg Brandl
2007-12-20
1
-0/+1
*
Patch #1549 by Thomas Herve.
Guido van Rossum
2007-12-19
1
-15/+18
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
21
-493/+493
*
Applied patch #1635: Float patch for inf and nan on Windows (and other platfo...
Christian Heimes
2007-12-18
1
-1/+49
*
Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary.
Raymond Hettinger
2007-12-18
1
-0/+17
*
Optimize PyList_AsTuple(). Improve cache performance by doing the
Raymond Hettinger
2007-12-15
1
-5/+5
*
Fixed bug #1620: New @spam.getter property syntax modifies the property in pl...
Christian Heimes
2007-12-14
1
-33/+70
[next]