| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Trimmed trailing whitespace. | Tim Peters | 2004-08-08 | 1 | -5/+5 |
|
|
* | This was quite a dark bug in my recent in-place string concatenation | Armin Rigo | 2004-08-07 | 1 | -1/+2 |
|
|
* | Fixed some compiler warnings. | Armin Rigo | 2004-08-07 | 1 | -2/+2 |
|
|
* | Subclasses of string can no longer be interned. The semantics of | Jeremy Hylton | 2004-08-07 | 1 | -22/+12 |
|
|
* | SF bug #1004669: Type returned from .keys() is not checked | Raymond Hettinger | 2004-08-07 | 1 | -0/+5 |
|
|
* | SF #989185: Drop unicode.iswide() and unicode.width() and add | Hye-Shik Chang | 2004-08-04 | 3 | -437/+299 |
|
|
* | Be more careful about maintaining the invariants; it was actually | Fred Drake | 2004-08-03 | 1 | -3/+25 |
|
|
* | Repair the same thinko in two places about handling of _Py_RefTotal in | Michael W. Hudson | 2004-08-03 | 2 | -10/+12 |
|
|
* | Tweak previous patch to silence a warning about the unused left value in the | Brett Cannon | 2004-08-03 | 1 | -1/+1 |
|
|
* | Add a missing decref. | Michael W. Hudson | 2004-08-02 | 1 | -0/+1 |
|
|
* | list_ass_slice(): Document the obscure new intent that deleting a slice | Tim Peters | 2004-07-31 | 1 | -8/+16 |
|
|
* | list_ass_slice(): The difference between "recycle" and "recycled" was | Tim Peters | 2004-07-31 | 1 | -17/+10 |
|
|
* | Armin asked for a list_ass_slice review in his checkin, so here's the | Tim Peters | 2004-07-31 | 1 | -26/+44 |
|
|
* | This is a reorganization of list_ass_slice(). It should probably be reviewed, | Armin Rigo | 2004-07-30 | 1 | -22/+20 |
|
|
* | What if you call lst.__init__() while it is being sorted? :-) | Armin Rigo | 2004-07-30 | 1 | -2/+4 |
|
|
* | * Simplify and speed-up list_resize(). Relying on the newly documented | Raymond Hettinger | 2004-07-29 | 1 | -3/+7 |
|
|
* | * drop the unreasonable list invariant that ob_item should never come back | Armin Rigo | 2004-07-29 | 1 | -28/+46 |
|
|
* | Minor memory leak. | Armin Rigo | 2004-07-29 | 1 | -0/+2 |
|
|
* | Fix obscure breakage (relative to 2.3) in listsort: the test for list | Tim Peters | 2004-07-29 | 1 | -26/+12 |
|
|
* | Trimmed trailing whitespace. | Tim Peters | 2004-07-29 | 1 | -21/+21 |
|
|
* | PyList_New(): we went to all the trouble of computing and bounds-checking | Tim Peters | 2004-07-29 | 1 | -1/+2 |
|
|
* | Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__(). | Marc-André Lemburg | 2004-07-23 | 1 | -10/+12 |
|
|
* | Check the type of values returned by __int__, __float__, __long__, | Neil Schemenauer | 2004-07-19 | 2 | -12/+33 |
|
|
* | Moved SunPro warning suppression into pyport.h and out of individual | Nicholas Bastin | 2004-07-15 | 4 | -16/+0 |
|
|
* | Fix a copy&paste typo. | Marc-André Lemburg | 2004-07-10 | 1 | -1/+1 |
|
|
* | .encode()/.decode() patch part 2. | Marc-André Lemburg | 2004-07-08 | 2 | -0/+20 |
|
|
* | Allow string and unicode return types from .encode()/.decode() | Marc-André Lemburg | 2004-07-08 | 2 | -7/+119 |
|
|
* | Fix a couple of signed/unsigned comparison warnings | Neal Norwitz | 2004-07-08 | 1 | -1/+1 |
|
|
* | Remove unused macros in .c files | Neal Norwitz | 2004-07-08 | 2 | -4/+0 |
|
|
* | SF bug #978308, Spurious errors taking bool of dead pro | Neal Norwitz | 2004-07-08 | 1 | -1/+1 |
|
|
* | Make weak references subclassable: | Fred Drake | 2004-07-02 | 2 | -68/+183 |
|
|
* | SF Bug #215126: Over restricted type checking on eval() function | Raymond Hettinger | 2004-07-02 | 2 | -7/+10 |
|
|
* | sizeof(char) is 1, by definition, so get rid of that expression in | Tim Peters | 2004-06-27 | 1 | -12/+7 |
|
|
* | Patch #966493: Cleanup generator/eval_frame exposure. | Martin v. Löwis | 2004-06-27 | 1 | -1/+1 |
|
|
* | SF bug #980419: int left-shift causes memory leak | Raymond Hettinger | 2004-06-26 | 1 | -4/+26 |
|
|
* | Cosmetic spacing fix. | Raymond Hettinger | 2004-06-25 | 1 | -1/+1 |
|
|
* | Fix leak found by Eric Huss. | Raymond Hettinger | 2004-06-25 | 1 | -1/+6 |
|
|
* | Disabling end-of-loop code not reached warning on SunPro | Nicholas Bastin | 2004-06-18 | 1 | -0/+4 |
|
|
* | Fixed end-of-loop code not reached warning when using SunPro C | Nicholas Bastin | 2004-06-17 | 3 | -0/+12 |
|
|
* | Remove a function no longer in use. | Raymond Hettinger | 2004-06-14 | 1 | -8/+0 |
|
|
* | Remove unnecessary GC support. Sets cannot have cycles. | Raymond Hettinger | 2004-06-13 | 1 | -16/+7 |
|
|
* | * Factor out PyObject_SelfIter(). | Raymond Hettinger | 2004-06-12 | 1 | -9/+3 |
|
|
* | Fix for bug #966623 - classes created with type() in an exec(, {}) don't | Anthony Baxter | 2004-06-11 | 1 | -0/+4 |
|
|
* | dump HAVE_FOPENRF stuff - obsolete | Skip Montanaro | 2004-06-11 | 1 | -26/+19 |
|
|
* | Futher improvements to frozenset hashing (based on Yitz Gale's battery of | Raymond Hettinger | 2004-06-10 | 1 | -8/+10 |
|
|
* | Fixups to the hash function for frozensets. | Raymond Hettinger | 2004-06-10 | 1 | -1/+4 |
|
|
* | Add a final permutation step to the tuple hash function. | Raymond Hettinger | 2004-06-10 | 1 | -0/+1 |
|
|
* | Patch #774665: Make Python LC_NUMERIC agnostic. | Martin v. Löwis | 2004-06-08 | 3 | -13/+20 |
|
|
* | whoops, I wanted that commented out by default, will add doc to Misc | Neal Norwitz | 2004-06-06 | 1 | -1/+1 |
|
|
* | SF bug 881641, make it easier to use valgrind | Neal Norwitz | 2004-06-06 | 1 | -4/+39 |
|
|