| Commit message (Expand) | Author | Age | Files | Lines |
* | Do a better job of not inlining Py_ADDRESS_IN_RANGE() for newer gcc's. | Neal Norwitz | 2005-11-13 | 1 | -2/+9 |
|
|
* | Prevent name pollution by making lots of internal functions static. | Neal Norwitz | 2005-11-13 | 1 | -1/+1 |
|
|
* | Added proper reflection on instances of <type 'method-wrapper'>, e.g. | Armin Rigo | 2005-11-07 | 1 | -13/+46 |
|
|
* | Another comment typo fix | Andrew M. Kuchling | 2005-11-02 | 1 | -1/+1 |
|
|
* | Fix typo in comment. | Walter Dörwald | 2005-11-02 | 1 | -1/+1 |
|
|
* | Remove .cvsignore files, as they live in svn:ignore | Martin v. Löwis | 2005-10-30 | 1 | -2/+0 |
|
|
* | fix typos, mostly in comments | Fred Drake | 2005-10-28 | 1 | -2/+2 |
|
|
* | Fix a bunch of imports to use code.h instead of compile.h. | Jeremy Hylton | 2005-10-21 | 1 | -1/+0 |
|
|
* | Fix bug: | Michael W. Hudson | 2005-10-21 | 2 | -8/+0 |
|
|
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 4 | -11/+461 |
|
|
* | Enhance the performance of two important Unicode character | Marc-André Lemburg | 2005-10-20 | 1 | -10/+52 |
|
|
* | SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. Wi... | Neal Norwitz | 2005-10-20 | 1 | -0/+2 |
|
|
* | Whitespace corrections. | Marc-André Lemburg | 2005-10-19 | 1 | -19/+19 |
|
|
* | Bug fix for [ 1331062 ] utf 7 codec broken. | Marc-André Lemburg | 2005-10-19 | 1 | -8/+16 |
|
|
* | Part of SF patch #1313939: Speedup charmap decoding by extending | Walter Dörwald | 2005-10-06 | 1 | -75/+107 |
|
|
* | Fix PyString_Format so that the "%s" format works again when Unicode is not | Georg Brandl | 2005-10-01 | 1 | -0/+2 |
|
|
* | (pedronis, arigo) | Armin Rigo | 2005-09-24 | 1 | -1/+1 |
|
|
* | Convert iterator __len__() methods to a private API. | Raymond Hettinger | 2005-09-24 | 8 | -75/+111 |
|
|
* | The key to the various sort columns got lost. Pulled from | Skip Montanaro | 2005-09-23 | 1 | -0/+10 |
|
|
* | - On 64-bit platforms, when __len__() returns a value that cannot be | Guido van Rossum | 2005-09-20 | 2 | -2/+12 |
|
|
* | A minor fix for 64-bit platforms: when __len__() returns Python int | Guido van Rossum | 2005-09-19 | 1 | -1/+11 |
|
|
* | No longer ignore exceptions raised by comparisons during key lookup. | Raymond Hettinger | 2005-09-16 | 1 | -48/+44 |
|
|
* | patch [ 1118729 ] Error in representation of complex numbers(again) | Georg Brandl | 2005-09-16 | 1 | -6/+3 |
|
|
* | 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 |
|
|