1. 7580146 Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and by Neal Norwitz · 18 years ago
  2. abb903f Bug #1448490: Fix a bug that ISO-2022 codecs could not handle by Hye-Shik Chang · 18 years ago
  3. 44ed4db merged with cElementTree development trunk (1.0.6 snapshot): by Fredrik Lundh · 18 years ago
  4. b2820ae Fix another leak in bsddb, and avoid use of uninitialized value -- funny how by Thomas Wouters · 18 years ago
  5. c350912 Adjust CJK Ideograph range to Unicode 4.1. by Martin v. Löwis · 18 years ago
  6. 0e2f9b2 Fix refcounting bug. by Martin v. Löwis · 18 years ago
  7. 5bd7c02 Avoid forward-declaring the methods array. by Martin v. Löwis · 18 years ago
  8. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago
  9. 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 18 years ago
  10. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 18 years ago
  11. d4c9320 Copy ctypes-0.9.9.4 sources from external into the trunk. by Thomas Heller · 18 years ago
  12. f3c4ad1 typo by Georg Brandl · 18 years ago
  13. 2f5e990 Fix logic error and DECREF reported by Coverity. by Neal Norwitz · 18 years ago
  14. b315383 Clean up _bsddb.c: add a couple dozen missing Py_DECREF()'s, a handful of by Thomas Wouters · 18 years ago
  15. e920f0d Reformulate 42903 using an if statement. by Martin v. Löwis · 18 years ago
  16. df44ab7 _hotshot hotshot_profiler(): If write_header() returned by Tim Peters · 18 years ago
  17. 516999e Fix bug introduced in rev. 42884. by Georg Brandl · 18 years ago
  18. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  19. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  20. ef1701f Add additional missing checks for return vals of PyTuple_New(). by Georg Brandl · 18 years ago
  21. 89ba381 Fix gcc 4.0.x warning about use of uninitialized value. by Thomas Wouters · 18 years ago
  22. 098f694 Coverity found bug: test result of PyTuple_New() against NULL before use. by Thomas Wouters · 18 years ago
  23. a74a84d Coverity found refleak: need to free 'v' after calling Tkinter_Error(). by Thomas Wouters · 18 years ago
  24. 47f003d Coverity-found bug: don't use temp->next *before* checking it for NULL. Also by Thomas Wouters · 18 years ago
  25. 622927b Bug #1432525: os.listdir now releases the GIL while calling readdir(). by Georg Brandl · 18 years ago
  26. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  27. 8eb8a82 Don't DECREF a borrowed reference. by Thomas Wouters · 18 years ago
  28. d3c38ff SF patch #1443865; gc.get_count() added and optional argument 'generation' by Barry Warsaw · 18 years ago
  29. 60da316 Thanks to Coverity, these were all reported by their Prevent tool. by Neal Norwitz · 18 years ago
  30. e22373d Fix warnings on x86 (32-bit) and support Win64. by Neal Norwitz · 18 years ago
  31. 32feb85 Check NULL if Py_InitModule fails. by Hye-Shik Chang · 18 years ago
  32. 7b216c5 Make PyGC_Collect() use Py_ssize_t. by Neal Norwitz · 18 years ago
  33. 4b96c13 - Modernize code to use Py_ssize_t more intensively. by Hye-Shik Chang · 18 years ago
  34. 857b300 Explain why we use the unsigned int format for a signed int variable. by Thomas Wouters · 18 years ago
  35. 83d1266 Properly fix Py_SAFE_DOWNCAST-triggerd bugs. by Thomas Wouters · 18 years ago
  36. 369092b Py_SAFE_DOWNCAST isn't quite doing the right thing for going from Py_ssize_t by Thomas Wouters · 18 years ago
  37. 26cc63f Make Py_ssize_t-clean by Thomas Wouters · 18 years ago
  38. 5df2e61 Remove UNLESS. by Martin v. Löwis · 18 years ago
  39. 7087f78 Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints. by Thomas Wouters · 18 years ago
  40. a5fa2a8 Fix gcc (4.0.x) warning about use of uninitialized variable. by Thomas Wouters · 18 years ago
  41. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  42. 3ffa59b Rework channelnumber/samplesize detetion code's output variables a bit to by Thomas Wouters · 18 years ago
  43. f86d1e8 Silence gcc (4.0.x) warning about use of uninitialized value. by Thomas Wouters · 18 years ago
  44. 9c54448 Fix brainfart. by Thomas Wouters · 18 years ago
  45. 1e365b2 Remove gcc (4.0.x) warning about uninitialized value by explicitly setting by Thomas Wouters · 18 years ago
  46. 9bc844e Make Py_ssize_t-clean. by Thomas Wouters · 18 years ago
  47. f98db65 Make Py_ssize_t-clean. by Thomas Wouters · 18 years ago
  48. 6db0e00 Change GC refcount to Py_ssize_t. by Martin v. Löwis · 18 years ago
  49. 67d70eb Repair mangled code in the Windows flavor of posix__getfullpathname(). by Tim Peters · 18 years ago
  50. 68bc4f9 Py_ssize_t-ify. by Thomas Wouters · 18 years ago
  51. 9d63cca Fix DBEnv's set_tx_timestamp wrapper to be slightly more correct on by Thomas Wouters · 18 years ago
  52. 1a5e21e Updates to the with-statement: by Guido van Rossum · 18 years ago
  53. 85b1052 Another bit of unconstification. by Tim Peters · 18 years ago
  54. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  55. 1d519e4 unconst. by Martin v. Löwis · 19 years ago
  56. b9eb551 Convert array.array.insert to use Py_ssize_t (like the rest already does.) by Thomas Wouters · 19 years ago
  57. 02cbf4a More unconsting. by Martin v. Löwis · 19 years ago
  58. b79afb6 unconst. by Martin v. Löwis · 19 years ago
  59. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  60. e2dd78c Update for PEP 308 patch. by Thomas Wouters · 19 years ago
  61. 577b5b9 Create _ast module. Cleanup Python-ast.c generation. by Martin v. Löwis · 19 years ago
  62. 1968ad3 - Patch 1433928: by Guido van Rossum · 19 years ago
  63. c2fb6c7 Fix typo in functional module by Georg Brandl · 19 years ago
  64. 668a94a NETLINK_TCPDIAG and NETLINK_NFLOG aren't defined on older Linux by Guido van Rossum · 19 years ago
  65. e393bf6 Patch #931938: prevent setting sys.prefix to "" by Georg Brandl · 19 years ago
  66. dbd8339 Bug #854823: socketmodule now builds on Sun platforms even when by Georg Brandl · 19 years ago
  67. d69e034 Fix a build problem introduced by r42230. by Hye-Shik Chang · 19 years ago
  68. e810fe2 Remove two instances of trailing commas. Resolves patch #1209781. by Georg Brandl · 19 years ago
  69. e9b1949 Patch #1352711: make zipimport raise a complete IOError by Georg Brandl · 19 years ago
  70. 093ab1a Remove unused variable by Neal Norwitz · 19 years ago
  71. f4f4415 Patch #1393157: os.startfile() now has an optional argument to specify by Georg Brandl · 19 years ago
  72. 47fab92 Bug #1366000: cleanup BZ2File.seek() logic. Fixes the case of whence=2, offset>=0. by Georg Brandl · 19 years ago
  73. 5bb8a15 Fix typo. by Martin v. Löwis · 19 years ago
  74. 1518607 Fix size computation on Win64. by Martin v. Löwis · 19 years ago
  75. 5c97c79 Make ssize_t-clean. by Martin v. Löwis · 19 years ago
  76. b86a54f Add deprecation warning to modules deprecated since 2000. by Georg Brandl · 19 years ago
  77. 2c98a7b Fix typo. by Thomas Wouters · 19 years ago
  78. 1b67267 Bug #1432350: arrayobject should use PyObject_VAR_HEAD by Georg Brandl · 19 years ago
  79. cfe7e09 Remove size restrictions. by Martin v. Löwis · 19 years ago
  80. f288295 mmap_flush_method(): Squash compiler warning about by Tim Peters · 19 years ago
  81. 8f9cc29 Remove space between function name and left paren in function calls. by Tim Peters · 19 years ago
  82. 23721ee Removed pointless parens around `return` expressions; by Tim Peters · 19 years ago
  83. ec0a5f0 Trimmed trailing whitespace. by Tim Peters · 19 years ago
  84. e564e7f new_mmap_object(), Windows flavor. by Tim Peters · 19 years ago
  85. dde1765 More Py_ssize_t format characters. by Thomas Wouters · 19 years ago
  86. 2ad8c56 struct_pack(): Repair new assert-fail crash in by Tim Peters · 19 years ago
  87. 13870b1 Also make _heapq.nlargest() use Py_ssize_t instead of ints, to iter over by Thomas Wouters · 19 years ago
  88. ed6254a Use 'n' format for Py_ssize_t variables to PyArg_ParseTuple(). Py_ssize_t by Thomas Wouters · 19 years ago
  89. 7a2f83b Use correct format specifier for Py_ssize_t variable to PyArg_ParseTuple(). by Thomas Wouters · 19 years ago
  90. 4129068 Change _PyObject_GC_Resize to expect Py_ssize_t. by Martin v. Löwis · 19 years ago
  91. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 19 years ago
  92. 3eaf2b5 Update comment and make accurate. by Neal Norwitz · 19 years ago
  93. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  94. 219c164 randombits(): Stop compiler warning about mixing by Tim Peters · 19 years ago
  95. 389cea8 Try to improve name based on discussion on python-checkins with Jim Jewett by Neal Norwitz · 19 years ago
  96. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  97. f84d1b9 Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE. Proposed by Tim Peters. by Martin v. Löwis · 19 years ago
  98. 2bc23f5 The default timer unit was incorrectly measured in milliseconds instead by Armin Rigo · 19 years ago
  99. a871ef2 Added the cProfile module. by Armin Rigo · 19 years ago
  100. 082b2df Bug #876637, prevent stack corruption when socket descriptor by Neal Norwitz · 19 years ago