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 more cruft leftover from nb_coerce. Rename nb_coerce to
Neil Schemenauer
2007-09-21
1
-1/+1
*
Patch by Keir Mierle so that sets can be compared to other objects that know
Guido van Rossum
2007-08-23
1
-6/+2
*
Convert a bunch of constant strings in C to unicode.
Neal Norwitz
2007-08-23
1
-1/+1
*
Change the repr() of frozenset instances (and set subclasses)
Guido van Rossum
2007-08-07
1
-22/+24
*
Kill all uses and definitions of tp_print under Objects/. (Others will follow.)
Guido van Rossum
2007-08-07
1
-46/+2
*
Fix merge breakage.
Martin v. Löwis
2007-07-21
1
-4/+4
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-27/+24
*
Add a format specifier %R to PyUnicode_FromFormat(), which embeds
Walter Dörwald
2007-05-19
1
-25/+20
*
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald
2007-05-18
1
-10/+27
*
Merged revisions 55228 via svnmerge from
Guido van Rossum
2007-05-10
1
-3/+3
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-2/+18
*
Merged revisions 53623-53858 via svnmerge from
Thomas Wouters
2007-02-23
1
-14/+29
*
Merged revisions 53538-53622 via svnmerge from
Thomas Wouters
2007-02-05
1
-4/+4
*
Merged revisions 53304-53433,53435-53450 via svnmerge from
Thomas Wouters
2007-01-15
1
-2/+2
*
Merged revisions 53005-53303 via svnmerge from
Thomas Wouters
2007-01-09
1
-5/+28
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-18/+105
*
- patch #1600346 submitted by Tomer Filiba
Jack Diederich
2006-11-28
1
-2/+2
*
Fix str() and repr() of empty sets.
Georg Brandl
2006-08-28
1
-4/+15
*
SF patch 1547796 by Georg Brandl -- set literals.
Guido van Rossum
2006-08-28
1
-4/+17
*
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
-26/+26
*
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum
2006-07-27
1
-2/+2
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-25/+98
*
Get rid of remnants of integer division
Neal Norwitz
2006-03-24
1
-3/+0
*
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
[next]