1. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 19 years ago
  2. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 19 years ago
  3. 49d6b07 Make the it_index field in the str/unicode iterators Py_ssize_t's. by Guido van Rossum · 19 years ago
  4. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 19 years ago
  5. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 19 years ago
  6. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 19 years ago
  7. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 19 years ago
  8. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 19 years ago
  9. d4ec0c3 Merge with trunk up to revision 45620. by Thomas Wouters · 19 years ago
  10. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
  11. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 19 years ago
  12. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  13. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
  14. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
  15. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  16. 977485d Use Py_ssize_t in helper function between Py_ssize_t-using functions. by Thomas Wouters · 19 years ago
  17. 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
  18. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 19 years ago
  19. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  20. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
  21. b2308bb Fix bug: by Michael W. Hudson · 20 years ago
  22. 95c1e50 SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. Will backport by Neal Norwitz · 20 years ago
  23. d45014b Fix PyString_Format so that the "%s" format works again when Unicode is not by Georg Brandl · 20 years ago
  24. ab61923 Fix bug in last checkin (2.231). To match previous behavior, unicode by Neil Schemenauer · 20 years ago
  25. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 20 years ago
  26. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 20 years ago
  27. 57e7447 * Beef-up tests for str.count(). by Raymond Hettinger · 20 years ago
  28. 7cbf1bc * Beef-up testing of str.__contains__() and str.find(). by Raymond Hettinger · 20 years ago
  29. faa7648 More bug #1077106 stuff, sorry -- modem induced impatiece! by Michael W. Hudson · 21 years ago
  30. 561fbf1 SF bug #1054139: serious string hashing error in 2.4b1 by Raymond Hettinger · 21 years ago
  31. 674f241 SF Patch #1007087: Return new string for single subclass joins (Bug #1001011) by Raymond Hettinger · 21 years ago
  32. 618fbf5 This was quite a dark bug in my recent in-place string concatenation by Armin Rigo · 21 years ago
  33. 79f7ad2 Fixed some compiler warnings. by Armin Rigo · 21 years ago
  34. 4c989dd Subclasses of string can no longer be interned. The semantics of by Jeremy Hylton · 21 years ago
  35. 1dffb12 .encode()/.decode() patch part 2. by Marc-André Lemburg · 21 years ago
  36. d2d4598 Allow string and unicode return types from .encode()/.decode() by Marc-André Lemburg · 21 years ago
  37. e7c0532 sizeof(char) is 1, by definition, so get rid of that expression in by Tim Peters · 21 years ago
  38. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 21 years ago
  39. 75c00ef [SF #866875] Add a specialized routine for one character by Hye-Shik Chang · 22 years ago
  40. ac4ea13 There are places in Python which assume bytes have 8-bits. Formalize that a by Skip Montanaro · 22 years ago
  41. 3ae811b Add rsplit method for str and unicode builtin types. by Hye-Shik Chang · 22 years ago
  42. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 22 years ago
  43. 4f8f976 Add optional fillchar argument to ljust(), rjust(), and center() string methods. by Raymond Hettinger · 22 years ago
  44. d22bb65 Avoid confusing name for the 3rd argument to str.replace(). by Fred Drake · 22 years ago
  45. 6828e18 Patch #825679: Clarify semantics of .isfoo on empty strings. Backported to 2.3. by Martin v. Löwis · 22 years ago
  46. 9bfe533 SF bug #795506: Wrong handling of string format code for float values. by Raymond Hettinger · 22 years ago
  47. 9ff3f03 Fix whitespace. by Walter Dörwald · 22 years ago
  48. ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 22 years ago
  49. a713218 Reformat a few docstrings that caused line wraps in help() output. by Guido van Rossum · 22 years ago
  50. 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 22 years ago
  51. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 23 years ago
  52. 5d5e7c0 SF patch #664192 bug #661913: inconsistent error messages between string by Raymond Hettinger · 23 years ago
  53. 0a2f849 GvR's idea to use memset() for the most common special case of repeating by Raymond Hettinger · 23 years ago
  54. 698258a Optimize string_repeat. by Raymond Hettinger · 23 years ago
  55. 79f5783 Patch for bug #659709: bogus computation of float length by Marc-André Lemburg · 23 years ago
  56. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 23 years ago
  57. 00b6127 Patch #650653: Raise always value error if the table is not 256 bytes long. by Martin v. Löwis · 23 years ago
  58. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 23 years ago
  59. a6cd4e6 Add nb_remainder (i.e. __mod__) slot to str type. Fixes SF bug #615506. by Neil Schemenauer · 23 years ago
  60. 80a1bf4 Fix SF # 635969, No error "not all arguments converted" by Neal Norwitz · 23 years ago
  61. a5f0907 Back out #479898. by Martin v. Löwis · 23 years ago
  62. 049cd6b Fix a nasty endcase reported by Armin Rigo in SF bug 618623: by Guido van Rossum · 23 years ago
  63. 8052f89 Undo this part of the previous checkin: by Guido van Rossum · 23 years ago
  64. b00c07f The string formatting code has a test to switch to Unicode when %s by Guido van Rossum · 23 years ago
  65. bab9559 Include wctype.h. by Martin v. Löwis · 23 years ago
  66. fed2405 Patch #479898: Use multibyte C library for printing strings if available. by Martin v. Löwis · 23 years ago
  67. efc1188 Fix warnings on 64-bit platforms about casts from pointers to ints. by Guido van Rossum · 23 years ago
  68. 2412853 Fix escaping of non-ASCII characters. by Martin v. Löwis · 23 years ago
  69. 8709a42 Check whether a string resize is necessary at the end by Walter Dörwald · 23 years ago
  70. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 23 years ago
  71. bf935fd string_contains(): speed up by avoiding function calls where by Guido van Rossum · 23 years ago
  72. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 23 years ago
  73. 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 23 years ago
  74. 45ec02a SF patch 576101, by Oren Tirosh: alternative implementation of by Guido van Rossum · 23 years ago
  75. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 23 years ago
  76. b898d9f Get this to compile again if Py_USING_UNICODE is not defined. by Neal Norwitz · 23 years ago
  77. 54df53a More changes of DeprecationWarning to FutureWarning. by Guido van Rossum · 23 years ago
  78. eb3f00a Check for trailing backslash. Fixes #593656. by Martin v. Löwis · 23 years ago
  79. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 23 years ago
  80. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 23 years ago
  81. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 23 years ago
  82. bc552ce SF 582071 clarified the .split() method's docstring to note that sep=None by Raymond Hettinger · 23 years ago
  83. 88fe4ff Fix the problem of not raising a TypeError exception when doing: by Neal Norwitz · 23 years ago
  84. 7beeed5 SF patch #577031, remove PyArg_Parse() since it's deprecated by Neal Norwitz · 23 years ago
  85. 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 23 years ago
  86. 938ace6 staticforward bites the dust. by Jeremy Hylton · 23 years ago
  87. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 23 years ago
  88. 1f68fc7 SF bug # 493951 string.{starts,ends}with vs slices by Neal Norwitz · 23 years ago
  89. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 23 years ago
  90. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 23 years ago
  91. 32a7e7f Change name from string to basestring by Neal Norwitz · 23 years ago
  92. cacfc07 - A new type object, 'string', is added. This is a common base type by Guido van Rossum · 23 years ago
  93. 0ebac97 Patch 549187. Improve string formatting error message. by Raymond Hettinger · 23 years ago
  94. 775c11f Add #ifdef PY_USING_UNICODE sections, so that by Walter Dörwald · 23 years ago
  95. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 23 years ago
  96. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 23 years ago
  97. 0fe940c Return the orginal string only if it's a real str or unicode by Walter Dörwald · 23 years ago
  98. 3aa3fc4 Remove 'const' from local variable declaration in string_zfill() -- it by Guido van Rossum · 23 years ago
  99. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 23 years ago
  100. 018b0eb Partially implement SF feature request 444708. by Guido van Rossum · 23 years ago