- d825143 Patch #1455898: Incremental mode for "mbcs" codec. by Martin v. Löwis · 19 years ago
- de4c78a Initialize the type object so pychecker can't crash the interpreter. by Neal Norwitz · 19 years ago
- 90e27d3 Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. by Georg Brandl · 19 years ago
- 2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. by Georg Brandl · 19 years ago
- 9f16760 Repair refleaks in unicodeobject. by Georg Brandl · 19 years ago
- 3f76779 Patch #1359618: Speed-up charmap encoder. by Martin v. Löwis · 19 years ago
- 60d8b18 needforspeed: stringlib refactoring: changed find_obj to find_slice, by Fredrik Lundh · 19 years ago
- c2d29c5 needforspeed: replace improvements, changed to Py_LOCAL_INLINE where appropriate by Fredrik Lundh · 19 years ago
- 2e3f6b7 Revert bogus change committed in 46432 to this file. by Martin v. Löwis · 19 years ago
- e0df762 fixed typo by Andrew Dalke · 19 years ago
- 2d23d5b needforspeed: more stringlib refactoring by Fredrik Lundh · 19 years ago
- d004fc8 Patch 1494554: Update numeric properties to Unicode 4.1. by Martin v. Löwis · 19 years ago
- d1b6cd7 Fix Coverity warnings. by Neal Norwitz · 19 years ago
- 07bbfc6 Comment typo by Andrew M. Kuchling · 19 years ago
- e6e43c8 needforspeed: stringlib refactoring: use stringlib/find for string find by Fredrik Lundh · 19 years ago
- c816281 needforspeed: use a macro to fix slice indexes by Fredrik Lundh · 19 years ago
- ce4eccb needforspeed: stringlib refactoring: use stringlib/find for unicode find by Fredrik Lundh · 19 years ago
- 58b5e84 needforspeed: stringlib refactoring, continued. added count and by Fredrik Lundh · 19 years ago
- 9c0e9c0 needspeed: rpartition documentation, tests, and a bug fixes. by Fredrik Lundh · 19 years ago
- b3167cb needforspeed: added rpartition implementation by Fredrik Lundh · 19 years ago
- b947948 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 19 years ago
- a50d201 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 19 years ago
- 95e2a91 use Py_LOCAL also for string and unicode objects by Fredrik Lundh · 19 years ago
- f2c0dfd needforspeed: use Py_ssize_t for the fastsearch counter and skip by Fredrik Lundh · 19 years ago
- 450277f needforspeed: use METH_O for argument handling, which made partition some by Fredrik Lundh · 19 years ago
- 06a69dd needforspeed: partition implementation, part two. by Fredrik Lundh · 19 years ago
- b552c4d Code had returned an ssize_t, upcast to long, then converted with PyInt_FromLong. by Andrew Dalke · 19 years ago
- 0c71f88 needforspeed: check for overflow in replace (from Andrew Dalke) by Fredrik Lundh · 19 years ago
- 347ee27 needforspeed: refactored the replace code slightly; special-case by Fredrik Lundh · 19 years ago
- d5e0dc5 needforspeedindeed: use fastsearch also for __contains__ by Fredrik Lundh · 19 years ago
- 6471ee4 needforspeed: use "fastsearch" for count and findstring helpers. this by Fredrik Lundh · 19 years ago
- 240bf2a use Py_ssize_t for string indexes (thanks, neal!) by Fredrik Lundh · 19 years ago
- 7763351 return 0 on misses, not -1. by Fredrik Lundh · 19 years ago
- b63588c needforspeed: use append+reverse for rsplit, use "bloom filters" to by Fredrik Lundh · 19 years ago
- 833bf94 needforspeed: fixed unicode "in" operator to use same implementation by Fredrik Lundh · 19 years ago
- 1bacc64 unicode_repeat(): Change type of local to Py_ssize_t, by Tim Peters · 19 years ago
- 286085c PyUnicode_Join(): Recent code changes introduced new by Tim Peters · 19 years ago
- 8a8e05a needforspeed: use memcpy for "long" strings; use a better algorithm by Fredrik Lundh · 19 years ago
- f1d60a5 needforspeed: speed up unicode repeat, unicode string copy by Fredrik Lundh · 19 years ago
- 763b50f docstring tweaks: count counts non-overlapping substrings, not by Fredrik Lundh · 19 years ago
- 1004a53 Patch #1488312, Fix memory alignment problem on SPARC in unicode. Will backport by Neal Norwitz · 19 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
- 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
- a96affe - Reindent a confusingly indented piece of code (no intended code changes by Thomas Wouters · 19 years ago
- 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 19 years ago
- 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
- 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- de01774 Use correct PyArg_Parse format char for Py_ssize_t in unicode.center(). Fixes: by Thomas Wouters · 19 years ago
- eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 19 years ago
- 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 19 years ago
- 1523154 doubletounicode(), longtounicode(): by Tim Peters · 19 years ago
- 4701af5 Remove two unused Py_ssize_t variables (merge glitches, looks like.) by Thomas Wouters · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- fc76d63 - Patch #1400181, fix unicode string formatting to not use the locale. by Neal Norwitz · 19 years ago
- d43069c Fix icc warnings: remove (sometimes) unused variable conditionally by Neal Norwitz · 19 years ago
- dea59e5 Stop maintaining the buildno file. by Martin v. Löwis · 19 years ago
- 835b243 Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' by Hye-Shik Chang · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- d4fff17 Fix leaked reference to None. by Walter Dörwald · 19 years ago
- 8294de5 Another comment typo fix by Andrew M. Kuchling · 20 years ago
- 2e2c02f Fix typo in comment. by Walter Dörwald · 20 years ago
- db390c1 fix typos, mostly in comments by Fred Drake · 20 years ago
- b2308bb Fix bug: by Michael W. Hudson · 20 years ago
- 5c4a9d6 Whitespace corrections. by Marc-André Lemburg · 20 years ago
- e115ec8 Bug fix for [ 1331062 ] utf 7 codec broken. by Marc-André Lemburg · 20 years ago
- d1c1e10 Part of SF patch #1313939: Speedup charmap decoding by extending by Walter Dörwald · 20 years ago
- a47d1c0 SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain by Walter Dörwald · 20 years ago
- a9cadcd Correct the handling of 0-termination of PyUnicode_AsWideChar() by Marc-André Lemburg · 20 years ago
- 204bd6d Applied patch for [ 1047269 ] Buffer overwrite in PyUnicode_AsWideChar. by Marc-André Lemburg · 21 years ago
- 6543b45 Initialize sep and seplen to suppress warning from gcc. by Skip Montanaro · 21 years ago
- ca0d2cb Add a missing line continuation character. by Thomas Heller · 21 years ago
- 065a32f Make the hint about the None default less ambiguous. by Walter Dörwald · 21 years ago
- 782afc5 Enhance the docstrings for unicode.split() and string.split() by Walter Dörwald · 21 years ago
- 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 21 years ago
- 91879ab PyUnicode_Join(): Bozo Alert. While this is chugging along, it may by Tim Peters · 21 years ago
- 05eba1f PyUnicode_Join(): Rewrote to use PySequence_Fast(). This doesn't do by Tim Peters · 21 years ago
- 894c512 PyUnicode_Join(): Missed a spot where I intended a cast from size_t to by Tim Peters · 21 years ago
- 8ce9f16 PyUnicode_Join(): Two primary aims: by Tim Peters · 21 years ago
- e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 21 years ago
- d25c650 Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__(). by Marc-André Lemburg · 21 years ago
- 9ba301e Moved SunPro warning suppression into pyport.h and out of individual by Nicholas Bastin · 21 years ago
- 126b44c Fix a copy&paste typo. by Marc-André Lemburg · 21 years ago
- 1dffb12 .encode()/.decode() patch part 2. by Marc-André Lemburg · 21 years ago
- d2d4598 Allow string and unicode return types from .encode()/.decode() by Marc-André Lemburg · 21 years ago
- 1ce9e4c Fixed end-of-loop code not reached warning when using SunPro C by Nicholas Bastin · 21 years ago
- 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 21 years ago
- 4057483 SF Patch #926375: Remove a useless UTF-16 support code that is never by Hye-Shik Chang · 21 years ago
- cd736e7 Fix reallocation bug in unicode.translate(): The code was comparing by Walter Dörwald · 21 years ago
- 1bc09b7 Cosmetic fix for wrongly indented tabs with ts=4. by Hye-Shik Chang · 21 years ago
- 7fc4cf5 Fix unicode.rsplit()'s bug that ignores separater on the end of string when by Hye-Shik Chang · 21 years ago
- 40e9509 Fix broken xmlcharrefreplace by rev 2.204. (Pointy hat goes to perky) by Hye-Shik Chang · 21 years ago
- 4a264fb SF #859573: Reduce compiler warnings on gcc 3.2 and above. by Hye-Shik Chang · 21 years ago