1. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  2. ef1701f Add additional missing checks for return vals of PyTuple_New(). by Georg Brandl · 18 years ago
  3. 89ba381 Fix gcc 4.0.x warning about use of uninitialized value. by Thomas Wouters · 18 years ago
  4. 098f694 Coverity found bug: test result of PyTuple_New() against NULL before use. by Thomas Wouters · 18 years ago
  5. a74a84d Coverity found refleak: need to free 'v' after calling Tkinter_Error(). by Thomas Wouters · 18 years ago
  6. 58780d2 Bug #1440831: fix csv UnicodeWriter example by Georg Brandl · 18 years ago
  7. 47f003d Coverity-found bug: don't use temp->next *before* checking it for NULL. Also by Thomas Wouters · 18 years ago
  8. 622927b Bug #1432525: os.listdir now releases the GIL while calling readdir(). by Georg Brandl · 18 years ago
  9. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  10. 8eb8a82 Don't DECREF a borrowed reference. by Thomas Wouters · 18 years ago
  11. d3c38ff SF patch #1443865; gc.get_count() added and optional argument 'generation' by Barry Warsaw · 18 years ago
  12. 995acdf Add a note about the bug fixes by Neal Norwitz · 18 years ago
  13. 60da316 Thanks to Coverity, these were all reported by their Prevent tool. by Neal Norwitz · 18 years ago
  14. e22373d Fix warnings on x86 (32-bit) and support Win64. by Neal Norwitz · 18 years ago
  15. f2e0c45 Fix warnings on x86 (32-bit). by Neal Norwitz · 18 years ago
  16. 3e90fa5 Try to cleanup the error handling a bit so there aren't false positives by Neal Norwitz · 18 years ago
  17. 4dc4a84 Ignore leaks from the socket test too. Sigh, this list is getting long. :-( by Neal Norwitz · 18 years ago
  18. ca19943 If size is specified, try to read at least size characters. by Walter Dörwald · 18 years ago
  19. f8d7671 lower-case time_t. by Martin v. Löwis · 18 years ago
  20. a2d4d6c Patch #1437769: notice that time_t is a 64-bit type in VS2005 by Martin v. Löwis · 18 years ago
  21. 32feb85 Check NULL if Py_InitModule fails. by Hye-Shik Chang · 18 years ago
  22. 82f6cc4 Use devenv.com to better obtain output. by Martin v. Löwis · 18 years ago
  23. 350a872 Add buildbot support scripts. by Martin v. Löwis · 18 years ago
  24. 8c7c56e Add _msi.pyd. Add warning on Win9x. by Martin v. Löwis · 18 years ago
  25. d149c21 Open dll file in binary. by Martin v. Löwis · 18 years ago
  26. dd860ca Update copyright notice. by Martin v. Löwis · 18 years ago
  27. fbab90e Import bdist_msi by Martin v. Löwis · 18 years ago
  28. 99b93c2 Use %Id for size_t-ish things on Win64. by Martin v. Löwis · 18 years ago
  29. 5bab0f8 Backout the last hack and add in this new one. by Neal Norwitz · 18 years ago
  30. 83cbb24 Oops, urllib may or may not already be loaded. by Neal Norwitz · 18 years ago
  31. 0917988 Fix SF #1442937, Bad Coroutine link by Neal Norwitz · 18 years ago
  32. d8cea79 Fix spurious test failure of test_socket_ssl when run in this order: by Neal Norwitz · 18 years ago
  33. 7b216c5 Make PyGC_Collect() use Py_ssize_t. by Neal Norwitz · 18 years ago
  34. 84632ee Oops, forgot to include this in the last checkin. by Neal Norwitz · 18 years ago
  35. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 18 years ago
  36. 9589ee2 Tabify by Neal Norwitz · 18 years ago
  37. e92fba0 Get rid of run_err_mod(). It was only used in two places. by Neal Norwitz · 18 years ago
  38. 1fc4b77 Change some sequnce APIs to use Py_ssize_t. by Neal Norwitz · 18 years ago
  39. 8c49c82 Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions. by Neal Norwitz · 18 years ago
  40. b62c433 Remove test for timing (already not built since commented out in setup.py). by Neal Norwitz · 18 years ago
  41. 4b96c13 - Modernize code to use Py_ssize_t more intensively. by Hye-Shik Chang · 18 years ago
  42. ad9afcf Actually this file should have svn:eol-style CRLF since it's specifically by Barry Warsaw · 18 years ago
  43. c32886d Set eol-style to native -- doesn't appear to be any reason by Tim Peters · 18 years ago
  44. 39e11fb Whitespace normalization. by Tim Peters · 18 years ago
  45. 7356dcb SF #1442767, docs for os.statvfs miss f_bsize parameter. Will backport. by Neal Norwitz · 18 years ago
  46. 67dfb6f I think the test_logging failure on Solaris is timing related. We don't by Neal Norwitz · 18 years ago
  47. 10be2ea SF bug 1442442: LIST_APPEND optimization got lost in the AST merge. Add it back. by Neal Norwitz · 18 years ago
  48. d4e3035 Fix compiler breakage related to absolute imports by Neal Norwitz · 18 years ago
  49. 9742f27 Remove commented code by Neal Norwitz · 18 years ago
  50. eaed39f Hopefully this removes all vestiges of CO_GENERATOR_ALLOWED that can by Neal Norwitz · 18 years ago
  51. fa0cf4f Add support for absolute/relative imports and if/else expressions: by Thomas Wouters · 18 years ago
  52. 7e2ac25 Update for absolute/relative imports and ifelse-expressions. by Thomas Wouters · 18 years ago
  53. 7b4d6d5 Provide checkin access to Ronald and Bob by Neal Norwitz · 18 years ago
  54. 6143c54 Stop building timing module, it's old and deprecated by Neal Norwitz · 18 years ago
  55. 26f55a1 Add test_quopri to know spurious leakers by Neal Norwitz · 18 years ago
  56. 3909ff6 Text moved to PEP 339. by Brett Cannon · 18 years ago
  57. 5118517 Fix minor docstring typo. by Brett Cannon · 18 years ago
  58. f638630 Document the purpose of the struct _block members. by Tim Peters · 18 years ago
  59. 6fd92dc Added words about what PyArena_Malloc() does. by Tim Peters · 18 years ago
  60. cb9426b Beefed up description of what this does; new XXX. by Tim Peters · 18 years ago
  61. 5f4390f New XXX pointing out errors in the description of by Tim Peters · 18 years ago
  62. 7eaf2aa Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytes by Thomas Wouters · 18 years ago
  63. 8cfaa0e Trimmed trailing whitespace. by Tim Peters · 18 years ago
  64. 2e63b73 Fix refleak in PyErr_Display(). by Brett Cannon · 18 years ago
  65. 857b300 Explain why we use the unsigned int format for a signed int variable. by Thomas Wouters · 18 years ago
  66. 4954b38 Fix mismatch opening and closing quotes on a string. by Brett Cannon · 18 years ago
  67. d9cf85f Fix refleak if from __future__ import was not first by Neal Norwitz · 18 years ago
  68. 814e938 Use Py_ssize_t since we are working with list size below by Neal Norwitz · 18 years ago
  69. e88d0a5 Spell threading write, not thraeading by Neal Norwitz · 18 years ago
  70. 83d1266 Properly fix Py_SAFE_DOWNCAST-triggerd bugs. by Thomas Wouters · 18 years ago
  71. 369092b Py_SAFE_DOWNCAST isn't quite doing the right thing for going from Py_ssize_t by Thomas Wouters · 18 years ago
  72. 46872b1 Add a missing Py_DECREF to BaseException__unicode__ . by Brett Cannon · 18 years ago
  73. 5bde08d Fix failure of test_compiler.py when compiling test_contextlib.py. by Guido van Rossum · 18 years ago
  74. 3a5468e Update known issues to reflect reality by Neal Norwitz · 18 years ago
  75. 28f635b Remove duplicate entry by Neal Norwitz · 18 years ago
  76. 3096c53 Fix latex typos as spotted by George Yoshida. by Brett Cannon · 18 years ago
  77. 03e5bc0 Fix memory leak on attributes. by Martin v. Löwis · 18 years ago
  78. 26cc63f Make Py_ssize_t-clean by Thomas Wouters · 18 years ago
  79. 695934a Make Py_ssize_t clean. by Thomas Wouters · 18 years ago
  80. d9bfeac Reformat the exception message by going through a list. by Martin v. Löwis · 18 years ago
  81. 5df2e61 Remove UNLESS. by Martin v. Löwis · 18 years ago
  82. 7087f78 Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints. by Thomas Wouters · 18 years ago
  83. 5ddfe41 Whitespace normalization. by Tim Peters · 18 years ago
  84. a5fa2a8 Fix gcc (4.0.x) warning about use of uninitialized variable. by Thomas Wouters · 18 years ago
  85. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  86. 3ffa59b Rework channelnumber/samplesize detetion code's output variables a bit to by Thomas Wouters · 18 years ago
  87. 7464b43 Fix incompatible assignment warning from previous checkin. by Thomas Wouters · 18 years ago
  88. 7f401ef Fix gcc (4.0.x) warning about use of uninitialized variables. by Thomas Wouters · 18 years ago
  89. f86d1e8 Silence gcc (4.0.x) warning about use of uninitialized value. by Thomas Wouters · 18 years ago
  90. 54ac294 Document PEP 352 changes. Also added GeneratorExit. by Brett Cannon · 18 years ago
  91. 65b3dab Fix uninitialized value. (Why are we using bools instead of ints, like we do by Thomas Wouters · 18 years ago
  92. 9c54448 Fix brainfart. by Thomas Wouters · 18 years ago
  93. 1e365b2 Remove gcc (4.0.x) warning about uninitialized value by explicitly setting by Thomas Wouters · 18 years ago
  94. 9bc844e Make Py_ssize_t-clean. by Thomas Wouters · 18 years ago
  95. f98db65 Make Py_ssize_t-clean. by Thomas Wouters · 18 years ago
  96. 0b300be Fix more memory leaks. Will backport to 2.4. by Martin v. Löwis · 18 years ago
  97. c3547a3 Fix C99-ism, and add XXX to comment by Thomas Wouters · 18 years ago
  98. 15bfc3b Make failures in test cases print failing source file. by Martin v. Löwis · 18 years ago
  99. 20e192b Update for 'with' statement. by Brett Cannon · 18 years ago
  100. a9f0687 Fix a bug in nested() - if one of the sub-context-managers swallows the by Guido van Rossum · 18 years ago