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
*
Reflow long lines.
Jeremy Hylton
2002-08-14
1
-26/+32
*
More changes of DeprecationWarning to FutureWarning.
Guido van Rossum
2002-08-14
3
-6/+6
*
PyType_Ready(): initialize the base class a bit earlier, so that if we
Guido van Rossum
2002-08-14
1
-6/+6
*
k_mul() comments: Simplified the simplified explanation of why ah*bh and
Tim Peters
2002-08-14
1
-6/+3
*
k_mul() comments: Explained why there's always enough room to subtract
Tim Peters
2002-08-14
1
-0/+7
*
Check for trailing backslash. Fixes #593656.
Martin v. Löwis
2002-08-14
1
-5/+8
*
Patch #505705: Remove eval in pickle and cPickle.
Martin v. Löwis
2002-08-14
1
-3/+157
*
Allow more docstrings to be removed during compilation
Neal Norwitz
2002-08-13
2
-14/+18
*
Fixed error in new comment.
Tim Peters
2002-08-13
1
-4/+3
*
k_mul(): The fix for (ah+al)*(bh+bl) spilling 1 bit beyond the allocated
Tim Peters
2002-08-13
1
-8/+44
*
Allow docstrings to be removed during compilation for *SLOT macro and friends
Neal Norwitz
2002-08-13
1
-3/+5
*
Allow docstrings to be removed during compilation
Neal Norwitz
2002-08-13
1
-3/+3
*
Add an improvement wrinkle to Neil Schemenauer's change to int_mul
Guido van Rossum
2002-08-13
1
-2/+4
*
Fix comment for PyLong_AsUnsignedLong() to say that the return value
Guido van Rossum
2002-08-13
1
-1/+1
*
k_lopsided_mul(): This allocated more space for bslice than necessary.
Tim Peters
2002-08-12
1
-1/+1
*
Added new function k_lopsided_mul(), which is much more efficient than
Tim Peters
2002-08-12
1
-10/+72
*
k_mul(): Moved an assert down. In a debug build, interrupting a
Tim Peters
2002-08-12
1
-2/+2
*
k_mul(): Heh -- I checked in two fixes for the last problem. Only keep
Tim Peters
2002-08-12
1
-2/+2
*
k_mul(): White-box testing turned up that (ah+al)*(bh+bl) can, in rare
Tim Peters
2002-08-12
1
-3/+11
*
Fix MSVC warnings.
Guido van Rossum
2002-08-12
1
-2/+2
*
Refactor how __dict__ and __weakref__ interact with __slots__.
Guido van Rossum
2002-08-12
1
-55/+147
*
x_mul(): Made life easier for C optimizers in the "grade school"
Tim Peters
2002-08-12
1
-4/+5
*
k_mul() and long_mul(): I'm confident that the Karatsuba algorithm is
Tim Peters
2002-08-12
1
-9/+30
*
k_mul: Rearranged computation for better cache use. Ignored overflow
Tim Peters
2002-08-12
1
-60/+50
*
x_mul(): This failed to normalize its result.
Tim Peters
2002-08-12
1
-6/+18
*
Introduced helper functions v_iadd and v_isub, for in-place digit-vector
Tim Peters
2002-08-12
1
-29/+75
*
k_mul(): Repaired another typo in another comment.
Tim Peters
2002-08-12
1
-1/+1
*
k_mul(): Repaired typo in comment.
Tim Peters
2002-08-12
1
-1/+1
*
Cautious introduction of a patch that started from
Tim Peters
2002-08-12
1
-85/+264
*
int_lshift(): Simplified/sped overflow-checking.
Tim Peters
2002-08-11
1
-4/+2
*
Use a better check for overflow from a<<b.
Guido van Rossum
2002-08-11
1
-2/+4
*
Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.
Marc-André Lemburg
2002-08-11
1
-1/+55
*
Implement stage B0 of PEP 237: add warnings for operations that
Guido van Rossum
2002-08-11
3
-3/+41
*
Fixed new typos, added a little info about ~sort versus "hint"s.
Tim Peters
2002-08-10
1
-4/+10
*
Disallow class assignment completely unless both old and new are heap
Guido van Rossum
2002-08-10
1
-6/+9
*
1. Combined the base and length arrays into a single array of structs.
Tim Peters
2002-08-10
2
-53/+92
*
The samplesort-vs-mergesort #-of-comparisons comparisons were captured
Tim Peters
2002-08-10
1
-24/+24
*
Add support for the iterator protocol to weakref proxy objects.
Fred Drake
2002-08-09
1
-38/+64
*
Unicode replace() method with empty pattern argument should fail, like
Guido van Rossum
2002-08-09
1
-0/+5
*
Only call sq_repeat if the object does not have a nb_multiply slot. One
Neil Schemenauer
2002-08-09
1
-6/+8
*
Repaired a braino in the description of bad minrun values.
Tim Peters
2002-08-09
1
-3/+3
*
Major speedup for new-style class creation. Turns out there was some
Guido van Rossum
2002-08-09
1
-0/+22
*
Moved special case for tuples from iterobject.c to
Raymond Hettinger
2002-08-09
2
-25/+123
*
Significant speedup in new-style object creation: in slot_tp_new(),
Guido van Rossum
2002-08-08
1
-1/+8
*
A modest speedup of object deallocation. call_finalizer() did rather
Guido van Rossum
2002-08-08
1
-66/+70
*
Added info about highwater heap-memory use for the sortperf.py tests; + a
Tim Peters
2002-08-08
1
-3/+31
*
PyList_Reverse(): This was leaking a reference to Py_None on every call.
Tim Peters
2002-08-08
1
-1/+4
*
Fix a subtle bug in the trashcan code I added yesterday to
Guido van Rossum
2002-08-07
1
-2/+3
*
Replace abort with Py_FatalError.
Martin v. Löwis
2002-08-07
1
-1/+1
*
Make more functions static
Neal Norwitz
2002-08-06
1
-2/+2
[next]