1. 416cbce Fixed typo with asynccontextmanager code example (GH-8845) by Alexander Vasin · 6 years ago
  2. bde782b bpo-33468: Add try-finally contextlib.contextmanager example (GH-7816) by Matthias Bussonnier · 6 years ago
  3. c287545 bpo-34067: Include a more easily understood example for nullcontext (GH-8158) by Daniel Porteous · 6 years ago
  4. 1aa094f bpo-29302: Implement contextlib.AsyncExitStack. (#4790) by Ilya Kulakov · 7 years ago
  5. 176baa3 bpo-30241: implement contextlib.AbstractAsyncContextManager (#1412) by Jelle Zijlstra · 7 years ago
  6. 0784a2e bpo-10049: Add a "no-op" (null) context manager to contextlib (GH-4464) by Jesse-Bakker · 7 years ago
  7. 2e62469 bpo-29679: Implement @contextlib.asynccontextmanager (#360) by Jelle Zijlstra · 7 years ago
  8. dd917f8 Closes #27904: Improved logging statements to defer formatting until needed. by Vinay Sajip · 8 years ago
  9. 516f546 Add a missing :term:. by Brett Cannon · 8 years ago
  10. c499f30 Issue #23921: Standardized documentation whitespace formatting. by Serhiy Storchaka · 8 years ago
  11. dba9039 Issue #23921: Standardized documentation whitespace formatting. by Serhiy Storchaka · 8 years ago
  12. 9e080e0 Issue #25609: Introduce contextlib.AbstractContextManager and by Brett Cannon · 8 years ago
  13. e4ba872 Remove redundant leading zeroes in PEP references. by Serhiy Storchaka · 8 years ago
  14. a84f6c3 Issue #25523: Merge a-to-an corrections from 3.4. by Serhiy Storchaka · 9 years ago
  15. d65c949 Issue #25523: Further a-to-an corrections. by Serhiy Storchaka · 9 years ago
  16. 84835ab Issue #25161: Merge full stops from 3.4 into 3.5 by Martin Panter · 9 years ago
  17. d21e0b5 Issue #25161: Add full stops in documentation; patch by Takase Arihiro by Martin Panter · 9 years ago
  18. bb44fe0 Issue #22389: Add contextlib.redirect_stderr(). by Berker Peksag · 10 years ago
  19. 36d8ef9 Issue #21061: correctly note redirect_stdout is reentrant by Nick Coghlan · 10 years ago
  20. f9bd920 Issue 22603: add missing 'self'. Patch by Francisco Fernández Castaño. by Terry Jan Reedy · 10 years ago
  21. e8e2df3 Issue 21558: Fix a typo in the contextlib docs by Raymond Hettinger · 10 years ago
  22. 8e113b4 Close #19403: make contextlib.redirect_stdout reentrant by Nick Coghlan · 11 years ago
  23. 0acceb7 What's New updates prior to alpha by Nick Coghlan · 11 years ago
  24. 8608d26 contextlib doc updates and refactoring by Nick Coghlan · 11 years ago
  25. 240f86d Close #19266: contextlib.ignore -> contextlib.suppress by Nick Coghlan · 11 years ago
  26. a7c17e5 Fix spacing of toplevel items. by Georg Brandl · 11 years ago
  27. b4534ae Docs tweaks for contextlib additions by Nick Coghlan · 11 years ago
  28. 1254b40 Rename contextlib.ignored() to contextlib.ignore(). by Raymond Hettinger · 11 years ago
  29. 088cbf2 Issue #15805: Add contextlib.redirect_stdout() by Raymond Hettinger · 11 years ago
  30. 8c01ffa Merge 3.3 by Barry Warsaw · 11 years ago
  31. d8f870d I was confused before. It's correct to not call .close() inside the with by Barry Warsaw · 11 years ago
  32. 24aa159 Merge 3.3 by Barry Warsaw · 11 years ago
  33. 0aa685a Minor typo in example. by Barry Warsaw · 11 years ago
  34. 05bdd85 Issue #17586: fix typo in contextlib.rst by Ned Deily · 11 years ago
  35. a41fb4b #17351: merge with 3.3. by Ezio Melotti · 11 years ago
  36. c9cfcf1 #17351: merge with 3.2. by Ezio Melotti · 11 years ago
  37. e318a88 Issue #15806: Add contextlib.ignored(). by Raymond Hettinger · 11 years ago
  38. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  39. b7a455f Typo fix by Nick Coghlan · 12 years ago
  40. 2722827 Additional ExitStack examples, and a few other cleanups for the ExitStack docs by Nick Coghlan · 12 years ago
  41. a497b44 Fix the versionadded tags for a couple of my recent changes by Nick Coghlan · 12 years ago
  42. 3267a30 Close #13585: add contextlib.ExitStack to replace the ill-fated contextlib.nested API by Nick Coghlan · 12 years ago
  43. 0ded3e3 Issue #11647: allow contextmanager objects to be used as decorators as described in the docs. Initial patch by Ysj Ray. by Nick Coghlan · 13 years ago
  44. 4f707fd Separate source link from main text. by Raymond Hettinger · 14 years ago
  45. 1048094 Move source links to consistent location and remove wordy, big yellow boxes. by Raymond Hettinger · 14 years ago
  46. 6e6cb8e Provide links to Python source where the code is short, readable and by Éric Araujo · 14 years ago
  47. 8a1caa2 #6522: add a "decorator" directive to explicitly document decorators, and use it in a few places. by Georg Brandl · 14 years ago
  48. 86e78d1 #9110: update to ContextDecorator doc. by Georg Brandl · 14 years ago
  49. b3a8984 Issue 9110. Adding ContextDecorator to contextlib. This enables the creation of APIs that act as decorators as well as context managers. contextlib.contextmanager changed to use ContextDecorator. by Michael Foord · 14 years ago
  50. 9c4d0ed Removed contextlib.nested() by Raymond Hettinger · 15 years ago
  51. 4958cba Merged revisions 73465 via svnmerge from by Nick Coghlan · 15 years ago
  52. 0eaab97 Recorded merge of revisions 73286 via svnmerge from by Georg Brandl · 15 years ago
  53. 91e3b9d Deprecate contextlib.nested(). The with-statement now provides this functionality directly. by Raymond Hettinger · 15 years ago
  54. 71515ca Remove surplus empty lines and convert more files to new optional arg style. by Georg Brandl · 15 years ago
  55. f07d002 Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-70406,70418,70438,70464,70468 via svnmerge from by Benjamin Peterson · 15 years ago
  56. 0f7ede4 Review the doc changes for the urllib package creation. by Georg Brandl · 16 years ago
  57. aca8fd7 Documentation updates for urllib package. Modified the documentation for the by Senthil Kumaran · 16 years ago
  58. faf2f63 Merged revisions 59703-59773 via svnmerge from by Christian Heimes · 17 years ago
  59. d8654cf Merged revisions 59259-59274 via svnmerge from by Christian Heimes · 17 years ago
  60. 9afde1c #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. by Georg Brandl · 17 years ago
  61. 6911e3c Convert all print statements in the docs. by Georg Brandl · 17 years ago
  62. 55ac8f0 Get rid of the remaining versionadded/versionchanged directives. by Georg Brandl · 17 years ago
  63. 116aa62 Move the 3k reST doc tree in place. by Georg Brandl · 17 years ago