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
*
Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() call...
Raymond Hettinger
2007-03-20
1
-2/+18
*
Fixup set/dict interoperability.
Raymond Hettinger
2007-02-19
1
-0/+11
*
Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().
Raymond Hettinger
2007-02-19
1
-7/+11
*
Bypass set specific optimizations for set and frozenset subclasses.
Raymond Hettinger
2007-02-08
1
-7/+7
*
Bug #1648179: set.update() not recognizing __iter__ overrides in dict subcla...
Raymond Hettinger
2007-02-01
1
-4/+4
*
SF #1486663 -- Allow keyword args in subclasses of set() and frozenset().
Raymond Hettinger
2007-01-11
1
-2/+2
*
For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing.
Raymond Hettinger
2006-12-30
1
-4/+24
*
Port Georg's dictobject.c fix keys that were tuples got unpacked on the way t...
Raymond Hettinger
2006-12-08
1
-1/+15
*
Port Armin's fix for a dict resize vulnerability (svn revision 46589, sf bug ...
Raymond Hettinger
2006-12-08
1
-6/+31
*
Eliminate two redundant calls to PyObject_Hash().
Raymond Hettinger
2006-12-08
1
-4/+23
*
Fix warnings with HP's C compiler. It doesn't recognize that infinite
Neal Norwitz
2006-10-28
1
-0/+2
*
Fix refcounts and add error checks.
Raymond Hettinger
2006-09-07
1
-8/+35
*
[Bug #1414697] Change docstring of set/frozenset types to specify that the co...
Andrew M. Kuchling
2006-07-29
1
-2/+2
*
otherset is known to be non-NULL based on checks before and DECREF after.
Neal Norwitz
2006-07-17
1
-2/+2
*
Use Py_ssize_t
Neal Norwitz
2006-06-19
1
-22/+22
*
Clear dummy and emptyfrozenset, so that we don't have
Martin v. Löwis
2006-04-15
1
-2/+2
*
Ignore the references to the dummy objects used as deleted keys
Armin Rigo
2006-04-12
1
-0/+8
*
Remove "static forward" declaration. Move constructors
Martin v. Löwis
2006-04-11
1
-17/+15
*
SF patch #1458476 with modifications based on discussions in python-dev. This
Barry Warsaw
2006-03-30
1
-1/+68
*
Remove unnecessary casts in type object initializers.
Georg Brandl
2006-03-30
1
-4/+4
*
Tighten an overbroad and misleading assertion.
Raymond Hettinger
2006-03-26
1
-1/+1
*
Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions.
Neal Norwitz
2006-03-04
1
-1/+1
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-18/+19
*
Renamed _length_cue() to __length_hint__(). See:
Armin Rigo
2006-02-11
1
-2/+2
*
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
[next]