1. 6557aac pybsddb 4.8.4 integration. Please, comment in issue #8156 by Jesus Cea · 15 years ago
  2. 31e928e Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger names exist at the same time. by Vinay Sajip · 15 years ago
  3. c7790ed Fix the NEWS about my last commit: an unicode subclass can now override the by Victor Stinner · 15 years ago
  4. 3017a7b Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs. by Vinay Sajip · 15 years ago
  5. 95affc4 Issue #1583863: An unicode subclass can now override the __str__ method by Victor Stinner · 15 years ago
  6. eef159b Correct usage message displayed for python -m unittest -h by Michael Foord · 15 years ago
  7. 0ce1672 expected failure should not trigger failfast behavior in unittest. by Michael Foord · 15 years ago
  8. 4989969 Removing Python 2.3 compatibility code from unittest. by Michael Foord · 15 years ago
  9. db003cb Fix failing test committed by accident. by Michael Foord · 15 years ago
  10. 1b9e953 -f/--failfast command line option for unittest. Issue 8074. Documentation still needed. Plus minor change to test_unittest to allow it to be run with python -m test.unittest by Michael Foord · 15 years ago
  11. b1aa30f Issue 7815. __unittest in module globals trims frames from reported stacktraces in unittest. by Michael Foord · 15 years ago
  12. bb9d726 take into account keyword arguments when passing too many args by Benjamin Peterson · 15 years ago
  13. 9654589 improve error message from passing inadequate number of keyword arguments #6474 by Benjamin Peterson · 15 years ago
  14. 54bc22e don't write duplicate tests by Benjamin Peterson · 15 years ago
  15. 52b32b6 fix import by Benjamin Peterson · 15 years ago
  16. 448da71 Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets. by Antoine Pitrou · 15 years ago
  17. 77a8849 #8180: Fix test_pep277 on OS X and add more tests for special Unicode normalization cases. by Florent Xicluna · 15 years ago
  18. e39b2ec rewrite a bit by Benjamin Peterson · 15 years ago
  19. cf82fa6 Issue #8179: Fix macpath.realpath() on a non-existing path. by Florent Xicluna · 15 years ago
  20. b88fbf4 Use assertRaises and add a specific warning filter. by Florent Xicluna · 15 years ago
  21. 3f5d146 No more deprecation warnings for distutils.sysconfig, following r78666. by Florent Xicluna · 15 years ago
  22. af61719 Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" statements. by Florent Xicluna · 15 years ago
  23. 8f43cec Fix py3k warnings in test_decimal, using unittest.assertItemsEqual. by Florent Xicluna · 15 years ago
  24. 4a0f8b8 Silence more py3k warnings in unittest.case. by Florent Xicluna · 15 years ago
  25. 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
  26. 8cb253f Change order of arguments in a unittest function. by Michael Foord · 15 years ago
  27. 73dbe04 A faulty load_tests in a test module no longer halts test discovery. A placeholder test, that reports the failure, is created instead. by Michael Foord · 15 years ago
  28. fc5f6a7 Cleanup test_tarfile, and use check_warnings. by Florent Xicluna · 15 years ago
  29. db4a321 Cleanup test_struct using check_warnings. by Florent Xicluna · 15 years ago
  30. 98e7b76 Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual and changing behaviour by Michael Foord · 15 years ago
  31. 2e6d262 #8178 Cleanup the threads after test_thread.TestForkInThread. by Florent Xicluna · 15 years ago
  32. bc27c6a Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* and setUp/tearDown. by Florent Xicluna · 15 years ago
  33. e9fbf2b - Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument. by Matthias Klose · 15 years ago
  34. f4fd0bf keep DeprecationWarning from failing test by Benjamin Peterson · 15 years ago
  35. 52d4aea make compiler's py3k warning a full deprecation warning #6837 by Benjamin Peterson · 15 years ago
  36. e30b3fa these lines can now be dispensed with by Benjamin Peterson · 15 years ago
  37. 001a395 Add support for weak references to code objects. This will be used by an optimization in the incoming Python 3 JIT. by Collin Winter · 15 years ago
  38. 2e0a53f Issue #8024: Update the Unicode database to 5.2 by Florent Xicluna · 15 years ago
  39. 7358854 #8155: Preserve backward compatibility for test_support.check_warnings(). Add regression tests. by Florent Xicluna · 15 years ago
  40. f3e9b2a Fix for Issue8135 - urllib.unquote to support mixed percent escapes by Senthil Kumaran · 15 years ago
  41. 43fe03a Make test_pwd more stable in the face of unusual LDAP/NIS/Kerberos deployments (the old test was flaky on Google buildslaves). by Collin Winter · 15 years ago
  42. d7b731d Issue #8104: socket.recv_into() and socket.recvfrom_into() now support by Antoine Pitrou · 15 years ago
  43. 2227251 Fix a race condition in test_asynchat uncovered by the Unladen Swallow JIT. by Collin Winter · 15 years ago
  44. 0dee9c1 prevent lambda functions from having docstrings #8164 by Benjamin Peterson · 15 years ago
  45. 78c1871 Fix and check cgi module deprecation warnings. Revert an unwanted rename in test_import. by Florent Xicluna · 15 years ago
  46. 945a8ba Cleanup some test cases using check_warnings and check_py3k_warnings. by Florent Xicluna · 15 years ago
  47. 2b73c21 Cleanup in test_import and test_coding. by Florent Xicluna · 15 years ago
  48. 7864312 Avoid hardcoding refcounts in tests. by Collin Winter · 15 years ago
  49. 2060e42 Issue #8162: logging: Clarified docstring and documentation for disable function. by Vinay Sajip · 15 years ago
  50. 187f93d Use "x in y" instead of y.find(x) != -1. by Ezio Melotti · 15 years ago
  51. d80b4bf #7092: silence some more py3k warnings. by Ezio Melotti · 15 years ago
  52. 8b3f1ce Delete unused import. by Collin Winter · 15 years ago
  53. 89b4f13 Style cleanup in test_import. by Collin Winter · 15 years ago
  54. ac1d931 Fix a trivial class of (hypothetical, future) false-positive refleaks, discovered by an optimization in Unladen Swallow's past (which will become CPython's future). by Collin Winter · 15 years ago
  55. 8b41168 - Issue #4961: Inconsistent/wrong result of askyesno function in tkMessageBox by Matthias Klose · 15 years ago
  56. 3cc8f21 Issue #7783 and #7787: open_urlresource invalidates the outdated files from the local cache. by Florent Xicluna · 15 years ago
  57. fae23dc - Fix typo in Lib/compileall.py(__all__). by Matthias Klose · 15 years ago
  58. b13d04c - Issue #8140: extend compileall to compile single files. Add -i option. by Matthias Klose · 15 years ago
  59. 358e7ff - Issue #7356: ctypes.util: Make parsing of ldconfig output independent of by Matthias Klose · 15 years ago
  60. 54cc539 - Issue #6949: Allow the _bsddb extension to be built with db-4.8.x. by Matthias Klose · 15 years ago
  61. f568139 clean up files correctly by Benjamin Peterson · 15 years ago
  62. 5a4c0f5 remove mac 9 code by Benjamin Peterson · 15 years ago
  63. ca02f3a this little exception dance is pointless by Benjamin Peterson · 15 years ago
  64. ece29b2 Do not hardcode Expat version. It's possible to build Python with --with-system-expat option. by Florent Xicluna · 15 years ago
  65. 88db6f4 Minor documentation updates for xml.etree. by Florent Xicluna · 15 years ago
  66. 1b51c3d Do not chdir when running test_xml_etree, and enhance the findfile helper. by Florent Xicluna · 15 years ago
  67. 13ba1a1 Move the xml test data to their own directory. by Florent Xicluna · 15 years ago
  68. 6e055d7 sqlite3: Fix a segfault on calling a connection with something else than a by Victor Stinner · 15 years ago
  69. 17d9054 Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. by Victor Stinner · 15 years ago
  70. 9098ee4 Issue #8117: logging: Improved algorithm for computing initial rollover time. by Vinay Sajip · 15 years ago
  71. 654ea37 remove shebang line from non-executable test by Benjamin Peterson · 15 years ago
  72. 9cf41d0 normalize shebang lines to #!/usr/bin/env python by Benjamin Peterson · 15 years ago
  73. afa595b revert r78842 cgi.py change by Benjamin Peterson · 15 years ago
  74. 651bc32 use proper shebang lines by Benjamin Peterson · 15 years ago
  75. 75c8be0 remove executable property from doc files by Benjamin Peterson · 15 years ago
  76. e2e81e8 Fix repr of tree Element on windows. by Florent Xicluna · 15 years ago
  77. 3e8c189 Issue #6472: The xml.etree package is updated to ElementTree 1.3. The cElementTree module is updated too. by Florent Xicluna · 15 years ago
  78. 4478662 Another fix to test_executable() of test_sys: set the current working to avoid by Victor Stinner · 15 years ago
  79. 6ecd85f Fix test_executable introduce in previous commit (r78835): Windows is able to by Victor Stinner · 15 years ago
  80. 4a7e0c85 Issue #7774: Set sys.executable to an empty string if argv[0] has been by Victor Stinner · 15 years ago
  81. 6376370 Revert r78830: realpath() should really be applied to sys.executable. by Florent Xicluna · 15 years ago
  82. 6602ec6 It is not optimal to test sys.stderr on a debug build. by Florent Xicluna · 15 years ago
  83. e58d91c Fix the test_subprocess failure when sys.executable is meaningless: '' or a directory. by Florent Xicluna · 15 years ago
  84. 8567761 Issue #7880: Fix sysconfig when the python executable is a symbolic link. by Florent Xicluna · 15 years ago
  85. 3ec3200 ooops, fix error message in execusercustomize() by Victor Stinner · 15 years ago
  86. 6664426 Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt by Victor Stinner · 15 years ago
  87. 4d42f2b #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag. by Florent Xicluna · 15 years ago
  88. e30bc38 Improve code clarity a bit. by Raymond Hettinger · 15 years ago
  89. aba2293 Have links in OrderedDicts be native Python lists instead by Raymond Hettinger · 15 years ago
  90. 9bd3508 Add nicer docstrings to namedtuples(). by Raymond Hettinger · 15 years ago
  91. f4803aa set svn:eol-style on various files by Benjamin Peterson · 15 years ago
  92. 47627d5 #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. by Florent Xicluna · 15 years ago
  93. 6f682be Move some tests from test_macpath to test_genericpath.CommonTest by Florent Xicluna · 15 years ago
  94. d034b32 On finalize, don't try to join not started process. by Florent Xicluna · 15 years ago
  95. faf1753 Replace the stderr logging with assertNotEqual(returncode, 0). by Florent Xicluna · 15 years ago
  96. cf741ce Fix syntax: "rc != None" -> "rc is not None" by Florent Xicluna · 15 years ago
  97. 5258477 Don't fail on a debug() statement, if the worker PID is (still) None. by Florent Xicluna · 15 years ago
  98. 4617e50 Issue #7143: get_payload used to strip any trailing newline from a by R. David Murray · 15 years ago
  99. 16cd888 Backport the Popen.poll() protection from subprocess to multiprocessing. See #1731717. by Florent Xicluna · 15 years ago
  100. 08611b5 Remove accidental print statement from last commit. by Michael Foord · 15 years ago