1. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  2. a872595 - prefer "import ... as" to "import / (assignments) / del" for most things by Fred Drake · 22 years ago
  3. c262a1f Add __all__. (Brett Cannon.) by Guido van Rossum · 22 years ago
  4. 21b6014 The _Event class should be more careful with releasing its lock when by Guido van Rossum · 22 years ago
  5. 92bb6e7 Docstring nits: The module is neither proposed nor new. by Jeremy Hylton · 22 years ago
  6. 29c2106 Explain use of currentThread() in _Condition methods. by Jeremy Hylton · 22 years ago
  7. 39c12bf Explain a little more. by Jeremy Hylton · 22 years ago
  8. af7fde7 Explain a minor mystery. by Jeremy Hylton · 22 years ago
  9. 46ac8eb Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) by Raymond Hettinger · 22 years ago
  10. 8ca162f Partial introduction of bools where appropriate. by Guido van Rossum · 22 years ago
  11. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  12. 45bec8c SF #515023. Make _DummyThread.join() signature match base class (Thread) by Neal Norwitz · 22 years ago
  13. f21b2aa Thread.__bootstrap(): ignore exceptions in the self.__delete() call in by Guido van Rossum · 23 years ago
  14. b64bec3 Whitespace normalization. by Tim Peters · 23 years ago
  15. 44f8696 Patch #428326: New class threading.Timer. by Martin v. Löwis · 23 years ago
  16. e428bb7 Added new BoundedSemaphore class. Closes bug 452836. by Skip Montanaro · 23 years ago
  17. ae8454a of course I muffed it separating the notes code from the initial_value by Skip Montanaro · 23 years ago
  18. b446fc7 add debug calls to self._note for the Semaphore class. This closes bug by Skip Montanaro · 23 years ago
  19. a49e0a0 Remove unused imports (PyChecker) by Andrew M. Kuchling · 23 years ago
  20. a6a4f27 _Condition.wait(): never sleep longer than the timeout time remaining, by Tim Peters · 23 years ago
  21. c951bf9 SF bug [#410708] Condition.wait() and KeyboardInterrupt. by Tim Peters · 23 years ago
  22. b90f89a Whitespace normalization. by Tim Peters · 23 years ago
  23. 5080b33 Comment out a debugging print statement that triggered a complaint in c.l.py. by Guido van Rossum · 24 years ago
  24. 7b4fc17 Revise to use atexit instead of monkeying with sys.exitfunc directly. by Fred Drake · 24 years ago
  25. b5fc749 patch from Charles Waldman-- by Jeremy Hylton · 24 years ago
  26. 39d3bfc Fix a typo in a comment by Andrew M. Kuchling · 24 years ago
  27. e7b146f The third and final doc-string sweep by Ka-Ping Yee. by Guido van Rossum · 24 years ago
  28. 8e7eaa8 Duncan Grisby noted a typo in _DummyThread. by Guido van Rossum · 25 years ago
  29. 5a43e1a Get rid of tabnanny's last complaints. by Guido van Rossum · 26 years ago
  30. b39e461 Two places where _time() should be used said time.time(), which by Guido van Rossum · 26 years ago
  31. b26a1b4 Use random instead of whrandom. by Guido van Rossum · 26 years ago
  32. 7f5013a New Java-style threading module. The doc strings are in a separate module. by Guido van Rossum · 26 years ago