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
*
Forget keeping track of whether a dictionary contains all interned
Guido van Rossum
1997-01-23
2
-178/+110
*
Added PyCObject_Import.
Guido van Rossum
1997-01-22
1
-18/+39
*
Don't use static buffers internally for formatstring().
Guido van Rossum
1997-01-21
1
-25/+26
*
Bugfix: remove ref to fast before it's defined.
Guido van Rossum
1997-01-20
1
-1/+1
*
Changes that appear to give another 12% speedup.
Guido van Rossum
1997-01-20
1
-87/+55
*
Intern the various string objects created to speed up lookups.
Guido van Rossum
1997-01-18
1
-25/+25
*
Intern the strings "__builtins__".
Guido van Rossum
1997-01-18
1
-1/+1
*
Intern the strings created in getattr() and setattr().
Guido van Rossum
1997-01-18
1
-2/+2
*
String interning.
Guido van Rossum
1997-01-18
3
-32/+285
*
Comment out extend_stack() -- it is no longer needed.
Guido van Rossum
1997-01-17
1
-0/+2
*
Rewrote lookmapping() according to suggestions by Jyrki Alakuijala.
Guido van Rossum
1997-01-16
2
-42/+142
*
Increased buffer sizes used by hex() and oct() -- on 64-bit or 128-bit
Guido van Rossum
1997-01-14
1
-2/+2
*
Changed hex() and oct() again, to never emit a '-' sign.
Guido van Rossum
1997-01-12
1
-7/+2
*
New, better hash for floating point and complex
Guido van Rossum
1997-01-11
2
-6/+41
*
Subtle change to hex/oct formatting so the largest negative number
Guido van Rossum
1997-01-10
1
-2/+2
*
Fix overflow test for multiply to catch some cases it missed.
Guido van Rossum
1997-01-06
1
-2/+4
*
Added PyLong_FromUnsignedLong() and PyLong_AsUnsignedLong().
Guido van Rossum
1997-01-03
1
-0/+56
*
Removed all traces of accessobject.c.
Guido van Rossum
1996-12-25
2
-374/+2
*
PySequence_Index(): set exception when object is not found in
Barry Warsaw
1996-12-18
1
-0/+1
*
Better tuple hash function.
Guido van Rossum
1996-12-16
1
-1/+1
*
Change comment about MINSIZE -- 10 is optimal for Python.
Guido van Rossum
1996-12-16
1
-3/+6
*
Some more tuning of quicksort: use pointers instead of indexing.
Guido van Rossum
1996-12-11
1
-54/+60
*
Added new quicksort implementation, tailored to sorting arrays of
Guido van Rossum
1996-12-10
1
-0/+227
*
Add const to error and newstring functions
Guido van Rossum
1996-12-10
1
-2/+2
*
Fix core dump from pow(x,y,0).
Guido van Rossum
1996-12-06
1
-7/+9
*
Make gcc -Wall happy
Guido van Rossum
1996-12-05
5
-20/+6
*
Fix newlongobject so it will work for 64-bit as well as 32-bit hardware
Guido van Rossum
1996-12-05
1
-12/+15
*
Experimental new implementation of dictionary comparison. This
Guido van Rossum
1996-12-05
2
-0/+126
*
Make gcc -Wall happy.
Guido van Rossum
1996-12-05
1
-0/+4
*
Better implementation of PyCObject_AsVoidPtr().
Guido van Rossum
1996-12-05
1
-7/+18
*
Yet more elaborate message for exception in __del__.
Guido van Rossum
1996-12-05
1
-11/+23
*
Added missing PySequence_List.
Guido van Rossum
1996-12-05
1
-15/+44
*
Make Py_ReturnNullError() statis as it should be.
Guido van Rossum
1996-11-11
1
-1/+1
*
Only call sq_length in Sequence_GetItem for negative index.
Guido van Rossum
1996-11-09
1
-4/+6
*
correct typo in return variable for PySequence_Index()
Guido van Rossum
1996-11-06
1
-1/+1
*
New permission notice, includes CNRI.
Guido van Rossum
1996-10-25
21
-269/+416
*
Fixed compare function to do first char comparison in unsigned mode,
Guido van Rossum
1996-10-23
1
-1/+1
*
Support passing in an empty dictionary of keywords to newinstanceobject.
Guido van Rossum
1996-10-21
1
-1/+3
*
Ellipses -> Ellipsis rename (the dictionary really says that it should
Guido van Rossum
1996-10-11
1
-9/+9
*
Fix subtle bug detected by Jim F.
Guido van Rossum
1996-09-30
1
-1/+1
*
Oops... Need to clear c_error before calling c_quot().
Guido van Rossum
1996-09-12
1
-0/+2
*
Properly(?) implemented remainder and divmod (Tim Hochberg)
Guido van Rossum
1996-09-12
1
-5/+34
*
Raise exception instead of dropping imag part for conversion to int,
Guido van Rossum
1996-09-11
1
-11/+9
*
More detailed error message about exception in __del__
Guido van Rossum
1996-09-11
1
-3/+6
*
Correct typo in setattr: return -1 for error, not NULL
Guido van Rossum
1996-09-11
1
-1/+1
*
Multiply by 1000003 instead of 3 in string hach
Guido van Rossum
1996-09-11
1
-1/+1
*
Get rid of bogus MSC_VER undef of CHECK()
Guido van Rossum
1996-09-11
1
-4/+0
*
Don't dump core on complex % or divmod -- raise a TypeError exception.
Guido van Rossum
1996-09-11
1
-2/+14
*
Use getstringsize where available instead of strlen.
Guido van Rossum
1996-08-26
1
-1/+1
*
Be a bit more careful with printing a warning for a failed __del__.
Guido van Rossum
1996-08-22
1
-2/+5
[next]