summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Make dict.keys() and dict.items() comparable to sets, using == and !=.Guido van Rossum2007-02-121-2/+79
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-113-7/+69
* Implement __contains__ for dict_keys and dict_items.Guido van Rossum2007-02-101-26/+56
* Endow dict views with a proper length method.Guido van Rossum2007-02-101-12/+39
* Very preliminary work on dict views.Guido van Rossum2007-02-101-4/+243
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-091-43/+1
* Remove bogus INCREF of ziptuple: it is aMartin v. Löwis2007-02-061-1/+0
* Fix refcounting bugs related to CONVERT_BINOP.Martin v. Löwis2007-02-061-8/+26
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-4/+4
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-014-1/+17
* Merged revisions 53304-53433,53435-53450 via svnmerge fromThomas Wouters2007-01-152-4/+5
* Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact.Guido van Rossum2007-01-151-5/+5
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-1412-253/+472
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-092-6/+29
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-281-0/+71
* Remove PyFloat_AsReprString() and PyFloat_AsString() which should notNeal Norwitz2006-12-281-27/+16
* The opstrings table was backwards. Add an XXX comment.Guido van Rossum2006-12-191-1/+2
* Implement extended slicing in bytes objects.Thomas Wouters2006-12-191-16/+217
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-1315-162/+366
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-289-25/+32
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-272-5/+93
* Get rid of more coerce cruft (really check in this time :-)Neal Norwitz2006-08-293-45/+1
* Get rid of most of the remaining uses of <>. There's still Tools/* thogh.Neal Norwitz2006-08-291-1/+1
* Fix str() and repr() of empty sets.Georg Brandl2006-08-281-4/+15
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-4/+17
* The daily ritual: fix C89 violations.Guido van Rossum2006-08-261-2/+4
* SF patch 1546297 (with some tweaks):Guido van Rossum2006-08-251-0/+171
* Fix a bunch of compiler warnings. In at least one case these were serious bugs!Guido van Rossum2006-08-242-8/+8
* Got test_mutants.py working. One set of changes was straightforward:Guido van Rossum2006-08-241-19/+22
* Implement == and != comparisons for code objects by value.Guido van Rossum2006-08-241-39/+55
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-2413-642/+498
* Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop'Thomas Wouters2006-08-231-0/+2
* Make bytesobject raise ValueError instead of TypeError again (thanks, Nick)Thomas Wouters2006-08-221-4/+4
* remove debugging turd.Thomas Wouters2006-08-211-4/+0
* Change the way __hash__ is inherited; when __eq__ or __cmp__ is overriddenGuido van Rossum2006-08-212-12/+55
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-2113-137/+233
* Fix comparing complex to non-complex numbers.Guido van Rossum2006-08-211-10/+4
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-216-232/+10
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-183-20/+3
* repr() of a long int no longer produces a trailing 'L'.Guido van Rossum2006-08-181-15/+7
* Fix non-C89-compatible syntax.Guido van Rossum2006-08-171-2/+2
* Make the it_index field in the str/unicode iterators Py_ssize_t's.Guido van Rossum2006-08-172-10/+15
* Quite a few fixes to make the library and test suite more robust whenGuido van Rossum2006-08-171-4/+3
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-1710-2217/+288
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-1122-395/+700
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-2717-256/+134
* Merge the rest of the trunk.Thomas Wouters2006-06-087-179/+466
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-0810-561/+684
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-2717-989/+4690
* Adding bytes.join() -- a class methods that concatenates an iterable of bytes.Guido van Rossum2006-05-051-2/+65