1. 0c519b3 Fix problem reported by pychecker where AuthenticationError wasn't imported. by Neal Norwitz · 16 years ago
  2. 971f102 Clarify that some attributes/methods are listed somewhat separately because they are not part of the threading API. by Brett Cannon · 16 years ago
  3. 901e471 #3662: Fix segfault introduced when fixing memory leaks. by Neal Norwitz · 16 years ago
  4. dcf4891 remove note about unimplemented feature by Benjamin Peterson · 16 years ago
  5. 30de77b #3654: fix duplicate test method name. Review by Benjamin P. by Georg Brandl · 16 years ago
  6. 712ee92 generate py3k warnings on __getslice__, __delslice__, and __setslice__ by Benjamin Peterson · 16 years ago
  7. a403e41 Use the actual blacklist of leaky tests by Neal Norwitz · 16 years ago
  8. 3782fba Ignore a couple more tests that report leaks inconsistently. by Neal Norwitz · 16 years ago
  9. 18aa388 Fix: by Neal Norwitz · 16 years ago
  10. 21d2ab7 fix warning by Benjamin Peterson · 16 years ago
  11. 37346b2 #3643 add a few more checks to _testcapi to prevent segfaults by Benjamin Peterson · 16 years ago
  12. 7161cbf Small updates to types member docs, backport from r65994. by Georg Brandl · 16 years ago
  13. 69ed524 Fix bug 3625: test issues on 64bit windows. r=pitrou by Mark Hammond · 16 years ago
  14. 94a7305 d is the correct format string by Christian Heimes · 16 years ago
  15. b6a9556 fix a few get_name() calls and turn then to .name by Benjamin Peterson · 16 years ago
  16. 1cc6963 Fixed two format strings in the _collections module. For example by Christian Heimes · 16 years ago
  17. a27a62e Silenced a compiler warning in the sqlite module by Christian Heimes · 16 years ago
  18. 7d4c317 Silenced compiler warning by Christian Heimes · 16 years ago
  19. fb1813c Changed type of numarenas from uint to size_t to silence a GCC warning on 64bit OSes. Reviewed by Benjamin Peterson. by Christian Heimes · 16 years ago
  20. af1aae3 Issue #1342811: Fixed broken patch. Reviewed by benjamin.peterson. by Robert Schuppenies · 16 years ago
  21. 5c2bb1a issue 3633: Solaris allows fullwidth Unicode digits in isxdigit, so by Mark Dickinson · 16 years ago
  22. 892429b Fix float.fromhex test to give additional information on failure. This by Mark Dickinson · 16 years ago
  23. 6a0b559 done with the release by Barry Warsaw · 16 years ago
  24. 118c905 Tagging 2.6b3 by Barry Warsaw · 16 years ago
  25. 07a4a38 Bump to 2.6b3. by Barry Warsaw · 16 years ago
  26. cd3b74d Reverted r65900. See http://mail.python.org/pipermail/python-checkins/2008-August/073116.html by Hirokazu Yamamoto · 16 years ago
  27. f840296 News for the tp_flags change. by Guido van Rossum · 16 years ago
  28. 84b1e0f News for the imageop fix. by Guido van Rossum · 16 years ago
  29. 73641d7 fix up the multiprocessing docs a little by Benjamin Peterson · 16 years ago
  30. 838c79f Issue #3612: Added some missing basic types in ctypes.wintypes. by Hirokazu Yamamoto · 16 years ago
  31. ccfdcd0 fixed get_file_system in test_os.py ('path' is unicode on py3k and ansi on trunk) by Hirokazu Yamamoto · 16 years ago
  32. e6b5ba6 fix silly errors of mine by Benjamin Peterson · 16 years ago
  33. 86da890 newSymbolTable is not public API by Benjamin Peterson · 16 years ago
  34. e977ad4 deprecate some useless, noop methods in symtable by Benjamin Peterson · 16 years ago
  35. f647dc1 add a NEWS note for new args syntax by Benjamin Peterson · 16 years ago
  36. 67f24f1 follow-up of issue3473: update the compiler package to recognize the new syntax. by Amaury Forgeot d'Arc · 16 years ago
  37. bd6a05f check that the parser module can handle the new keyword syntax by Benjamin Peterson · 16 years ago
  38. bd7bda4 Merged revisions 65876 via svnmerge from by Benjamin Peterson · 16 years ago
  39. 93ebfb1 Issue 1179: [CVE-2007-4965] Integer overflow in imageop module. by Guido van Rossum · 16 years ago
  40. 69ed101 Hopeful fix for issue 1878: remove Py_TPFLAGS_HAVE_VERSION_TAG from by Guido van Rossum · 16 years ago
  41. 80f0ed5 allow keyword args to be passed in after *args #3473 by Benjamin Peterson · 16 years ago
  42. d9ccf8c COM method code is windows specific by Thomas Heller · 16 years ago
  43. 6b094a4 fix a little typo by Benjamin Peterson · 16 years ago
  44. 0ad5ae0 Fix a regression introduced by rev. 63792: ctypes function pointers by Thomas Heller · 16 years ago
  45. 4348a25 silence callable warning in hmac by Benjamin Peterson · 16 years ago
  46. 5bc9f4c issue3352: clean up the multiprocessing API to remove many get_/set_ methods and convert them to properties. Update the docs and the examples included. by Jesse Noller · 16 years ago
  47. 7c972f9 get unparse to at least unparse its self by Benjamin Peterson · 16 years ago
  48. 6626099 Fix strange character in the docstring. by Thomas Heller · 16 years ago
  49. d068ad5 Merged revisions 65853-65854 via svnmerge from by Benjamin Peterson · 16 years ago
  50. 25c3408 Fix grammar. by Georg Brandl · 16 years ago
  51. facdd6e update the threading docs to account for recent changes by Benjamin Peterson · 16 years ago
  52. 6ee1a31 add py3k warnings for old threading APIs by Benjamin Peterson · 16 years ago
  53. 351ffb8 #2234 distutils failed with mingw binutils 2.18.50.20080109. by Amaury Forgeot d'Arc · 16 years ago
  54. 26f5216 fix old API names in test_ssl by Benjamin Peterson · 16 years ago
  55. 82aa201 patch up multiprocessing until it's API can be changed too by Benjamin Peterson · 16 years ago
  56. d810626 bring back the old API by Benjamin Peterson · 16 years ago
  57. a9b2222 change a few uses of the threading APIs by Benjamin Peterson · 16 years ago
  58. cbae869 backport threading property changes by Benjamin Peterson · 16 years ago
  59. d8a8972 change threading.getIdent to a property by Benjamin Peterson · 16 years ago
  60. e5bdccc Backport of r63826. by Eric Smith · 16 years ago
  61. 8e439a1 Fix typo by Nick Coghlan · 16 years ago
  62. 6e8fef0 Issue 2235: document PyObject_HashNotImplemented by Nick Coghlan · 16 years ago
  63. f70385a Belated NEWS entry for r65642 by Nick Coghlan · 16 years ago
  64. 4763f71 Restore Python 2.3 compatibility and remove "with" usage. by Marc-André Lemburg · 16 years ago
  65. 541f7da add a test for reduce's move by Benjamin Peterson · 16 years ago
  66. 08336e3 follup to #3473: don't duplicate the reduce code by Benjamin Peterson · 16 years ago
  67. 8692c79 correct version by Benjamin Peterson · 16 years ago
  68. 88f801d Update __all__ for cookielib, csv, os, and urllib2 for objects imported into by Brett Cannon · 16 years ago
  69. 7b96f07 Remove an unneeded import of abc.ABCMeta from 'inspect'. by Brett Cannon · 16 years ago
  70. 46225e7 Remove two unneeded imports in 'io'. by Brett Cannon · 16 years ago
  71. 25c9d6a Remove imports of 'warnings' that are no longer needed in dummy_thread, by Brett Cannon · 16 years ago
  72. 313bda1 Fix a refleak in bytearray.split and bytearray.rsplit, detected by by Amaury Forgeot d'Arc · 16 years ago
  73. 37553fd set svn:executable on a script by Benjamin Peterson · 16 years ago
  74. 954ea64 #3580: fix a failure in test_os by Antoine Pitrou · 16 years ago
  75. 7dd8547 get the symtable module back in working order by Benjamin Peterson · 16 years ago
  76. fd7c43e #3556: test_raiseMemError consumes an insane amount of memory by Antoine Pitrou · 16 years ago
  77. bebb18b backport r65723: strengthen test_os.test_closerange by Antoine Pitrou · 16 years ago
  78. 41a81eb Backport r65661, r65760: Issue #3575: Incremental decoder's decode by Hirokazu Yamamoto · 16 years ago
  79. c534270 fix ZipFile.testzip() to work with very large embedded files by Antoine Pitrou · 16 years ago
  80. 7f30a68 I forgot to update NEWS. by Hirokazu Yamamoto · 16 years ago
  81. a0fdd72 Issue #2222: Fixed reference leak when occured os.rename() by Hirokazu Yamamoto · 16 years ago
  82. 047e4a9 Update distutils so that it triggers no warnings when run under -3. by Brett Cannon · 16 years ago
  83. 94f243a Issue 2464. Supports a malformation in the URL received in a redirect. by Facundo Batista · 16 years ago
  84. 25f2d89 uhh PySTEntry->ste_unoptimized has to be exposed too by Benjamin Peterson · 16 years ago
  85. 025d939 fix compile errors by Benjamin Peterson · 16 years ago
  86. e3444c8 a few improvements by Benjamin Peterson · 16 years ago
  87. e0d4c7b expose PySTEntry.nested so the symtable module will work by Benjamin Peterson · 16 years ago
  88. 1e45c58 Make test_ossaudiodev work. by Antoine Pitrou · 16 years ago
  89. e0d12eb PySTEntry's constructor is static; there's no point in a fancy API name by Benjamin Peterson · 16 years ago
  90. 765812f Review symtable docs. by Georg Brandl · 16 years ago
  91. 0847332 include filename and line number in SyntaxError by Benjamin Peterson · 16 years ago
  92. 721b145 Silence DeprecationWarning raised by mimetools and rfc822 in cgi. by Brett Cannon · 16 years ago
  93. 0a4128e Silence the DeprecationWarning raised in httplib when mimetools is imported. by Brett Cannon · 16 years ago
  94. abe423e Silence the DeprecationWarning raised by importing mimetools in BaseHTTPServer. by Brett Cannon · 16 years ago
  95. 1e296cc add some documentation for symtable by Benjamin Peterson · 16 years ago
  96. 4acb189 #3424 rearrange the order of tests in imghdr to place more common types first by Benjamin Peterson · 16 years ago
  97. eb90b78 Issue #2776: fixed small issue when handling an URL with double slash by Facundo Batista · 16 years ago
  98. 5b02ef3 note how os.utime should be used for emulating touch by Benjamin Peterson · 16 years ago
  99. 4eb9939 fix markup by Benjamin Peterson · 16 years ago
  100. 1b5c32c Merged revisions 65397 via svnmerge from by Benjamin Peterson · 16 years ago