1. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 18 years ago
  2. d064899 Get rid of all __private variables and methods in the threading module. by Guido van Rossum · 18 years ago
  3. 61e21b5 Merged revisions 57152-57220 via svnmerge from by Guido van Rossum · 18 years ago
  4. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 18 years ago
  5. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 18 years ago
  6. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 18 years ago
  7. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
  8. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  9. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 19 years ago
  10. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 19 years ago
  11. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 19 years ago
  12. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 19 years ago
  13. 1a5e21e Updates to the with-statement: by Guido van Rossum · 19 years ago
  14. ad07ff2 Prevent threading.Thread.join() from blocking when a previous call raised an by Brett Cannon · 20 years ago
  15. a4a8b82 bug [ 1238170 ] threading.Thread uses {} as default argument by Georg Brandl · 20 years ago
  16. 90cece7 Fixed typo in verbose output. by Brett Cannon · 21 years ago
  17. 711906e threading._DummyThread.__init__(): document obscure new code. by Tim Peters · 21 years ago
  18. e6539c4 In _DummyThread objects the lock stored in __block (allocated thanks to by Brett Cannon · 21 years ago
  19. 2142993 Thread.__delete: Discussion of internal obscurities belongs in comments by Tim Peters · 21 years ago
  20. 8b3d92a Fix bug where a KeyError was raised if -O was being used for the interpreter by Brett Cannon · 21 years ago
  21. d15dc06 Implemented thread-local data as proposed on python-dev: by Jim Fulton · 21 years ago
  22. cc4e935 threading.Thread objects will now print a traceback for an exception raised by Brett Cannon · 21 years ago
  23. 4b6b7f1 Remove calls to currentThread() in _Condition methods that were side-effect. by Brett Cannon · 21 years ago
  24. 756b3f3 * Move collections.deque() in from the sandbox by Raymond Hettinger · 22 years ago
  25. f607fc5 Add traceback.format_exc(). by Neil Schemenauer · 22 years ago
  26. 59aba12 Make the classes exposed by threading.py new-style classes. This is by Tim Peters · 22 years ago
  27. 0939fac Resolved minor XXX question in the obvious way. by Tim Peters · 22 years ago
  28. d1b108b Whitespace normalization. by Tim Peters · 22 years ago
  29. 89392c0 Remove stub settrace() and setprofile() calls. by Jeremy Hylton · 22 years ago
  30. bfccb35 Add settrace() and setprofile() functions to the threading library. by Jeremy Hylton · 22 years ago
  31. 685e697 Provide dummy (do-nothing) settrace() and setprofile() functions until by Tim Peters · 22 years ago
  32. 68468eb Get rid of many apply() calls. by Guido van Rossum · 22 years ago
  33. a872595 - prefer "import ... as" to "import / (assignments) / del" for most things by Fred Drake · 23 years ago
  34. c262a1f Add __all__. (Brett Cannon.) by Guido van Rossum · 23 years ago
  35. 21b6014 The _Event class should be more careful with releasing its lock when by Guido van Rossum · 23 years ago
  36. 92bb6e7 Docstring nits: The module is neither proposed nor new. by Jeremy Hylton · 23 years ago
  37. 29c2106 Explain use of currentThread() in _Condition methods. by Jeremy Hylton · 23 years ago
  38. 39c12bf Explain a little more. by Jeremy Hylton · 23 years ago
  39. af7fde7 Explain a minor mystery. by Jeremy Hylton · 23 years ago
  40. 46ac8eb Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) by Raymond Hettinger · 23 years ago
  41. 8ca162f Partial introduction of bools where appropriate. by Guido van Rossum · 23 years ago
  42. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 23 years ago
  43. 45bec8c SF #515023. Make _DummyThread.join() signature match base class (Thread) by Neal Norwitz · 23 years ago
  44. f21b2aa Thread.__bootstrap(): ignore exceptions in the self.__delete() call in by Guido van Rossum · 24 years ago
  45. b64bec3 Whitespace normalization. by Tim Peters · 24 years ago
  46. 44f8696 Patch #428326: New class threading.Timer. by Martin v. Löwis · 24 years ago
  47. e428bb7 Added new BoundedSemaphore class. Closes bug 452836. by Skip Montanaro · 24 years ago
  48. ae8454a of course I muffed it separating the notes code from the initial_value by Skip Montanaro · 24 years ago
  49. b446fc7 add debug calls to self._note for the Semaphore class. This closes bug by Skip Montanaro · 24 years ago
  50. a49e0a0 Remove unused imports (PyChecker) by Andrew M. Kuchling · 24 years ago
  51. a6a4f27 _Condition.wait(): never sleep longer than the timeout time remaining, by Tim Peters · 24 years ago
  52. c951bf9 SF bug [#410708] Condition.wait() and KeyboardInterrupt. by Tim Peters · 24 years ago
  53. b90f89a Whitespace normalization. by Tim Peters · 25 years ago
  54. 5080b33 Comment out a debugging print statement that triggered a complaint in c.l.py. by Guido van Rossum · 25 years ago
  55. 7b4fc17 Revise to use atexit instead of monkeying with sys.exitfunc directly. by Fred Drake · 25 years ago
  56. b5fc749 patch from Charles Waldman-- by Jeremy Hylton · 25 years ago
  57. 39d3bfc Fix a typo in a comment by Andrew M. Kuchling · 25 years ago
  58. e7b146f The third and final doc-string sweep by Ka-Ping Yee. by Guido van Rossum · 26 years ago
  59. 8e7eaa8 Duncan Grisby noted a typo in _DummyThread. by Guido van Rossum · 26 years ago
  60. 5a43e1a Get rid of tabnanny's last complaints. by Guido van Rossum · 27 years ago
  61. b39e461 Two places where _time() should be used said time.time(), which by Guido van Rossum · 27 years ago
  62. b26a1b4 Use random instead of whrandom. by Guido van Rossum · 27 years ago
  63. 7f5013a New Java-style threading module. The doc strings are in a separate module. by Guido van Rossum · 27 years ago