| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix bug in last checkin (2.231). To match previous behavior, unicode | Neil Schemenauer | 2005-08-31 | 1 | -0/+5 |
|
|
* | SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain | Walter Dörwald | 2005-08-30 | 1 | -0/+75 |
|
|
* | Disallow keyword arguments for type constructors that don't use them. | Georg Brandl | 2005-08-26 | 4 | -1/+16 |
|
|
* | * Add a fast equality check path for frozensets where the hash value has | Raymond Hettinger | 2005-08-24 | 1 | -5/+8 |
|
|
* | SF bug #1242657: list(obj) can swallow KeyboardInterrupt | Raymond Hettinger | 2005-08-21 | 2 | -0/+10 |
|
|
* | Add shortcuts for a|a and a&a. | Raymond Hettinger | 2005-08-17 | 1 | -8/+9 |
|
|
* | Fix nits. | Raymond Hettinger | 2005-08-17 | 1 | -2/+2 |
|
|
* | 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 a too-aggressive assert (see SF#1257960). Previously, gen_iternext | Phillip J. Eby | 2005-08-13 | 1 | -1/+1 |
|
|
* | * Fix SF #1257731. Make __contains__(), remove(), and discard() only do | Raymond Hettinger | 2005-08-12 | 1 | -26/+30 |
|
|
* | Change the %s format specifier for str objects so that it returns a | Neil Schemenauer | 2005-08-12 | 2 | -17/+33 |
|
|
* | * 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 |
|
|
* | PEP 342 implementation. Per Guido's comments, the generator throw() | Phillip J. Eby | 2005-08-02 | 1 | -5/+234 |
|
|
* | * 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 bug #1238681: freed pointer is used in longobject.c:long_pow(). | Tim Peters | 2005-07-17 | 1 | -5/+8 |
|
|
* | Fix: | Michael W. Hudson | 2005-07-12 | 1 | -8/+13 |
|
|
* | SF bug 1185883: PyObject_Realloc can't safely take over a block currently | Tim Peters | 2005-07-10 | 1 | -27/+23 |
|
|
* | Apparently some compiler gives a warning on | Michael W. Hudson | 2005-06-30 | 1 | -1/+1 |
|
|
* | SF bug #1224347: int/long unification and hex() | Raymond Hettinger | 2005-06-29 | 2 | -13/+7 |
|
|
* | Insert missing flag. | Raymond Hettinger | 2005-06-19 | 1 | -1/+1 |
|
|
* | SF patch #1200018: Restore GC support to set objects | Raymond Hettinger | 2005-06-18 | 1 | -7/+24 |
|
|
* | fix object.__divmod__.__doc__ | Anthony Baxter | 2005-06-03 | 1 | -2/+8 |
|
|
* | This is my patch: | Michael W. Hudson | 2005-05-27 | 1 | -239/+509 |
|
|
* | Disallow opening files with modes 'aU' or 'wU' as specified by PEP | Skip Montanaro | 2005-05-20 | 1 | -0/+51 |
|
|
* | Fixed a quite misleading comment: a "not" should not have been there. | Armin Rigo | 2005-05-15 | 1 | -1/+1 |
|
|
* | SF patch #1200051: Small optimization for PyDict_Merge() | Raymond Hettinger | 2005-05-14 | 1 | -0/+6 |
|
|
* | Make subclasses of int, long, complex, float, and unicode perform type | Brett Cannon | 2005-04-26 | 5 | -75/+73 |
|
|
* | As per discussion on python-dev, descriptors defined in C with a NULL setter | Barry Warsaw | 2005-04-19 | 1 | -2/+2 |
|
|
* | SF bug #1183742: PyDict_Copy() can return non-NULL value on error | Raymond Hettinger | 2005-04-15 | 1 | -1/+1 |
|
|
* | Fix for rather inaccurately titled bug | Michael W. Hudson | 2005-03-30 | 1 | -0/+6 |
|
|
* | SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. | Raymond Hettinger | 2005-03-27 | 1 | -5/+1 |
|
|
* | SF bug #1155938: Missing None check for __init__(). | Raymond Hettinger | 2005-03-03 | 1 | -0/+6 |
|
|
* | Revert previous checkin on getargs 'L' code. Try to convert all | Martin v. Löwis | 2005-03-03 | 1 | -1/+22 |
|
|