1. 6a74d34 Fix typo. by Mark Dickinson · 14 years ago
  2. 46aa5c5 #3874: document HTMLParser.unknown_decl(). by Georg Brandl · 14 years ago
  3. 6d23c44 Fix #9412: make list of messages an instance attribute instead of class attribute. by Georg Brandl · 14 years ago
  4. 8dcaa73 #9411: allow selecting an encoding for configparser files. Also adds a new test config file to test special cases. by Georg Brandl · 14 years ago
  5. f206d0e Fix for r83202: improve the handling of empty lines. by Georg Brandl · 14 years ago
  6. 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 · 14 years ago
  7. ebeb44d Remove Python 1.5 compatibility note. by Georg Brandl · 14 years ago
  8. 96f0de9 Update test_os.py according to my last changes on _Environ.__repr__() by Victor Stinner · 14 years ago
  9. bed7117 Issue #9283: Oops, add missing { and } to repr(os.environ) by Victor Stinner · 14 years ago
  10. d73c1a3 #9283: Fix repr(os.environ), display unicode keys and values on POSIX systems by Victor Stinner · 14 years ago
  11. aa5b333 Add missing file. by Georg Brandl · 14 years ago
  12. 02ea12b2 Syntax cleanup. by Florent Xicluna · 14 years ago
  13. 3f8ab96 Fix Issue6325 - robotparse to honor urls with query strings. by Senthil Kumaran · 14 years ago
  14. 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 · 14 years ago
  15. cbb0ae4 #9354: Provide getsockopt() in asyncore file_wrapper(). Patch by Lukas Langa. by Georg Brandl · 14 years ago
  16. 8182b71 Issue #8991: convertbuffer() rejects discontigious buffers by Victor Stinner · 14 years ago
  17. 84befb0 Fix failure introduced in r83182. by Ezio Melotti · 14 years ago
  18. cf44883 Issue #8966: ctypes: Remove implicit bytes-unicode conversion by Victor Stinner · 14 years ago
  19. 42746df Fix ctypes tests to avoid implicit bytes-unicode conversion by Victor Stinner · 14 years ago
  20. 455f7bd Issue #9378: python -m pickle <pickle file> will now load and display by Alexander Belopolsky · 14 years ago
  21. 9a381c7 With skipUnless there is no need to add test classes conditionally. by Ezio Melotti · 14 years ago
  22. c47bd4a Issue #9294: remove dead code in Objects/object.c. Patch by Grant Limberg. by Antoine Pitrou · 14 years ago
  23. 63c4640 Use proper skips and assert* methods in test_asyncore. by Ezio Melotti · 14 years ago
  24. f1046ca Issue #4770: Restrict binascii module to accept only bytes (as specified). by Florent Xicluna · 14 years ago
  25. 4bf7068 Update Sphinx to 1.0.1. by Georg Brandl · 14 years ago
  26. c02cc27 Issue #9384: python -m tkinter will now display a simple demo applet. by Alexander Belopolsky · 14 years ago
  27. 5a63183 The default size of the re module's compiled regular expression cache has by Gregory P. Smith · 14 years ago
  28. f5ae1ef Clarify. by Georg Brandl · 14 years ago
  29. f39f628 Added versionadded entry for the annotate argument. by Alexander Belopolsky · 14 years ago
  30. a1c2ce0 Add Reid. by Georg Brandl · 14 years ago
  31. 571a953 Fix indentation in example. by Georg Brandl · 14 years ago
  32. f6914aa Fix grammar. by Georg Brandl · 14 years ago
  33. 3f911a1 Reword paragraph by Andrew M. Kuchling · 14 years ago
  34. 57a7c3d #7637: fix a grammar error; simplify a sentence by Andrew M. Kuchling · 14 years ago
  35. ae51c17 Add Brian Quinlan. by Georg Brandl · 14 years ago
  36. 6f93419 #9381: fix markup. by Georg Brandl · 14 years ago
  37. aeb0398 Make python version of fromtimestamp behave more like C. by Alexander Belopolsky · 14 years ago
  38. 0f0c332 Add note about #7113 and add Łukasz Langa to ACKS by Brian Curtin · 14 years ago
  39. 9a27b0c Fix #7113. Patch by Łukasz Langa. by Brian Curtin · 14 years ago
  40. 688b9e3 #777884: make .normalize() do nothing for childless nodes, instead of raising an exception by Andrew M. Kuchling · 14 years ago
  41. ea64a6a #7637: clarify description of encoding parameter by Andrew M. Kuchling · 14 years ago
  42. bd6c079 Issue #4686 - add .args to exceptions in the configparsermodule by Michael Foord · 14 years ago
  43. 4d4d1ce #1495229: update the type names used by the XML DOM mapping by Andrew M. Kuchling · 14 years ago
  44. 07de165 Corrected comments on where settrace and setprofile are tested. by Alexander Belopolsky · 14 years ago
  45. 13c4753 Issue #9315: Renamed test_trace to test_sys_settrace and by Alexander Belopolsky · 14 years ago
  46. f6d2ca0 Issue #9315: Revert r83005 before renaming test_trace to by Alexander Belopolsky · 14 years ago
  47. cb615e6 Fix for issue 9367: the test code for os.getgroups by Ronald Oussoren · 14 years ago
  48. 9c71f90 Put listdir default argument into declaration. by Martin v. Löwis · 14 years ago
  49. 803ef8a Implementation for issue 4184 by Richard Jones · 14 years ago
  50. 756f547 #9032: XML-RPC client: Transport.request() retries on EPIPE error by Victor Stinner · 14 years ago
  51. eccc5fa Issue #4629: getopt raises an error if an argument ends with = whereas getopt by Victor Stinner · 14 years ago
  52. a565874 Use _datetime docstring if _datetime is available. by Alexander Belopolsky · 14 years ago
  53. cf86e36 Issue #7989: Added pure python implementation of the datetime module. by Alexander Belopolsky · 14 years ago
  54. c2721b0 Add Brian Brazil. by Brett Cannon · 14 years ago
  55. 030244a Mention in the fnmatch docs that meta-characters in translate cannot be quoted. by Brett Cannon · 14 years ago
  56. 671153d Add queue tests for empty, full, put_nowait, and get_nowait. by Brett Cannon · 14 years ago
  57. 6b0e0e4 Update to 1.0. by Georg Brandl · 14 years ago
  58. a5eacee Fix some markup glitches. by Georg Brandl · 14 years ago
  59. 6086118 #9359: fix typo. Thanks to Piotr Kasprzyk for the patch. by Ezio Melotti · 14 years ago
  60. 81a4a6a Tab test_repr_daemon over so it's included in ThreadTests. Noticed by Amaury. by Brian Curtin · 14 years ago
  61. 4b16e13 Add tests for fnmatch.filter and translate. by Brett Cannon · 14 years ago
  62. cc14320 Make fnmatch be more PEP 8 compliant. by Brett Cannon · 14 years ago
  63. 8cb3619 New tests for smtpd module. Has full coverage for SMTPChannel and SMTPServer. by Richard Jones · 14 years ago
  64. 97d1119 Ensure that sys.prefix can reliably be found by Ronald Oussoren · 14 years ago
  65. 3f5f226 Add more tests for the threading.Thread.repr. by Brett Cannon · 14 years ago
  66. 148724d Rip out old testing code that was inlined in threading. by Brett Cannon · 14 years ago
  67. f079c57 Rename some macros in the sha1 module to no longer conflict with termios.h. by Brett Cannon · 14 years ago
  68. 42e54b2 Stop shadowing a test class. by Brett Cannon · 14 years ago
  69. 1f27479 Explicitly test relative imports by reusing importlib tests. by Brett Cannon · 14 years ago
  70. cfae36f Test calendar.monthrange. by Brett Cannon · 14 years ago
  71. b6ee4f5 This fixes issue7900 by adding code that deals by Ronald Oussoren · 14 years ago
  72. a57edd0 Clarify the wording for threading.is_alive() to not suggest something is by Brett Cannon · 14 years ago
  73. c9e1c7d Issue #6095: Make directory argument to os.listdir optional. by Martin v. Löwis · 14 years ago
  74. e186e38 Fix for issue 7895. Avoid crashing the interpreter by Ronald Oussoren · 14 years ago
  75. c3960c2 Minor tweak of test_osx_env to by Ronald Oussoren · 14 years ago
  76. 3a4e50c Document the fact that the 'test' package is meant only for use by Python by Brett Cannon · 14 years ago
  77. 102d11a Workaround for issue 4047: in some configurations of by Ronald Oussoren · 14 years ago
  78. e8d252d Ensure that the Makefile variable expansion by Ronald Oussoren · 14 years ago
  79. 599b65d Use augassign. by Georg Brandl · 14 years ago
  80. db902ac Skip this test as it doesn't apply to Windows. It was added for by Brian Curtin · 14 years ago
  81. 3679727 reverted distutils its 3.1 state. All new work is now happening in disutils2, and distutils is now feature-frozen. by Tarek Ziadé · 14 years ago
  82. 5db0c94 Add importlib benchmarks which try to be "realistic" by importing the decimal by Brett Cannon · 14 years ago
  83. 3f8ecab Issue #9323: Fixed a bug in trace.py that resulted in loosing the name by Alexander Belopolsky · 14 years ago
  84. 8cb6dbf Issue #5395: check that array.fromfile() re-raises an IOError instead of replacing it by Antoine Pitrou · 14 years ago
  85. de5b024 Remove outdated mention of deprecated functions in the string module - they have been removed in 3.x. by Antoine Pitrou · 14 years ago
  86. 1c52475 Apply patch from Ray Allen for issue 9296 by Doug Hellmann · 14 years ago
  87. 6dfbff3 Minor clarification about importlib.abc.SourceLoader.get_filename. by Brett Cannon · 14 years ago
  88. 3283973 Fix #9316. if/is grammar corrections. by Brian Curtin · 14 years ago
  89. 20f9c3c revert unintended changes by Benjamin Peterson · 14 years ago
  90. 013783c move test_trace.py so as not to conflict with future tests for the trace module by Benjamin Peterson · 14 years ago
  91. 533a167 Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli by Alexander Belopolsky · 14 years ago
  92. d21886c Without this patch the value of sysconfig.get_config_var('LDSHARED') by Ronald Oussoren · 14 years ago
  93. 41e6c3d Fixes Issue #3704: http.cookiejar was not properly handling URLs with a / in by Gregory P. Smith · 14 years ago
  94. 79e17f6 Fix Issue9301 - urllib.parse.unquote and unquote_to_byte to raise TypeError for None. by Senthil Kumaran · 14 years ago
  95. 99212f6 Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. by Stefan Krah · 14 years ago
  96. 9542cc6 Issue #9265: Incorrect name passed as arg[0] when shell=True by Stefan Krah · 14 years ago
  97. f4ebe2e This patch adds a testcase that demonstrates a problem by Ronald Oussoren · 14 years ago
  98. 36d2e67 Issue #9036: Throughout the code base, Py_CHARMASK is used on 8-bit wide by Stefan Krah · 14 years ago
  99. 0674255 Clarification. Yay importlib! by Georg Brandl · 14 years ago
  100. 55353ca pydoc.pager does not promise to use $PAGER. by Georg Brandl · 14 years ago