1. 3b8cb17 #1061 (mainly by Thomas Wouters): use weak sets for abc caches. by Georg Brandl · 17 years ago
  2. b98dd2e Patch 1304, by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  3. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  4. 6464d47 In followup to #1310: Remove more exception indexing. by Georg Brandl · 17 years ago
  5. b8990aa ssue 1309: fix by Christian Heimes to be able to build on Windows. by Guido van Rossum · 17 years ago
  6. 7816e51 Fix exception indexing. by Georg Brandl · 17 years ago
  7. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  8. c2954e5 Make sure the malloc'ed string has space for the null byte. by Brett Cannon · 17 years ago
  9. e453989 Fix PyTokenizer_FindEncoding() for OS X 10.4. Turns out that seeking to the by Brett Cannon · 17 years ago
  10. 3bb42d9 Fix a memory leak caused by PyTokenizer_FindEncoding() returning a char * that by Brett Cannon · 17 years ago
  11. d5ec98c Plug a memory leak where a struct tok_state was not being freed. by Brett Cannon · 17 years ago
  12. 6643cb2 Tweak the version *string* to clarify that this isn't your father's 3.0a1. :-) by Guido van Rossum · 17 years ago
  13. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  14. 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  15. 21431e8 This is the uncontroversial half of patch 1263 by Thomas Lee: by Guido van Rossum · 17 years ago
  16. 630e464 Merge 58539: squelch the warning that this test is intended to raise. by Gregory P. Smith · 17 years ago
  17. 66077d8 Merge 58532, 58533, 58534: bsddb.dbtables bug fixes - don't allow null bytes by Gregory P. Smith · 17 years ago
  18. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  19. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 17 years ago
  20. 3d2fd7f Fix a small typo in the comment of unicode_default_encoding[]. by Alexandre Vassalotti · 17 years ago
  21. 7648ba8 Make the docstring for io.open() a raw string so that the explanation for the by Brett Cannon · 17 years ago
  22. e20ad35 Move decl so it compiles with C89. by Neal Norwitz · 17 years ago
  23. 8d2ef87 Update what the locale module documents about string operations. by Guido van Rossum · 17 years ago
  24. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  25. cdadf24 Finish bug fix applied at 58398. I missed a piece, Tal Einat found the error. by Kurt B. Kaiser · 17 years ago
  26. d4ee167 Fix yet another stray 2.x-ism (maybe merged?). by Guido van Rossum · 17 years ago
  27. 3b7210d Make it possible to run this test stand-alone. by Guido van Rossum · 17 years ago
  28. 7c4c6c5 Fix typo: formats -> format. (Only mattered in wide unicode builds.) by Guido van Rossum · 17 years ago
  29. 6c91378 Fix some more memory leaks (in error conditions) introduced in r58455. by Neal Norwitz · 17 years ago
  30. 4167ebc Fix the memory leak introduced in r58455. The buffer reference by Alexandre Vassalotti · 17 years ago
  31. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 17 years ago
  32. 659e7f4 Merge 58450: fix uncollectable reference caused by bsddb.db.DBShelf.append by Gregory P. Smith · 17 years ago
  33. ddacf96 Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer interface. Fix up array module to export the correct format for wide-builds. by Travis E. Oliphant · 17 years ago
  34. d417a15 Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA. by Guido van Rossum · 17 years ago
  35. c05d384 Remove more hotshot cruft. by Neal Norwitz · 17 years ago
  36. fe9bed0 Fix problems with memoryview object. There is still more to do to finish PEP 3118. The memory-view object needs to be fleshed out and the struct module needs to be modified. by Travis E. Oliphant · 17 years ago
  37. 9b30784 Add macros for checking for long double and defining the size of long double on the platform. Ctypes and Struct module will both need them. by Travis E. Oliphant · 17 years ago
  38. d5c0add Fix Issue 1268 with the array module by backing-out the 'w' addition. All builds will continue to use 'u' for unicode. by Travis E. Oliphant · 17 years ago
  39. e9fd231 Make _load_testfile() use its encoding argument when __loader__ is defined. by Brett Cannon · 17 years ago
  40. 5c5f170 Merge r58434: by Gregory P. Smith · 17 years ago
  41. 041683d Remove self-referential import. by Brett Cannon · 17 years ago
  42. f12088b clean out some hotshot-related build turds by Fred Drake · 17 years ago
  43. 0e474a8 remove hotshot profiler from Py3k by Fred Drake · 17 years ago
  44. b62e8a8 Two changes that are definitely problem-free and avoid calling print() by Guido van Rossum · 17 years ago
  45. c5724de get rid of some more PyString uses. by Guido van Rossum · 17 years ago
  46. ebe8f8a Minor cleanup of the comment for PyErr_ProgramText() and a tweak to the code by Guido van Rossum · 17 years ago
  47. df4ce10 Fix another stray PyString reference that should be PyBytes; and its comment. by Guido van Rossum · 17 years ago
  48. 641591c Fix an issue in PyTokenizer_RestoreEncoding() which was treating a PyBytes by Guido van Rossum · 17 years ago
  49. feea078 Random changes having to do with readline() and bytes. by Guido van Rossum · 17 years ago
  50. 8d5c8b5 the default class attr is needed! by Kurt B. Kaiser · 17 years ago
  51. 49f2174 Don't depend on str8.splitlines() in test_chunkcoding(). by Guido van Rossum · 17 years ago
  52. 3e623ba Windows EOL sequence not converted correctly, encoding error. by Kurt B. Kaiser · 17 years ago
  53. e518bf3 PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8(). by Guido van Rossum · 17 years ago
  54. 762d4a4 use a reliable host by Gregory P. Smith · 17 years ago
  55. 174ce20 Silly script I'd rather not throw away. by Guido van Rossum · 17 years ago
  56. 1e35e76 Patch #1049 by Thomas Lee. by Guido van Rossum · 17 years ago
  57. 6ccd3f2 Replace all (locale-dependent) uses of isupper(), tolower(), etc., by by Guido van Rossum · 17 years ago
  58. 6733d70 Change the default encoding for ftplib.FTP to latin1 so that bytes can be in by Brett Cannon · 17 years ago
  59. 9f2c39a #1228: new comparison behavior. by Georg Brandl · 17 years ago
  60. 9f27df5 Remove buffer() from the docs. by Georg Brandl · 17 years ago
  61. 14ef70b Remove unused variables by Neal Norwitz · 17 years ago
  62. 0ea230b Remove more traces of bufferobject.[ch] from build files etc. by Guido van Rossum · 17 years ago
  63. be801ac Delete bufferobject.[ch]. by Guido van Rossum · 17 years ago
  64. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  65. 85c1ba5 Fix a minor typo. by Brett Cannon · 17 years ago
  66. b35f128 At least one of the buildbots was complaining about newview being used by Neal Norwitz · 17 years ago
  67. e43bd62 Merge 58344: allow BerkeleyDB 4.6.x >= 4.6.21 for the bsddb module by Gregory P. Smith · 17 years ago
  68. 9e780cc Merge 58343: attempt to fix DBSequence.get_key() to not fail or crash. by Gregory P. Smith · 17 years ago
  69. 1d2aef5 Get the doc to build. by Neal Norwitz · 17 years ago
  70. 905ec32 #1219: py3k cleanup in standard types docs. by Georg Brandl · 17 years ago
  71. 2d2590d #1211, #1212, #1213: py3k fixes to the tutorial. by Georg Brandl · 17 years ago
  72. 7c77f75 Make byext.py really work. by Guido van Rossum · 17 years ago
  73. d2e44df Revert r58075 (incorrect docs patch). by Collin Winter · 17 years ago
  74. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  75. 4e02c50 Clarify the difference between text and binary files. I'm not sure the by Skip Montanaro · 17 years ago
  76. 5dde61d Whitespace and line lengrth cleanup. by Guido van Rossum · 17 years ago
  77. 3f6d44e Delete now-unused static function Array_ass_slice(). by Guido van Rossum · 17 years ago
  78. 85ac28d Fix a straggler filter() call. by Guido van Rossum · 17 years ago
  79. dd6d024 #1189: documentation for tp_as_* structs. by Georg Brandl · 17 years ago
  80. 39763a1 Make Modules/_bsddb.c and PC/_winreg.c compile again by renaming by Thomas Heller · 17 years ago
  81. 4d8c193 Update the documentation of the open() builtin function a bit. I believe I by Skip Montanaro · 17 years ago
  82. 1c63960 Reformat the open function text so it fits within 80 columns in preparation by Skip Montanaro · 17 years ago
  83. f1368ef Fix turtle module: None and int are not comparable, map returns an iterator. by Georg Brandl · 17 years ago
  84. 8ae62b6 Change PyBuffer to Py_buffer to be consistent with other non-object structures like Py_complex. Add some more functionality to the memoryview object. by Travis E. Oliphant · 17 years ago
  85. 3f993c3 Use an enum for decoding_state. It makes the code a little more understandable. by Neil Schemenauer · 17 years ago
  86. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  87. 8ce81f7 Merged revisions 58211-58220 via svnmerge from by Thomas Wouters · 17 years ago
  88. 7ce29ca Whitespace cleanup. by Thomas Wouters · 17 years ago
  89. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  90. 796d0b2 Merged revisions 58198-58202 via svnmerge from by Thomas Wouters · 17 years ago
  91. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  92. 782d6b4 issue1172: Documentation of "done" attribute in cgi module. by Sean Reifscheider · 17 years ago
  93. c250493 Optimize unicode_hash() by not calling by Guido van Rossum · 17 years ago
  94. e4a9e78 Thomas Wouters suggested an obvious improvement to unicode_eq(): use memcmp(). by Guido van Rossum · 17 years ago
  95. 89d8c60 Switch dict lookup around to optimizing for unicode. by Guido van Rossum · 17 years ago
  96. 4d02772 Micro optimizations after staring at gprof output for a while. by Guido van Rossum · 17 years ago
  97. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  98. a5b8e04 Merged revisions 58149-58150 via svnmerge from by Martin v. Löwis · 17 years ago
  99. 5a885d7 Merged revisions 58133-58135 via svnmerge from by Martin v. Löwis · 17 years ago
  100. 7b46942 Oops. by Georg Brandl · 17 years ago