summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first...Georg Brandl2006-06-092-80/+140
* Fix inconsistency in naming within an enum.Brett Cannon2006-06-091-12/+12
* Buffer objects would return the read or write buffer for a wrapped object whenBrett Cannon2006-06-081-22/+71
* Bug #1502805: don't alias file.__exit__ to file.close since theGeorg Brandl2006-06-081-1/+18
* (arre, arigo) SF bug #1350060Armin Rigo2006-06-082-10/+33
* Fix coding style guide bug.Brett Cannon2006-06-061-1/+2
* Repair refleaks in unicodeobject.Georg Brandl2006-06-041-0/+3
* Patch #1359618: Speed-up charmap encoder.Martin v. Löwis2006-06-041-49/+285
* SF #1499797, Fix for memory leak in WindowsError_strNeal Norwitz2006-06-041-1/+0
* _PyObject_DebugMalloc(): The return value should addTim Peters2006-06-041-1/+1
* In a PYMALLOC_DEBUG build obmalloc adds extra debugging infoTim Peters2006-06-041-116/+124
* Fix memory leak found by valgrind.Neal Norwitz2006-06-021-1/+0
* Armin committed his patch while I was reviewing it (I'm sureTim Peters2006-06-011-28/+40
* [ 1497053 ] Let dicts propagate the exceptions in user __eq__().Armin Rigo2006-06-011-50/+107
* Correctly allocate complex types with tp_alloc. (bug #1498638)Georg Brandl2006-06-011-2/+2
* Correctly unpickle 2.4 exceptions via __setstate__ (patch #1498571)Georg Brandl2006-06-011-0/+24
* Remove ; at end of macro. There was a compiler recently that warnedNeal Norwitz2006-06-011-1/+1
* changed count to return 0 for slices outside the source stringFredrik Lundh2006-05-301-1/+1
* changed find/rfind to return -1 for matches outside the source stringFredrik Lundh2006-05-301-10/+11
* PyLong_FromString(): Continued fraction analysis (explained inTim Peters2006-05-301-3/+74
* Do the check for no keyword arguments in __init__ so thatGeorg Brandl2006-05-301-3/+3
* Disallow keyword args for exceptions.Georg Brandl2006-05-301-0/+3
* Add a test case for exception pickling. args is never NULL.Georg Brandl2006-05-301-11/+8
* Restore exception pickle support. #1497319.Georg Brandl2006-05-301-1/+11
* dict_print(): So that Neal & I don't spend the rest ofTim Peters2006-05-301-4/+5
* dict_print(): Explicitly narrow the return valueTim Peters2006-05-301-1/+1
* No DOWNCAST is required since sizeof(Py_ssize_t) >= sizeof(int) and Py_ReprEn...Neal Norwitz2006-05-301-1/+1
* Use Py_SAFE_DOWNCAST for safety. Fix format strings. Remove 2 more stray | ...Neal Norwitz2006-05-301-6/+6
* Remove stray | in commentNeal Norwitz2006-05-301-1/+1
* Convert relevant dict internals to Py_ssize_t.Tim Peters2006-05-301-43/+55
* fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying onFredrik Lundh2006-05-291-1/+4
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-1/+1
* Correct some value converting strangenesses.Georg Brandl2006-05-292-3/+3
* Fix refleak in socketmodule. Replace bogus Py_BuildValue calls.Georg Brandl2006-05-291-0/+1
* Make last patch valid C89 so Windows compilers can deal with it.Thomas Wouters2006-05-281-1/+2
* use the UnicodeError traversal and clearing functions in UnicodeErrorMichael W. Hudson2006-05-281-4/+4
* Fix refleaks in UnicodeError get and set methods.Georg Brandl2006-05-281-45/+56
* Quality control, meet exceptions.c, round two.Michael W. Hudson2006-05-281-222/+165
* Quality control, meet exceptions.c.Michael W. Hudson2006-05-281-128/+105
* needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only),Fredrik Lundh2006-05-281-37/+37
* move semicolonsRichard Jones2006-05-271-53/+51
* doc string additions and tweaksRichard Jones2006-05-271-8/+21
* needforspeed: stringlib refactoring: use find_slice for stringobjectFredrik Lundh2006-05-271-12/+15
* needforspeed: stringlib refactoring: changed find_obj to find_slice,Fredrik Lundh2006-05-272-36/+69
* needforspeed: replace improvements, changed to Py_LOCAL_INLINEFredrik Lundh2006-05-276-41/+55
* Remove spurious semicolons after macro invocations.Georg Brandl2006-05-271-42/+42
* cleanup - removed trailing whitespaceAndrew Dalke2006-05-271-1/+1
* Conversion of exceptions over from faked-up classes to new-style C types.Richard Jones2006-05-271-0/+2130
* Revert bogus change committed in 46432 to this file.Martin v. Löwis2006-05-271-1/+0
* fixed typoAndrew Dalke2006-05-271-1/+1