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
*
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald
2007-05-18
1
-11/+11
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-0/+18
*
Fix some silly uses of KEYS, ITEMS, VALUES.
Guido van Rossum
2007-02-27
1
-8/+6
*
Add TODO
Neal Norwitz
2007-02-26
1
-0/+8
*
Merged revisions 53875-53911 via svnmerge from
Thomas Wouters
2007-02-25
1
-1/+1
*
Merged revisions 53623-53858 via svnmerge from
Thomas Wouters
2007-02-23
1
-1/+40
*
Make dict.keys() and dict.items() comparable to sets, using == and !=.
Guido van Rossum
2007-02-12
1
-2/+79
*
- PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;
Guido van Rossum
2007-02-11
1
-6/+16
*
Implement __contains__ for dict_keys and dict_items.
Guido van Rossum
2007-02-10
1
-26/+56
*
Endow dict views with a proper length method.
Guido van Rossum
2007-02-10
1
-12/+39
*
Very preliminary work on dict views.
Guido van Rossum
2007-02-10
1
-4/+243
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-3/+21
*
Got test_mutants.py working. One set of changes was straightforward:
Guido van Rossum
2006-08-24
1
-19/+22
*
Restructure comparison dramatically. There is no longer a default
Guido van Rossum
2006-08-24
1
-132/+34
*
Get rid of dict.has_key(). Boy this has a lot of repercussions!
Guido van Rossum
2006-08-18
1
-7/+2
*
Completely get rid of PyClass and PyInstance.
Guido van Rossum
2006-08-17
1
-8/+1
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
1
-2/+5
*
Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn
Thomas Wouters
2006-06-08
1
-113/+195
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-20/+23
*
Oops. Fix syntax for C89 compilers.
Guido van Rossum
2006-02-25
1
-2/+2
*
- Patch 1433928:
Guido van Rossum
2006-02-25
1
-1/+15
*
Revert 42400.
Martin v. Löwis
2006-02-16
1
-1/+1
*
Support %zd in PyErr_Format and PyString_FromFormat.
Martin v. Löwis
2006-02-16
1
-1/+1
*
Get rid of compiler warnings (gcc 3.3.4 on x86)
Neal Norwitz
2006-02-16
1
-1/+1
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-15/+17
*
Renamed _length_cue() to __length_hint__(). See:
Armin Rigo
2006-02-11
1
-2/+2
*
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
[next]