- 901c997 Issue 3048: Fixed sys.getsizeof for unicode objects. by Robert Schuppenies · 16 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
- dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
- 30fadc1 #2999: fix name of third parameter in unicode.replace()'s docstring. by Georg Brandl · 16 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- 3497f94 First step of the C API rename: by Christian Heimes · 16 years ago
- ecbbd94 #2809 followup: even better split docstring. by Georg Brandl · 16 years ago
- dfb77db #2809: elaborate str.split docstring a bit. by Georg Brandl · 16 years ago
- 2ea2968 get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code. by Gregory P. Smith · 17 years ago
- c00eb73 Raise SystemError when size < 0 is passed into PyString_FromStringAndSize, by Gregory P. Smith · 17 years ago
- d918e4e Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4. by Martin v. Löwis · 17 years ago
- d183bdd Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. by Neal Norwitz · 17 years ago
- 231346e Fix warnings about using char as an array subscript. This is not portable by Neal Norwitz · 17 years ago
- 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
- 4677fbf7 Try to fix a bunch of compiler warnings on Win64. by Neal Norwitz · 17 years ago
- fac02fa Issue2469: Correct a typo I introduced at r61793: compilation error with UCS4 builds. by Amaury Forgeot d'Arc · 17 years ago
- 9a0d346 #1477: ur'\U0010FFFF' raised in narrow unicode builds. by Amaury Forgeot d'Arc · 17 years ago
- ade57d0 Remove compiler warnings (on Alpha at least) about using chars as by Neal Norwitz · 17 years ago
- 419fd49 Issue 2321: reduce memory usage (increase the memory that is returned by Neal Norwitz · 17 years ago
- 5bdff60 Fix the overflows in expandtabs(). "This time for sure!" (Exploit at request.) by Guido van Rossum · 17 years ago
- c11cecf Issue 1742669. Now %d accepts very big float numbers. Thanks Gabriel Genellina. by Facundo Batista · 17 years ago
- a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
- 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 17 years ago
- 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
- 4d4f270 Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detection. The speedup is about 25% for split() (571 / 457 usec) and 35% (175 / 127 usec )for splitlines() by Christian Heimes · 17 years ago
- 7f39c9f Backport of several functions from Python 3.0 to 2.6 including PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray type and _fileio module. They should also make it easier to port C to 3.0. by Christian Heimes · 17 years ago
- 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 17 years ago
- e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
- 5087980 The incremental decoder for utf-7 must preserve its state between calls. by Amaury Forgeot d'Arc · 17 years ago
- 6f7e6fb Made _ParseTupleFinds only defined to unicodeobject.c by Facundo Batista · 17 years ago
- 57d5669 Now in find, rfind, index, and rindex, you can use None as defaults, by Facundo Batista · 17 years ago
- 1c1ac38 Backport fixes for the code that decodes octal escapes (and for PyString by Guido van Rossum · 17 years ago
- 9d04542 Set startinpos before calling the error handler. by Walter Dörwald · 17 years ago
- 8757878 Rewrap line. by Walter Dörwald · 17 years ago
- 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 17 years ago
- 9ab80a9 Move another variable declaration up. by Walter Dörwald · 17 years ago
- 20b40d3 Move variable declaration up. by Walter Dörwald · 17 years ago
- 6e39080 Backport r57105 and r57145 from the py3k branch: UTF-32 codecs. by Walter Dörwald · 17 years ago
- 9efd9b6 Bug #1763149: use proper slice syntax in docstring. (backport) by Georg Brandl · 17 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
- 7c3b50d Patch #1673759: add a missing overflow check when formatting floats with %G. by Georg Brandl · 17 years ago
- 5c9a81a Fix a bug when there was a newline in the string expandtabs was called on. by Neal Norwitz · 17 years ago
- 7dbd2a3 Prevent expandtabs() on string and unicode objects from causing a segfault when by Neal Norwitz · 17 years ago
- ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
- 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
- a0c95fa Fix endcase for str.rpartition() by Raymond Hettinger · 18 years ago
- 17753ec Patch #1541585: fix buffer overrun when performing repr() on by Neal Norwitz · 18 years ago
- 3a45779 Correct an accidentally removed previous patch. by Marc-André Lemburg · 18 years ago
- 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 18 years ago
- 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
- e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 18 years ago
- d825143 Patch #1455898: Incremental mode for "mbcs" codec. by Martin v. Löwis · 18 years ago
- de4c78a Initialize the type object so pychecker can't crash the interpreter. by Neal Norwitz · 18 years ago
- 90e27d3 Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. by Georg Brandl · 18 years ago
- 2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. by Georg Brandl · 18 years ago
- 9f16760 Repair refleaks in unicodeobject. by Georg Brandl · 18 years ago
- 3f76779 Patch #1359618: Speed-up charmap encoder. by Martin v. Löwis · 18 years ago
- 60d8b18 needforspeed: stringlib refactoring: changed find_obj to find_slice, by Fredrik Lundh · 18 years ago
- c2d29c5 needforspeed: replace improvements, changed to Py_LOCAL_INLINE where appropriate by Fredrik Lundh · 18 years ago
- 2e3f6b7 Revert bogus change committed in 46432 to this file. by Martin v. Löwis · 18 years ago
- e0df762 fixed typo by Andrew Dalke · 18 years ago
- 2d23d5b needforspeed: more stringlib refactoring by Fredrik Lundh · 18 years ago
- d004fc8 Patch 1494554: Update numeric properties to Unicode 4.1. by Martin v. Löwis · 18 years ago
- d1b6cd7 Fix Coverity warnings. by Neal Norwitz · 18 years ago
- 07bbfc6 Comment typo by Andrew M. Kuchling · 18 years ago
- e6e43c8 needforspeed: stringlib refactoring: use stringlib/find for string find by Fredrik Lundh · 18 years ago
- c816281 needforspeed: use a macro to fix slice indexes by Fredrik Lundh · 18 years ago
- ce4eccb needforspeed: stringlib refactoring: use stringlib/find for unicode find by Fredrik Lundh · 18 years ago
- 58b5e84 needforspeed: stringlib refactoring, continued. added count and by Fredrik Lundh · 18 years ago
- 9c0e9c0 needspeed: rpartition documentation, tests, and a bug fixes. by Fredrik Lundh · 18 years ago
- b3167cb needforspeed: added rpartition implementation by Fredrik Lundh · 18 years ago
- b947948 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 18 years ago
- a50d201 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 18 years ago
- 95e2a91 use Py_LOCAL also for string and unicode objects by Fredrik Lundh · 18 years ago
- f2c0dfd needforspeed: use Py_ssize_t for the fastsearch counter and skip by Fredrik Lundh · 18 years ago
- 450277f needforspeed: use METH_O for argument handling, which made partition some by Fredrik Lundh · 18 years ago
- 06a69dd needforspeed: partition implementation, part two. by Fredrik Lundh · 18 years ago
- b552c4d Code had returned an ssize_t, upcast to long, then converted with PyInt_FromLong. by Andrew Dalke · 18 years ago
- 0c71f88 needforspeed: check for overflow in replace (from Andrew Dalke) by Fredrik Lundh · 18 years ago
- 347ee27 needforspeed: refactored the replace code slightly; special-case by Fredrik Lundh · 18 years ago
- d5e0dc5 needforspeedindeed: use fastsearch also for __contains__ by Fredrik Lundh · 18 years ago
- 6471ee4 needforspeed: use "fastsearch" for count and findstring helpers. this by Fredrik Lundh · 18 years ago
- 240bf2a use Py_ssize_t for string indexes (thanks, neal!) by Fredrik Lundh · 18 years ago
- 7763351 return 0 on misses, not -1. by Fredrik Lundh · 18 years ago
- b63588c needforspeed: use append+reverse for rsplit, use "bloom filters" to by Fredrik Lundh · 18 years ago
- 833bf94 needforspeed: fixed unicode "in" operator to use same implementation by Fredrik Lundh · 18 years ago
- 1bacc64 unicode_repeat(): Change type of local to Py_ssize_t, by Tim Peters · 18 years ago
- 286085c PyUnicode_Join(): Recent code changes introduced new by Tim Peters · 18 years ago
- 8a8e05a needforspeed: use memcpy for "long" strings; use a better algorithm by Fredrik Lundh · 18 years ago
- f1d60a5 needforspeed: speed up unicode repeat, unicode string copy by Fredrik Lundh · 18 years ago
- 763b50f docstring tweaks: count counts non-overlapping substrings, not by Fredrik Lundh · 18 years ago
- 1004a53 Patch #1488312, Fix memory alignment problem on SPARC in unicode. Will backport by Neal Norwitz · 18 years ago
- 715a4cd Use %zd instead of %i as format character (in call to PyErr_Format) for by Thomas Wouters · 19 years ago
- 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 19 years ago
- f15da69 Remove another INT_MAX limitation by Martin v. Löwis · 19 years ago
- 412fb67 Change more ints to Py_ssize_t. by Martin v. Löwis · 19 years ago
- 80d2e59 Revert 34153: Py_UNICODE should not be signed. by Martin v. Löwis · 19 years ago
- ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 19 years ago
- a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 19 years ago
- ecdc0a9 That one was a mistake. by Georg Brandl · 19 years ago