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
/
setobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove some shadowed variables
Neal Norwitz
2006-01-08
1
-1/+1
*
Prevent name pollution by making lots of internal functions static.
Neal Norwitz
2005-11-13
1
-1/+1
*
Convert iterator __len__() methods to a private API.
Raymond Hettinger
2005-09-24
1
-7/+12
*
No longer ignore exceptions raised by comparisons during key lookup.
Raymond Hettinger
2005-09-16
1
-48/+44
*
Disallow keyword arguments for type constructors that don't use them.
Georg Brandl
2005-08-26
1
-0/+6
*
* Add a fast equality check path for frozensets where the hash value has
Raymond Hettinger
2005-08-24
1
-5/+8
*
Add shortcuts for a|a and a&a.
Raymond Hettinger
2005-08-17
1
-8/+9
*
Results of a line-by-line comparison back to dictobject.c.
Raymond Hettinger
2005-08-17
1
-127/+121
*
Numerous fix-ups to C API and docs. Added tests for C API.
Raymond Hettinger
2005-08-16
1
-9/+120
*
DECREF --> XDECREF
Raymond Hettinger
2005-08-16
1
-1/+1
*
Add a C API for sets and frozensets.
Raymond Hettinger
2005-08-16
1
-8/+72
*
More function re-ordering (placing like functions together).
Raymond Hettinger
2005-08-13
1
-86/+86
*
* Bring lookkey() and lookkey_string() closer to dict version.
Raymond Hettinger
2005-08-13
1
-93/+77
*
* Fix SF #1257731. Make __contains__(), remove(), and discard() only do
Raymond Hettinger
2005-08-12
1
-26/+30
*
* Add short-circuit code for in-place operations with self (such as
Raymond Hettinger
2005-08-11
1
-89/+153
*
* Bring in INIT_NONZERO_SET_SLOTS macro from dictionary code.
Raymond Hettinger
2005-08-07
1
-18/+51
*
* Removed checked_error flag which no longer provides any benefit.
Raymond Hettinger
2005-08-06
1
-15/+12
*
* set_new() doesn't need to zero the structure a second time after tp_alloc
Raymond Hettinger
2005-08-06
1
-3/+6
*
Factor away a redundant clear() function.
Raymond Hettinger
2005-08-06
1
-13/+6
*
* Improve a variable name: entry0 --> table.
Raymond Hettinger
2005-08-05
1
-39/+58
*
* Move copyright notice to top and indicate derivation from sets.py and
Raymond Hettinger
2005-08-05
1
-22/+17
*
Model set.pop() after dict.popitem().
Raymond Hettinger
2005-08-02
1
-12/+30
*
* Improve code for the empty frozenset singleton:
Raymond Hettinger
2005-08-01
1
-63/+66
*
Fix build on gcc: PySetIter_Type should be static in definition
Hye-Shik Chang
2005-08-01
1
-1/+1
*
Improve variable names.
Raymond Hettinger
2005-07-31
1
-154/+154
*
Fix frozenset() ref count and a comment typo.
Raymond Hettinger
2005-07-31
1
-3/+2
*
Comment on the set_swap_bodies() helper function.
Raymond Hettinger
2005-07-31
1
-0/+13
*
Revised the set() and frozenset() implementaion to use its own internal
Raymond Hettinger
2005-07-31
1
-211/+863
*
SF patch #1200018: Restore GC support to set objects
Raymond Hettinger
2005-06-18
1
-7/+24
*
SF 1062353: set pickling problems
Raymond Hettinger
2004-11-09
1
-2/+9
*
Use Py_CLEAR(). Add unrelated test.
Raymond Hettinger
2004-09-28
1
-1/+1
*
Moved SunPro warning suppression into pyport.h and out of individual
Nicholas Bastin
2004-07-15
1
-4/+0
*
Fixed end-of-loop code not reached warning when using SunPro C
Nicholas Bastin
2004-06-17
1
-0/+4
*
Remove a function no longer in use.
Raymond Hettinger
2004-06-14
1
-8/+0
*
Remove unnecessary GC support. Sets cannot have cycles.
Raymond Hettinger
2004-06-13
1
-16/+7
*
Futher improvements to frozenset hashing (based on Yitz Gale's battery of
Raymond Hettinger
2004-06-10
1
-8/+10
*
Fixups to the hash function for frozensets.
Raymond Hettinger
2004-06-10
1
-1/+4
*
Make sets and deques weak referencable.
Raymond Hettinger
2004-05-30
1
-4/+8
*
The copy module now handles sets directly. The __copy__ methods are no
Raymond Hettinger
2004-03-08
1
-4/+0
*
* Simplify and speedup logic for tp_print.
Raymond Hettinger
2003-12-31
1
-15/+29
*
Speedup set.update by using the override mode for PyDict_Merge().
Raymond Hettinger
2003-12-15
1
-1/+1
*
Improve algorithm for set.difference when the input is not a set.
Raymond Hettinger
2003-12-15
1
-43/+43
*
* Refactor set.__contains__()
Raymond Hettinger
2003-12-13
1
-21/+10
*
Refactor set.discard() and set.remove().
Raymond Hettinger
2003-12-13
1
-31/+22
*
Use dictionary specific looping idiom where possible.
Raymond Hettinger
2003-12-13
1
-114/+40
*
* Added a new method flag, METH_COEXIST.
Raymond Hettinger
2003-12-13
1
-0/+26
*
Expose dict_contains() and PyDict_Contains() with is about 10% faster
Raymond Hettinger
2003-11-25
1
-9/+9
*
Factor out more duplicate code.
Raymond Hettinger
2003-11-24
1
-77/+51
*
Stop GCC warning about int literal that's so long that it becomes an
Guido van Rossum
2003-11-24
1
-1/+1
*
* Checkin remaining documentation
Raymond Hettinger
2003-11-24
1
-137/+148
[next]