1. 6e451df Followup to r83869 and issue #8524: rename socket.forget() to socket.detach() by Antoine Pitrou · 15 years ago
  2. f0769e8 Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded variations. Docs changed. by Senthil Kumaran · 15 years ago
  3. a492362 issue #9452: by Fred Drake · 15 years ago
  4. f14c263 Also temporarily revert r83871, to fix compilation on buildbots by Antoine Pitrou · 15 years ago
  5. cca6531 use 3 space indents by Benjamin Peterson · 15 years ago
  6. 5b0c1e0 Issue 7846: fnmatch cache can grow without bound by Raymond Hettinger · 15 years ago
  7. e43f9d0 Issue #8524: Add a forget() method to socket objects, so as to put the by Antoine Pitrou · 15 years ago
  8. 696e035 Issue #477863: Print a warning at shutdown if gc.garbage is not empty. by Antoine Pitrou · 15 years ago
  9. c17f172 Issue #8047: Fix the xml.etree serializer to return bytes by default. by Florent Xicluna · 15 years ago
  10. d331ce9 Issue #9507: Named tuple repr will now automatically display the right by Raymond Hettinger · 15 years ago
  11. a6b76ba Improve readability of collections docs by adding a summary table by Raymond Hettinger · 15 years ago
  12. 648e725 Fix typo by Raymond Hettinger · 15 years ago
  13. 0e833c3 Document implementation notes for priority queues by Raymond Hettinger · 15 years ago
  14. 769b6d3 Clean-up docstring in examples. by Raymond Hettinger · 15 years ago
  15. 87c9d6c Improve the docs for bisect to cover common searching tasks. by Raymond Hettinger · 15 years ago
  16. 08d01ee Add partition recipe to itertools docs. by Raymond Hettinger · 15 years ago
  17. ef9efbd Fix #9324: Add parameter validation to signal.signal on Windows in order by Brian Curtin · 15 years ago
  18. c34d76c Issue #3854: Documented using the sqlite3 module with multiple threads. by Gerhard Häring · 15 years ago
  19. f045d77 Issue #9524: Document that two CTRL* signals are meant for use only by Brian Curtin · 15 years ago
  20. ae78018 Issue 5077: Add documentation for operator fixer. by Alexandre Vassalotti · 15 years ago
  21. 74f5902 Issue #9498: Add reference to sys.float_info from 'numeric types' docs. by Mark Dickinson · 15 years ago
  22. 560f764 Issue #8814: function annotations (the `__annotations__` attribute) by Antoine Pitrou · 15 years ago
  23. 84c7d9f Fix Issue754016 - urlparse goes wrong with IP:port without scheme by Senthil Kumaran · 15 years ago
  24. 88c49fe #9444: use first of prefix_chars for help opt instead of raising error by R. David Murray · 15 years ago
  25. 7cb1319 Terminology fix: exceptions are raised, except in generator.throw(). by Georg Brandl · 15 years ago
  26. 1800934 #9061: warn that single quotes are never escaped. by Georg Brandl · 15 years ago
  27. 98be996 #9238: zipfile does handle archive comments. by Georg Brandl · 15 years ago
  28. 62e4231 #7797: be explicit about bytes-oriented interface of base64 functions. by Georg Brandl · 15 years ago
  29. a1631b3 #9019: remove false (in 3k) claim about Headers updates. by Georg Brandl · 15 years ago
  30. b2566cf #9111: document that do_help() looks at docstrings. by Georg Brandl · 15 years ago
  31. 0c7ade2 Remove redundant information. by Georg Brandl · 15 years ago
  32. c589a70 #9438: clarify that constant names also cannot be assigned as attributes. by Georg Brandl · 15 years ago
  33. 9499bb7 Remove XXX comment that was displayed. by Georg Brandl · 15 years ago
  34. 7528b9b #8172: how does one use a property? by Georg Brandl · 15 years ago
  35. 353ebce #7386: add example that shows that trailing path separators are stripped. by Georg Brandl · 15 years ago
  36. 790f831 Rewording the getheader method of HTTPResponse. by Senthil Kumaran · 15 years ago
  37. 9f8dc44 Fix Issue8572 - httplib getheader() throws error instead of default by Senthil Kumaran · 15 years ago
  38. c8dc62d Add example applications for the LRU and LFU cache docs. by Raymond Hettinger · 15 years ago
  39. 0bccc18 #8046: add context manager protocol support to mmap objects. Also add closed property. by Georg Brandl · 15 years ago
  40. 0941012 #8735: better explain semantics of *values* argument for parse(). by Georg Brandl · 15 years ago
  41. bb19015 Fix "Berkeley" name. by Georg Brandl · 15 years ago
  42. 6cb7b65 #1286: allow using fileinput.FileInput as context manager. by Georg Brandl · 15 years ago
  43. e42a59d #9442: do not document a specific format for sys.version; rather refer to version_info and the platform module. by Georg Brandl · 15 years ago
  44. 721507b #5778: document that sys.version can contain a newline. by Georg Brandl · 15 years ago
  45. 2e7346a Re-commit r83327 now that the release is done. by Georg Brandl · 15 years ago
  46. f55c315 #9430: document timedelta str() and repr(). by Georg Brandl · 15 years ago
  47. 014e0ca Revert r83327. This will have to wait until after the alpha1 release. by Georg Brandl · 15 years ago
  48. 4821ef8 Document how to change OrderedDict update order from first to last. by Raymond Hettinger · 15 years ago
  49. 9e46ef8 Add functools.lfu_cache() and functools.lru_cache(). by Raymond Hettinger · 15 years ago
  50. 0a9c3e9 Show the traceback line numbers as well as the current line numbers if an exception is being debugged. Courtesy of pdb++ by Antonio Cuni. Also document -> and >> markers for "list". by Georg Brandl · 15 years ago
  51. e59ca2a Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni. by Georg Brandl · 15 years ago
  52. d2fd4ca Add Breakpoint.bpformat(), which returns the info usually printed by bpprint(). Necessary for major refactoring of pdb output handling. by Georg Brandl · 15 years ago
  53. c4fbcdc Add note about surprising behaviour from round function. by Mark Dickinson · 15 years ago
  54. 7410dd1 #809887: improve pdb feedback for breakpoint-related actions. Also add a functional test for these commands. by Georg Brandl · 15 years ago
  55. 46b9afc #1472251: remove addition of "\n" to code given to pdb.run[eval](), the bug in exec() that made this necessary has been fixed. Also document that you can give code objects to run() and runeval(), and add some tests to test_pdb. by Georg Brandl · 15 years ago
  56. 26a0f87 Document the "jump" command in pdb.__doc__, and add a version tag for "until X". by Georg Brandl · 15 years ago
  57. 2dfec55 Allow giving an explicit line number to "until". by Georg Brandl · 15 years ago
  58. e023091 #1437051: allow "continue"/"next"/etc. in .pdbrc, also add pdb -c option to give these commands. This allows to run a script until an exception occurs. by Georg Brandl · 15 years ago
  59. b3b96bd Clarification. by Georg Brandl · 15 years ago
  60. 056cb93 #6630: allow customizing flags for compiling string.Template.idpattern. by Georg Brandl · 15 years ago
  61. 8a1caa2 #6522: add a "decorator" directive to explicitly document decorators, and use it in a few places. by Georg Brandl · 15 years ago
  62. b0a4e3c #9388: remove ERA_YEAR which is never defined in the source code. by Georg Brandl · 15 years ago
  63. ac958ce #9397: remove mention of dbm.bsd which does not exist anymore. by Georg Brandl · 15 years ago
  64. 933b974 Use correct directive and name. by Georg Brandl · 15 years ago
  65. 436ccdc #9407: document configparser.Error. by Georg Brandl · 15 years ago
  66. 470a123 #1090076: explain the behavior of *vars* in get() better. by Georg Brandl · 15 years ago
  67. 46aa5c5 #3874: document HTMLParser.unknown_decl(). by Georg Brandl · 15 years ago
  68. 8dcaa73 #9411: allow selecting an encoding for configparser files. Also adds a new test config file to test special cases. by Georg Brandl · 15 years ago
  69. c62a704 #6538: fix regex documentation again -- use fictional class names "regex" and "match" but do not document them as classes, remove 1.5 compat info and use new default argument syntax where possible. by Georg Brandl · 15 years ago
  70. ebeb44d Remove Python 1.5 compatibility note. by Georg Brandl · 15 years ago
  71. 96a60ae #1682942: add some ConfigParser features: alternate delimiters, alternate comments, empty lines in values. Also enhance the docs with more examples and mention SafeConfigParser before ConfigParser. Patch by Lukas Langa, review by myself, Eric and Ezio. by Georg Brandl · 15 years ago
  72. f1046ca Issue #4770: Restrict binascii module to accept only bytes (as specified). by Florent Xicluna · 15 years ago
  73. c02cc27 Issue #9384: python -m tkinter will now display a simple demo applet. by Alexander Belopolsky · 15 years ago
  74. f39f628 Added versionadded entry for the annotate argument. by Alexander Belopolsky · 15 years ago
  75. 571a953 Fix indentation in example. by Georg Brandl · 15 years ago
  76. 3f911a1 Reword paragraph by Andrew M. Kuchling · 15 years ago
  77. 57a7c3d #7637: fix a grammar error; simplify a sentence by Andrew M. Kuchling · 15 years ago
  78. ea64a6a #7637: clarify description of encoding parameter by Andrew M. Kuchling · 15 years ago
  79. 4d4d1ce #1495229: update the type names used by the XML DOM mapping by Andrew M. Kuchling · 15 years ago
  80. 9c71f90 Put listdir default argument into declaration. by Martin v. Löwis · 15 years ago
  81. 803ef8a Implementation for issue 4184 by Richard Jones · 15 years ago
  82. 030244a Mention in the fnmatch docs that meta-characters in translate cannot be quoted. by Brett Cannon · 15 years ago
  83. a5eacee Fix some markup glitches. by Georg Brandl · 15 years ago
  84. a57edd0 Clarify the wording for threading.is_alive() to not suggest something is by Brett Cannon · 15 years ago
  85. c9e1c7d Issue #6095: Make directory argument to os.listdir optional. by Martin v. Löwis · 15 years ago
  86. 3a4e50c Document the fact that the 'test' package is meant only for use by Python by Brett Cannon · 15 years ago
  87. de5b024 Remove outdated mention of deprecated functions in the string module - they have been removed in 3.x. by Antoine Pitrou · 15 years ago
  88. 6dfbff3 Minor clarification about importlib.abc.SourceLoader.get_filename. by Brett Cannon · 15 years ago
  89. 55353ca pydoc.pager does not promise to use $PAGER. by Georg Brandl · 15 years ago
  90. 70f355d Clarify. by Georg Brandl · 15 years ago
  91. 7f54dce Document the extra epoll flags by Jean-Paul Calderone · 15 years ago
  92. 7f94f39 There is no method named "register(fd, eventmask)"; fix markup to just indicate this is code. by Jean-Paul Calderone · 15 years ago
  93. d319ad5 nest method and attribute doc by Benjamin Peterson · 15 years ago
  94. 0b9fb80 use classmethod by Benjamin Peterson · 15 years ago
  95. 86e78d1 #9110: update to ContextDecorator doc. by Georg Brandl · 15 years ago
  96. 02053ee #9279: remove the pdb.doc file, put its contents in pdb.__doc__. Also sync this and the pdb docs, introduce a new directive for pdb commands and a role to link to them. by Georg Brandl · 15 years ago
  97. 929d384 Issue #9268: Add annotation option to pickletools.dis by Alexander Belopolsky · 15 years ago
  98. fc9e08d High byte is the exit status. by Stefan Krah · 15 years ago
  99. e767e04 #9258: fix copy-paste errors. by Georg Brandl · 15 years ago
  100. 9c558bc Fix documentation typo: wprite() -> write(). by Jeroen Ruigrok van der Werven · 15 years ago