1. 355adc5 Ensure that the failed or unexpected tests are sorted before printing. by Florent Xicluna · 15 years ago
  2. eee91cd Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking by Antoine Pitrou · 15 years ago
  3. c7024e7 reorder imports by Benjamin Peterson · 15 years ago
  4. 79d1fa9 Makefile.pre.in for the unittest/test directory by Michael Foord · 15 years ago
  5. fa2f1cd Addition of -c command line option to unittest, to handle ctrl-c during a test run more elegantly by Michael Foord · 15 years ago
  6. ee62788 Move a support TestCase out of the main namespace in unittest.test.test_suite by Michael Foord · 15 years ago
  7. 95ac82b Remove incorrect docstring in unittest.test by Michael Foord · 15 years ago
  8. 35b3792 Turn unittest tests into a package by Michael Foord · 15 years ago
  9. fbe5199 Fix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana. by Brian Curtin · 15 years ago
  10. 0663873 make naming convention consistent by Benjamin Peterson · 15 years ago
  11. fd37dd4 Fix test_unittest and test_warnings when running "python -Werror -m test.regrtest" by Florent Xicluna · 15 years ago
  12. 8aa5a58 #8207: Fix test_pep277 on OS X by Florent Xicluna · 15 years ago
  13. c8a730b Syntax cleanup `== None` -> `is None` by Florent Xicluna · 15 years ago
  14. ff33e2f make an attempt to add capsule to the Windows build by Benjamin Peterson · 15 years ago
  15. 4a0661b Add various items by Andrew M. Kuchling · 15 years ago
  16. 4e9830f Remove extraneous experimental code checked in by accident. by Larry Hastings · 15 years ago
  17. c1f842b Fix a gcc warning introduced by r79397. by Victor Stinner · 15 years ago
  18. 37aab87 fix eol properties on capsule files by Benjamin Peterson · 15 years ago
  19. cf71456 set eol on email example by Benjamin Peterson · 15 years ago
  20. 1c7b0e3 set bsddb eol style by Benjamin Peterson · 15 years ago
  21. 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 15 years ago
  22. 53ff86e Fix _curses.tiget*() functions: deny None to avoid a crash. by Victor Stinner · 15 years ago
  23. 6cbf90f Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compiler by Victor Stinner · 15 years ago
  24. 2ec1f27 Replace license with simple attribution. by Steven Bethard · 15 years ago
  25. 2c6799a Revert r79384 (the fix failed). by Antoine Pitrou · 15 years ago
  26. fb224e3 replace copy right notice with simple attribution by Benjamin Peterson · 15 years ago
  27. 914bdbb Trying to fix #8108. Will watch the buildbot(s). by Antoine Pitrou · 15 years ago
  28. 36b9fbb Skip tests which depend on multiprocessing.sharedctypes, if _ctypes is not available. by Florent Xicluna · 15 years ago
  29. f91a679 Various edits by Andrew M. Kuchling · 15 years ago
  30. 66d19e2 logging: Updated SysLogHandler documentation. by Vinay Sajip · 15 years ago
  31. 27e0240 Skip test_ascii_formatd if _ctypes is not available (BSD, ...). by Florent Xicluna · 15 years ago
  32. a3c39c0 logging: Documentation tweak. by Vinay Sajip · 15 years ago
  33. 0b79d0a Add Brian Curtin. by Martin v. Löwis · 15 years ago
  34. b0623d6 logging: Added LOG_FTP for SysLogHandler and updated documentation. by Vinay Sajip · 15 years ago
  35. f8d1d0f Another typo. by Ezio Melotti · 15 years ago
  36. d72a628 #8217: typo. by Ezio Melotti · 15 years ago
  37. d4b721b the == test doesn't work on Solaris #8210 by Benjamin Peterson · 15 years ago
  38. 3c919cf The SIGINT signal may happen earlier, during site.py initialization. by Florent Xicluna · 15 years ago
  39. 9858f63 add some unittest items by Andrew M. Kuchling · 15 years ago
  40. 446ff14 The standard error should be empty when the signal is killed, except on SIGINT. by Florent Xicluna · 15 years ago
  41. fc4d6d7 Silence test_subprocess. by Florent Xicluna · 15 years ago
  42. 875bdf7 Skip test_format_deprecation if _ctypes is not available. Add a filter to the warning check. by Florent Xicluna · 15 years ago
  43. 67b4e18 Fixed Issue8209 - OptionParser keyword arg 'epilog' not mentioned in the docs by Senthil Kumaran · 15 years ago
  44. 996e88a Merged revisions 79313,79324 via svnmerge from by Benjamin Peterson · 15 years ago
  45. 0d0b80b Link specifically to the UCD version 5.2.0. by Ezio Melotti · 15 years ago
  46. 88b6f8b Remove link to objects.rst (gone in r79179). by Ezio Melotti · 15 years ago
  47. ae735a7 Update the version number of the Unicode Database in a few more places. by Ezio Melotti · 15 years ago
  48. 3bcc35b Merged revisions 79309 via svnmerge from by Benjamin Peterson · 15 years ago
  49. 176cda1 Issue #8205: Remove the "Modules" directory from sys.path when Python is running from the build directory (POSIX only). by Florent Xicluna · 15 years ago
  50. e1f4c92 #7667: Fix doctest failures with non-ASCII paths. by Florent Xicluna · 15 years ago
  51. 798e540 Merged revisions 79077,79137,79304-79305 via svnmerge from by Benjamin Peterson · 15 years ago
  52. 513d9ae Issue #7512: shutil.copystat() could raise an OSError when the filesystem by Antoine Pitrou · 15 years ago
  53. 0805e6e #7668: Fix test_httpservers failure when sys.executable contains non-ASCII bytes. by Florent Xicluna · 15 years ago
  54. eba2aca Preserve backward compatibility of the ctypes module. by Florent Xicluna · 15 years ago
  55. 9e7a4c9 Issue #7703: ctypes supports both buffer() and memoryview(). The former is deprecated. by Florent Xicluna · 15 years ago
  56. c9d1a78 Issue #7860: platform.uname now reports the correct 'machine' type by R. David Murray · 15 years ago
  57. 804899b logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter. by Vinay Sajip · 15 years ago
  58. 73c22e9 Missing testsuite files by Jesus Cea · 15 years ago
  59. f08a017 Get rid of buffer() in test_ctypes: backport the 3.x tests. by Florent Xicluna · 15 years ago
  60. 52093b8 Fix an occasional test_ftplib failure, following r79226. by Antoine Pitrou · 15 years ago
  61. 6557aac pybsddb 4.8.4 integration. Please, comment in issue #8156 by Jesus Cea · 15 years ago
  62. 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
  63. c7790ed Fix the NEWS about my last commit: an unicode subclass can now override the by Victor Stinner · 15 years ago
  64. 3017a7b Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs. by Vinay Sajip · 15 years ago
  65. 95affc4 Issue #1583863: An unicode subclass can now override the __str__ method by Victor Stinner · 15 years ago
  66. eef159b Correct usage message displayed for python -m unittest -h by Michael Foord · 15 years ago
  67. 0ce1672 expected failure should not trigger failfast behavior in unittest. by Michael Foord · 15 years ago
  68. 4989969 Removing Python 2.3 compatibility code from unittest. by Michael Foord · 15 years ago
  69. db003cb Fix failing test committed by accident. by Michael Foord · 15 years ago
  70. 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
  71. b1aa30f Issue 7815. __unittest in module globals trims frames from reported stacktraces in unittest. by Michael Foord · 15 years ago
  72. bb9d726 take into account keyword arguments when passing too many args by Benjamin Peterson · 15 years ago
  73. 9654589 improve error message from passing inadequate number of keyword arguments #6474 by Benjamin Peterson · 15 years ago
  74. 54bc22e don't write duplicate tests by Benjamin Peterson · 15 years ago
  75. 52b32b6 fix import by Benjamin Peterson · 15 years ago
  76. 88e7eba co_varnames is certainly a tuple, so let's not waste time finding out by Benjamin Peterson · 15 years ago
  77. d51b259 remove pointless condition by Benjamin Peterson · 15 years ago
  78. 448da71 Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets. by Antoine Pitrou · 15 years ago
  79. 56472c2 flatten condition by Benjamin Peterson · 15 years ago
  80. f83b308 Issue #1628484: The Makefile doesn't ignore the CFLAGS environment by Antoine Pitrou · 15 years ago
  81. 4d0130e Fix plural. by Georg Brandl · 15 years ago
  82. 46c2db5 Add items by Andrew M. Kuchling · 15 years ago
  83. 77a8849 #8180: Fix test_pep277 on OS X and add more tests for special Unicode normalization cases. by Florent Xicluna · 15 years ago
  84. e39b2ec rewrite a bit by Benjamin Peterson · 15 years ago
  85. cf82fa6 Issue #8179: Fix macpath.realpath() on a non-existing path. by Florent Xicluna · 15 years ago
  86. b88fbf4 Use assertRaises and add a specific warning filter. by Florent Xicluna · 15 years ago
  87. aa89f8d Remove leftover word. by Georg Brandl · 15 years ago
  88. 3f5d146 No more deprecation warnings for distutils.sysconfig, following r78666. by Florent Xicluna · 15 years ago
  89. af61719 Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" statements. by Florent Xicluna · 15 years ago
  90. 8f43cec Fix py3k warnings in test_decimal, using unittest.assertItemsEqual. by Florent Xicluna · 15 years ago
  91. 4a0f8b8 Silence more py3k warnings in unittest.case. by Florent Xicluna · 15 years ago
  92. 236da4b Include structmember.h correctly. by Georg Brandl · 15 years ago
  93. ce00cf2 Update text for newest US DST regulation. The sample file already has the calculation right. by Georg Brandl · 15 years ago
  94. f23f0a2 Update os.kill() emulation example for Windows to use ctypes. by Georg Brandl · 15 years ago
  95. a39f2af Mention inefficiency of lists as queues, add link to collections.deque discussion. by Georg Brandl · 15 years ago
  96. 0b56ce0 Clarify that for shell=True, the shell PID will be the child PID. by Georg Brandl · 15 years ago
  97. 0fcd882 Introduce copy by slicing, used in later chapters. by Georg Brandl · 15 years ago
  98. d1068be Document that GzipFile supports iteration. by Georg Brandl · 15 years ago
  99. 3814ddf Add a paragraph about set displays. by Georg Brandl · 15 years ago
  100. dad0203 Remove the "built-in objects" file. It only contained two paragraphs of which only one contained useful information, which belongs in the ref manual however. by Georg Brandl · 15 years ago