1. 82aa201 patch up multiprocessing until it's API can be changed too by Benjamin Peterson · 16 years ago
  2. d810626 bring back the old API by Benjamin Peterson · 16 years ago
  3. a9b2222 change a few uses of the threading APIs by Benjamin Peterson · 16 years ago
  4. cbae869 backport threading property changes by Benjamin Peterson · 16 years ago
  5. d8a8972 change threading.getIdent to a property by Benjamin Peterson · 16 years ago
  6. e5bdccc Backport of r63826. by Eric Smith · 16 years ago
  7. 8e439a1 Fix typo by Nick Coghlan · 16 years ago
  8. 6e8fef0 Issue 2235: document PyObject_HashNotImplemented by Nick Coghlan · 16 years ago
  9. f70385a Belated NEWS entry for r65642 by Nick Coghlan · 16 years ago
  10. 4763f71 Restore Python 2.3 compatibility and remove "with" usage. by Marc-André Lemburg · 16 years ago
  11. 541f7da add a test for reduce's move by Benjamin Peterson · 16 years ago
  12. 08336e3 follup to #3473: don't duplicate the reduce code by Benjamin Peterson · 16 years ago
  13. 8692c79 correct version by Benjamin Peterson · 16 years ago
  14. 88f801d Update __all__ for cookielib, csv, os, and urllib2 for objects imported into by Brett Cannon · 16 years ago
  15. 7b96f07 Remove an unneeded import of abc.ABCMeta from 'inspect'. by Brett Cannon · 16 years ago
  16. 46225e7 Remove two unneeded imports in 'io'. by Brett Cannon · 16 years ago
  17. 25c9d6a Remove imports of 'warnings' that are no longer needed in dummy_thread, by Brett Cannon · 16 years ago
  18. 313bda1 Fix a refleak in bytearray.split and bytearray.rsplit, detected by by Amaury Forgeot d'Arc · 16 years ago
  19. 37553fd set svn:executable on a script by Benjamin Peterson · 16 years ago
  20. 954ea64 #3580: fix a failure in test_os by Antoine Pitrou · 16 years ago
  21. 7dd8547 get the symtable module back in working order by Benjamin Peterson · 16 years ago
  22. fd7c43e #3556: test_raiseMemError consumes an insane amount of memory by Antoine Pitrou · 16 years ago
  23. bebb18b backport r65723: strengthen test_os.test_closerange by Antoine Pitrou · 16 years ago
  24. 41a81eb Backport r65661, r65760: Issue #3575: Incremental decoder's decode by Hirokazu Yamamoto · 16 years ago
  25. c534270 fix ZipFile.testzip() to work with very large embedded files by Antoine Pitrou · 16 years ago
  26. 7f30a68 I forgot to update NEWS. by Hirokazu Yamamoto · 16 years ago
  27. a0fdd72 Issue #2222: Fixed reference leak when occured os.rename() by Hirokazu Yamamoto · 16 years ago
  28. 047e4a9 Update distutils so that it triggers no warnings when run under -3. by Brett Cannon · 16 years ago
  29. 94f243a Issue 2464. Supports a malformation in the URL received in a redirect. by Facundo Batista · 16 years ago
  30. 25f2d89 uhh PySTEntry->ste_unoptimized has to be exposed too by Benjamin Peterson · 16 years ago
  31. 025d939 fix compile errors by Benjamin Peterson · 16 years ago
  32. e3444c8 a few improvements by Benjamin Peterson · 16 years ago
  33. e0d4c7b expose PySTEntry.nested so the symtable module will work by Benjamin Peterson · 16 years ago
  34. 1e45c58 Make test_ossaudiodev work. by Antoine Pitrou · 16 years ago
  35. e0d12eb PySTEntry's constructor is static; there's no point in a fancy API name by Benjamin Peterson · 16 years ago
  36. 765812f Review symtable docs. by Georg Brandl · 16 years ago
  37. 0847332 include filename and line number in SyntaxError by Benjamin Peterson · 16 years ago
  38. 721b145 Silence DeprecationWarning raised by mimetools and rfc822 in cgi. by Brett Cannon · 16 years ago
  39. 0a4128e Silence the DeprecationWarning raised in httplib when mimetools is imported. by Brett Cannon · 16 years ago
  40. abe423e Silence the DeprecationWarning raised by importing mimetools in BaseHTTPServer. by Brett Cannon · 16 years ago
  41. 1e296cc add some documentation for symtable by Benjamin Peterson · 16 years ago
  42. 4acb189 #3424 rearrange the order of tests in imghdr to place more common types first by Benjamin Peterson · 16 years ago
  43. eb90b78 Issue #2776: fixed small issue when handling an URL with double slash by Facundo Batista · 16 years ago
  44. 5b02ef3 note how os.utime should be used for emulating touch by Benjamin Peterson · 16 years ago
  45. 4eb9939 fix markup by Benjamin Peterson · 16 years ago
  46. 1b5c32c Merged revisions 65397 via svnmerge from by Benjamin Peterson · 16 years ago
  47. 59de7f5 document that waitpid raises OSError by Gregory P. Smith · 16 years ago
  48. b90a8be #2676: email/message.py [Message.get_content_type]: Trivial regex hangs on pathological input by Antoine Pitrou · 16 years ago
  49. a174a37 #3558: Attribute reference binds more tightly than subscription and call. by Georg Brandl · 16 years ago
  50. 11ec65d Issue #3476: make BufferedReader and BufferedWriter thread-safe by Antoine Pitrou · 16 years ago
  51. 63d325e Disable the test until I have one that works. by Thomas Heller · 16 years ago
  52. 64034f9 Fix memory leak: Always DECREF obj in PyBuffer_Release. by Martin v. Löwis · 16 years ago
  53. 6d2014e Try to fix the test on 64-bit platforms. by Thomas Heller · 16 years ago
  54. 57adf22 issue #3554: ctypes.string_at and ctypes.wstring_at must use the by Thomas Heller · 16 years ago
  55. 67d1981 Issue 1432. Fixes a bug caused because of the evolution by Facundo Batista · 16 years ago
  56. 8401eec Properly INCREF reference in Py_buffer. by Martin v. Löwis · 16 years ago
  57. 241b834 Make obj an owned reference in Py_buffer; this checkin by Martin v. Löwis · 16 years ago
  58. 9f4e7fe Added _multiprocessing module support. (VC6) by Hirokazu Yamamoto · 16 years ago
  59. 9329846 Fix markup for various binary operation examples where the operands were bolded by Brett Cannon · 16 years ago
  60. 41a4f46 Fixed test_distutils error (test_build_ext) on VC6. by Hirokazu Yamamoto · 16 years ago
  61. bf3157b Silence the DeprecationWarning of rfc822 triggered by its importation in by Brett Cannon · 16 years ago
  62. eea8eda Issue #2065: VC6 related fix. by Hirokazu Yamamoto · 16 years ago
  63. 581a149 Add Hirokazu Yamamoto. by Martin v. Löwis · 16 years ago
  64. 5bfbd76 update ssl documentation by Bill Janssen · 16 years ago
  65. 39295c2 remove duplicate close() from ssl.py; expose unwrap and add test for it by Bill Janssen · 16 years ago
  66. f91d46a Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by Martin v. Löwis · 16 years ago
  67. aa8efbf Another fix for 4-way universal builds, use the right #ifndef guard by Ronald Oussoren · 16 years ago
  68. a4cb472 Fix typo in the `arch` commandline by Ronald Oussoren · 16 years ago
  69. 5d35373 Fix the connection refused error part of issue 3419, use errno module instead of a static list of possible connection refused messages. by Jesse Noller · 16 years ago
  70. 9fcd4b3 #3134: shutil referenced undefined WindowsError symbol by Antoine Pitrou · 16 years ago
  71. 48361f5 Issue 2235: Py3k warnings are now emitted for classes that will no longer inherit a__hash__ implementation from a parent class in Python 3.x. The standard library and test suite have been updated to not emit these warnings. by Nick Coghlan · 16 years ago
  72. f8d62d2 Remove the fqdn call for issue 3270 by Jesse Noller · 16 years ago
  73. ac014e9 #3540: fix exception name. by Georg Brandl · 16 years ago
  74. 1e13ea9 - Issue #3537: Fix an assertion failure when an empty but presized dict by Georg Brandl · 16 years ago
  75. 1464633 Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated to by Robert Schuppenies · 16 years ago
  76. 9fc5631 Silence warnings in csv about using reduce() when run under -3 by using by Brett Cannon · 16 years ago
  77. 4626586 Use functools.reduce() in difflib instead of __builtin__.reduce() to silence by Brett Cannon · 16 years ago
  78. 83e8184 Copy reduce() to _functools so to have functools.reduce() not raise a warning by Brett Cannon · 16 years ago
  79. c1b76e4 Suppress the warning in asynchat from using buffer() when running udner -3. by Brett Cannon · 16 years ago
  80. 76b8bee move NEWS entry to the appropriate section (oops!) by Antoine Pitrou · 16 years ago
  81. 016b366 #3205: bz2 iterator fails silently on MemoryError by Antoine Pitrou · 16 years ago
  82. 59ce901 Add news item about _sre.compile() re-bytecode validator. by Guido van Rossum · 16 years ago
  83. de781a4 Fix slightly misleading statement in the NEWS file. by Antoine Pitrou · 16 years ago
  84. a032bf4 accept issue 3436 by Skip Montanaro · 16 years ago
  85. b04d485 Remove mention of backquotes in the tutorial. by Georg Brandl · 16 years ago
  86. 463f39d #3519: callee is an expression too. by Georg Brandl · 16 years ago
  87. 3f92bc6 Remove buffer() usage in the socket module by just slicing directly on the by Brett Cannon · 16 years ago
  88. 03446c4 Remove warnings generated for the suprocess module when run under -3. Required by Brett Cannon · 16 years ago
  89. 0563a8f Change the warning emitted for using the buffer() object; memoryview() in 3.0 by Brett Cannon · 16 years ago
  90. d693901 Patch by Ian Charnas from issue 3517. by Guido van Rossum · 16 years ago
  91. 74022ab #1288615: Python code.interact() and non-ASCII input by Antoine Pitrou · 16 years ago
  92. b2793a4 Add some items by Andrew M. Kuchling · 16 years ago
  93. 3aa2a49 Add imp.reload(). This to help with transitioning to 3.0 the reload() built-in by Brett Cannon · 16 years ago
  94. c777a41 Remove duplicate import by Mark Dickinson · 16 years ago
  95. 9752195 Docstring typo by Mark Dickinson · 16 years ago
  96. 03894c5 Fix longstringitem definition. #3505. by Georg Brandl · 16 years ago
  97. 8b762f0 Tracker issue 3487: sre "bytecode" verifier. by Guido van Rossum · 16 years ago
  98. 110a48c #3367: revert rev. 65539: this change causes test_parser to fail by Andrew M. Kuchling · 16 years ago
  99. efa61bc #3367 from Kristjan Valur Jonsson: by Andrew M. Kuchling · 16 years ago
  100. 10288e1 Bug 3228: take a test from Niels Gustaebel's patch, and based on his patch, check for having os.stat available by Andrew M. Kuchling · 16 years ago