1. fa73555 correct logic when pos is after the string #10467 by Benjamin Peterson · 14 years ago
  2. 5c41787 add space by Benjamin Peterson · 14 years ago
  3. 35184ed Issue 9732: __class__ no longer checked on objects by getattr_static by Michael Foord · 14 years ago
  4. e516265 Issue 9732: fetch the method resolution order from the type metaclass directly in getattr_static by Michael Foord · 14 years ago
  5. 6bb9989 #1574217: only swallow AttributeErrors in isinstance, not everything. by R. David Murray · 14 years ago
  6. cc7ebb8 Issue 9732: remove use of __class__ in inspect.getattr_static and note the mro exception to code execution by Michael Foord · 14 years ago
  7. c264c09 configparser: the name of the DEFAULT section is now customizable by Łukasz Langa · 14 years ago
  8. 95fc51d Issue 9732: addition of getattr_static to the inspect module by Michael Foord · 14 years ago
  9. 89197fe socket.gethostbyname(socket.gethostname()) can fail when host name resolution is not set up correctly; do not fail test_socket if this is the case. by Georg Brandl · 14 years ago
  10. 9f1c1dc #10465: fix broken delegation in __getattr__ of _PaddedFile. by Georg Brandl · 14 years ago
  11. 4ccc137 Issue #9920: Skip tests for cmath.atan and cmath.atanh applied to by Mark Dickinson · 14 years ago
  12. b304d0b Fixes a timing-related failure on Windows (issue 10183) by Brian Quinlan · 14 years ago
  13. 722b5fd Make test class name unique so that both test classes run. by R. David Murray · 14 years ago
  14. 5b06681 use %R format code; fixes invalid dereferencing #10391 by Benjamin Peterson · 14 years ago
  15. 98b644f Fix test_ssl_presence when ssl is not present by Antoine Pitrou · 14 years ago
  16. de60918 Wrap all test_nntplib methods accessing a remote server in a transient_internet() by Antoine Pitrou · 14 years ago
  17. 6a0b5c4 Code Changes as per review comments by Antoine Pitrou. by Senthil Kumaran · 14 years ago
  18. daa29d0 Fix Issue2244 - urllib unquotes user and password info multiple times - Patch by Theodore Turocy by Senthil Kumaran · 14 years ago
  19. d8b661d Issue #10356: hash(Decimal("sNaN")) now raises ValueError instead of TypeError. by Stefan Krah · 14 years ago
  20. d28f790 Make test_nntplib more robust when the "last" article in a group can't be retrieved by Antoine Pitrou · 14 years ago
  21. 8ce1f1f Fix Issue 9991: xmlrpc client ssl check faulty by Senthil Kumaran · 14 years ago
  22. 6331520 Issue 10260 Adding the wait_for() method to threading.Condition by Kristján Valur Jónsson · 14 years ago
  23. 8fb9b86 Fix #8886. Use context managers throughout the test. by Brian Curtin · 14 years ago
  24. a47bbf5 Issue #10446: Several changes to module documentation generated by pydoc: by Alexander Belopolsky · 14 years ago
  25. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  26. 12ae290 Use laxer timeouts in barrier tests by Antoine Pitrou · 14 years ago
  27. 664c2d1 Issue #10443: Add the SSLContext.set_default_verify_paths() method. by Antoine Pitrou · 14 years ago
  28. b6d4ee5 Issue #10440: Support RUSAGE_THREAD as a constant in the resource module. by Antoine Pitrou · 14 years ago
  29. dc817b2 Issue #10356: Decimal(-1).__hash__() should equal hash(Decimal(-1)). by Stefan Krah · 14 years ago
  30. dbe7519 Issue #10429: IMAP.starttls() stored the capabilities as bytes objects, by Antoine Pitrou · 14 years ago
  31. 36c0dbc Avoid some BytesWarnings when running test_imaplib in verbose mode by Antoine Pitrou · 14 years ago
  32. 74ebd9e Fix Issue5111 - Wrap the Ipv6 host with [] in the Host header by Senthil Kumaran · 14 years ago
  33. 5ccafba Streamline a cmath test (and fix some overlong lines into the bargain). by Mark Dickinson · 14 years ago
  34. fec6620 Make Fraction(-1).__hash__() return -2 rather than -1 (see issue 10356). by Mark Dickinson · 14 years ago
  35. 45ca987 Switch from gmane to another provider for NNTP tests (as gmane isn't reliable by Antoine Pitrou · 14 years ago
  36. f3b001f Issue #4471: Add the IMAP.starttls() method to enable encryption on by Antoine Pitrou · 14 years ago
  37. 6495136 #1466065: add validate option to base64.b64decode by R. David Murray · 14 years ago
  38. 8d9a4e6 Disable test_python_builders in test_xmlrpc_net, following buildbot upgrade on python.org by Antoine Pitrou · 14 years ago
  39. 26d513c Issue #5412: extend configparser to support mapping access by Łukasz Langa · 14 years ago
  40. cf9f980 Issue #10372: Import the warnings module only after the IO library is by Antoine Pitrou · 14 years ago
  41. d79f3c8 Issue #4471: Properly shutdown socket in IMAP.shutdown(). Patch by by Antoine Pitrou · 14 years ago
  42. b1436f1 Fix IMAP.login() to work properly. by Antoine Pitrou · 14 years ago
  43. adffced Preserve the original environment (e.g. LD_LIBRARY_PATH) by Antoine Pitrou · 14 years ago
  44. 9bc3568 Use script_helper in one more test by Antoine Pitrou · 14 years ago
  45. 2afcbf2 Issue #9244: multiprocessing.pool: Worker crashes if result can't be encoded by Ask Solem · 14 years ago
  46. fb04691 Issue #10022: The dictionary returned by the `getpeercert()` method by Antoine Pitrou · 14 years ago
  47. 1cb121e Issue #1926: Add support for NNTP over SSL on port 563, as well as by Antoine Pitrou · 14 years ago
  48. ec30b3d Fix Issue10205 - XML QName error when different tags have same QName. by Senthil Kumaran · 14 years ago
  49. 92665ab test_tokenize: use self.assertEqual() instead of plain assert by Victor Stinner · 14 years ago
  50. 58c0752 Issue #10335: Add tokenize.open(), detect the file encoding using by Victor Stinner · 14 years ago
  51. 18c3373 Fixed unit test failure on Windows by Alexander Belopolsky · 14 years ago
  52. ea510eb Fix memory consumption advertised by some test cases by Antoine Pitrou · 14 years ago
  53. d7ae299 Fix test_hashlib with the bigmem option by Antoine Pitrou · 14 years ago
  54. 6672ea9 Streamlined code in trace.Ignore and added unit tests. by Alexander Belopolsky · 14 years ago
  55. 7dff9e0 #10321: Add support for sending binary DATA and Message objects to smtplib by R. David Murray · 14 years ago
  56. d95c7b5 Issue #10347: ignore leading test count ("[ 1/340]") when using the -f option to regrtest. by Antoine Pitrou · 14 years ago
  57. a837aa6 Update assertComplexIdentical to handle nans correctly. by Mark Dickinson · 14 years ago
  58. be3da38 Issue #10337: skip tests of tanh() sign in test_math and test_cmath if tanh() by Victor Stinner · 14 years ago
  59. baa0f05 Add a dtoa.c test value that triggered a bug in recent versions of by Mark Dickinson · 14 years ago
  60. 2e598fa test_concurrent_futures: remove temporary hack by Victor Stinner · 14 years ago
  61. 72f6620 Removed unused test classes from test_format_map(). by Eric Smith · 14 years ago
  62. 7322fcf test_concurrent_futures: dump ulimit -a to check a failure on x86 FreeBSD 7.2 3.x, buildbot by Victor Stinner · 14 years ago
  63. 7fa886d Prevent ResourceWarnings in test_gettext by Éric Araujo · 14 years ago
  64. 37a8933 Fix caching error found by regrtest -R (#10229) by Éric Araujo · 14 years ago
  65. 1c50549 Fix one omission in r78359 by Éric Araujo · 14 years ago
  66. ecd34cb Clear up ResourceWarnings by Brian Curtin · 14 years ago
  67. 243757e Issue #10180: Pickling file objects is now explicitly forbidden, since by Antoine Pitrou · 14 years ago
  68. 4a5f967 Output served URL when running ssl_servers by Antoine Pitrou · 14 years ago
  69. 66c95c7 Fix test_httplib when built without threads by Antoine Pitrou · 14 years ago
  70. a078115 Issue #10282: Add a `nntp_implementation` attribute to NNTP objects. by Antoine Pitrou · 14 years ago
  71. de11b18 Close subprocess pipes to clean up ResourceWarnings by Brian Curtin · 14 years ago
  72. 19a5379 Fix a number of ResourceWarnings on Windows due to open pipes. by Brian Curtin · 14 years ago
  73. 5ad0bd6 Add socket cleanup for ResourceWarning and update test to use skip decorator by Brian Curtin · 14 years ago
  74. ab747a7 Fix ResourceWarning from subprocess pipes being left open. by Brian Curtin · 14 years ago
  75. 994ad6c Fix ResourceWarning from subprocess pipe. by Brian Curtin · 14 years ago
  76. 43ec577 Close subprocess pipes in _kill. Fixes a number of ResourceWarnings. by Brian Curtin · 14 years ago
  77. 3c6a951 Add cleanups to stdout/stderr pipes to remove ResourceWarnings. by Brian Curtin · 14 years ago
  78. 08eeada Issue #10283: Add a `group_pattern` argument to NNTP.list(). by Antoine Pitrou · 14 years ago
  79. 99c4830 Issue #3699: Fix test_bigaddrspace and extend it to test bytestrings by Antoine Pitrou · 14 years ago
  80. aeb6cee Issue #10293: Remove obsolete field in the PyMemoryView structure, by Antoine Pitrou · 14 years ago
  81. 27bbca6 Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.format(**mapping), except mapping does not get converted to a dict. by Eric Smith · 14 years ago
  82. 3cdd5cb Issue #5391: mmap.read_byte() should return unsigned value [0, 255] by Hirokazu Yamamoto · 14 years ago
  83. 3beb38f Fix three ResourceWarnings. by Brian Curtin · 14 years ago
  84. b6d4a8e Implement http://bugs.python.org/issue10155 using And Clover's patch, w/added by Phillip J. Eby · 14 years ago
  85. 4103bc0 Issue #10281: nntplib now returns None for absent fields in the OVER/XOVER by Antoine Pitrou · 14 years ago
  86. 0eee1f5 Disabling SNI test; server admin would not like us to use it for automated tests. by Antoine Pitrou · 14 years ago
  87. 0d1b38c Issue #10173: test_multiprocessing shouldn't pickle TestCase instances by Antoine Pitrou · 14 years ago
  88. f80b3f7 Issue #10280: NNTP.nntp_version should reflect the highest version by Antoine Pitrou · 14 years ago
  89. e159422 Update wsgiref for PEP 3333, and fix errors introduced into the test suite by converting type() checks to isinstance(). by Phillip J. Eby · 14 years ago
  90. 5a43f72 remove some things that are now tested by Benjamin Peterson · 14 years ago
  91. ed82ca1 Ditch some dead code in test_unicode_file. by Brett Cannon · 14 years ago
  92. fca2e8a Fix bug 9340 - argparse parse_known_args didn't work with subparsers by Steven Bethard · 14 years ago
  93. b68928b Clean up ResourceWarnings. Explictly close stdout from the subprocess. by Brian Curtin · 14 years ago
  94. 21ebbb7 Clean up ResourceWarnings due to unclosed sockets. by Brian Curtin · 14 years ago
  95. be647e2 Remove extracted trees at the end of the test. by Martin v. Löwis · 14 years ago
  96. 16f344d Issue #10184: Touch directories only once when extracting a tarfile. by Martin v. Löwis · 14 years ago
  97. 3b87cca Reverted inadvertent change from r86095 by Alexander Belopolsky · 14 years ago
  98. ea13d9d Issue #10199: Moved Demo/turtle under Lib/ by Alexander Belopolsky · 14 years ago
  99. 8291af2 Fix ResourceWarning occuring on Windows. Close stdout/stderr pipes. by Brian Curtin · 14 years ago
  100. 49998ee Fix for issue 9355 where with multiple mutually exclusive arguments, some brackets were being lost in the usage messages by Steven Bethard · 14 years ago