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
/
dictobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed English in a comment; trimmed trailing whitespace;
Tim Peters
2006-01-01
1
-11/+11
*
Convert iterator __len__() methods to a private API.
Raymond Hettinger
2005-09-24
1
-9/+18
*
Fix nits.
Raymond Hettinger
2005-08-17
1
-2/+2
*
SF patch #1200051: Small optimization for PyDict_Merge()
Raymond Hettinger
2005-05-14
1
-0/+6
*
SF bug #1183742: PyDict_Copy() can return non-NULL value on error
Raymond Hettinger
2005-04-15
1
-1/+1
*
Code simplification -- eliminate lookup when value is known in advance.
Raymond Hettinger
2005-02-05
1
-2/+4
*
Moved SunPro warning suppression into pyport.h and out of individual
Nicholas Bastin
2004-07-15
1
-4/+0
*
Disabling end-of-loop code not reached warning on SunPro
Nicholas Bastin
2004-06-18
1
-0/+4
*
Update docstring for dict.update() to match the new realities.
Walter Dörwald
2004-05-28
1
-1/+2
*
* Add unittests for iterators that report their length
Raymond Hettinger
2004-04-12
1
-7/+7
*
GCC was complaining that 'value' in dictiter_iternextvalue() wasn't
Guido van Rossum
2004-03-20
1
-5/+6
*
Factor out a double lookup.
Raymond Hettinger
2004-03-19
1
-2/+1
*
Make the new dictionary iterators transparent with respect to length.
Raymond Hettinger
2004-03-18
1
-4/+20
*
Optimize dictionary iterators.
Raymond Hettinger
2004-03-18
1
-57/+202
*
Dictionary optimizations:
Raymond Hettinger
2004-03-17
1
-24/+61
*
Factor out code common to PyDict_Copy() and PyDict_Merge().
Raymond Hettinger
2004-03-08
1
-20/+6
*
SF #904720: dict.update should take a 2-tuple sequence like dict.__init_
Raymond Hettinger
2004-03-04
1
-18/+24
*
Oops. Return -1 to distinguish error from empty dict.
Jeremy Hylton
2004-02-17
1
-1/+1
*
Simplify previous checkin -- a new function was not needed.
Raymond Hettinger
2003-12-13
1
-26/+1
*
* Added a new method flag, METH_COEXIST.
Raymond Hettinger
2003-12-13
1
-0/+34
*
Expose dict_contains() and PyDict_Contains() with is about 10% faster
Raymond Hettinger
2003-11-25
1
-3/+4
*
SF patch #798467: Update docstring of has_key for bool changes
Raymond Hettinger
2003-09-01
1
-1/+1
*
SF patch #729395: Dictionary tuning
Raymond Hettinger
2003-05-07
1
-2/+2
*
SF patch #729395: Dictionary tuning
Raymond Hettinger
2003-05-05
1
-10/+16
*
Add a reference to dictnotes.txt. It does no good if you don't know it's
Raymond Hettinger
2003-05-03
1
-0/+6
*
Renamed PyObject_GenericGetIter to PyObject_SelfIter
Raymond Hettinger
2003-03-17
1
-1/+1
*
Created PyObject_GenericGetIter().
Raymond Hettinger
2003-03-17
1
-8/+1
*
SF patch #693753: fix for bug 639806: default for dict.pop
Raymond Hettinger
2003-03-06
1
-3/+15
*
Add closing ) in comment
Neal Norwitz
2003-02-15
1
-1/+1
*
cPickle.c, load_build(): Taught cPickle how to pick apart
Tim Peters
2003-02-15
1
-1/+11
*
SF patch #659536: Use PyArg_UnpackTuple where possible.
Raymond Hettinger
2002-12-29
1
-4/+4
*
Constify char* API. Fixes #651363. 2.2 candidate.
Martin v. Löwis
2002-12-11
1
-3/+3
*
SF 548651: Fix the METH_CLASS implementation.
Tim Peters
2002-12-09
1
-3/+2
*
Remove assumption that cls is a subclass of dict.
Raymond Hettinger
2002-12-07
1
-7/+1
*
Replace BadInternalCall with TypeError. Add a test case. Fix whitespace.
Raymond Hettinger
2002-12-04
1
-2/+3
*
Add missing decref
Neal Norwitz
2002-11-27
1
-0/+1
*
SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class
Raymond Hettinger
2002-11-27
1
-0/+56
*
Patch #642500 with slight modifications: allow keyword arguments in
Just van Rossum
2002-11-23
1
-5/+7
*
In doc strings, use 'k in D' rather than D.has_key(k).
Guido van Rossum
2002-09-04
1
-2/+2
*
SF patch 576101, by Oren Tirosh: alternative implementation of
Guido van Rossum
2002-08-19
1
-9/+3
*
staticforward bites the dust.
Jeremy Hylton
2002-07-17
1
-1/+1
*
Make StopIteration a sink state. This is done by clearing out the
Guido van Rossum
2002-07-16
1
-28/+11
*
Patch #568124: Add doc string macros.
Martin v. Löwis
2002-06-13
1
-30/+30
*
Add Raymond Hettinger's d.pop(). See SF patch 539949.
Guido van Rossum
2002-04-12
1
-0/+38
*
PyObject_GC_Del and PyObject_Del can now be used as a function
Neil Schemenauer
2002-04-12
1
-3/+3
*
Add the 'bool' type and its values 'False' and 'True', as described in
Guido van Rossum
2002-04-03
1
-1/+1
*
Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols.
Tim Peters
2002-03-29
1
-34/+8
*
This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction).
Guido van Rossum
2002-03-28
1
-1/+1
*
Use pymalloc if it's enabled.
Neil Schemenauer
2002-03-22
1
-2/+2
*
SF bug #491415 PyDict_UpdateFromSeq2() unused
Tim Peters
2001-12-11
1
-8/+2
[next]