- 3a1dfa2 remove a optimization that resulted in unexpected behavior #8929 by Benjamin Peterson · 15 years ago
- 22c62dd use skip decorator by Benjamin Peterson · 15 years ago
- 3b4c989 Issue #8193: Fix test_zlib failure with zlib 1.2.4. by Antoine Pitrou · 15 years ago
- f9de534 Issue #8321: Give access to OpenSSL version numbers from the `ssl` module, by Antoine Pitrou · 15 years ago
- fce1d31 Fix a failing test on an apparently slow Windows buildbot. by Brian Curtin · 15 years ago
- e1d665a Classes that override __eq__ also need to define __hash__. by Raymond Hettinger · 15 years ago
- 5e0c274 Use a more robust infinity check in _Py_HashDouble. by Mark Dickinson · 15 years ago
- 0c08009 Issue 8316: make test_gdb robust in the face of differing terminal by R. David Murray · 15 years ago
- 034b0ac fix escape_encode to return the correct consumed size by Philip Jenvey · 15 years ago
- 06bc0b6 Add tests for functools.total_ordering. by Raymond Hettinger · 15 years ago
- bb006cf Add tests for cmp_to_key. by Raymond Hettinger · 15 years ago
- fdaaa9c Issue #8300 (__index__ handling in struct.pack): Remove redundant check by Mark Dickinson · 15 years ago
- a28eb1c Use more specific assert* methods in test_struct. by Ezio Melotti · 15 years ago
- ab8b9ca Expand test coverage for deque.count(). by Raymond Hettinger · 15 years ago
- a44f393 import bsddb more robustly by Benjamin Peterson · 15 years ago
- 47b1d02 Remove useless (?) import from r79706 by Antoine Pitrou · 15 years ago
- 5f516ed Add count() method to collections.deque(). by Raymond Hettinger · 15 years ago
- 0ccc7bb stop CObject deprecation warnings in test___all__ by Benjamin Peterson · 15 years ago
- 856a3be Use more specific assert* methods in test_decimal. by Ezio Melotti · 15 years ago
- 4846a8e Issue #8300: Let struct.pack use __index__ to convert and pack non-integers. by Mark Dickinson · 15 years ago
- b05dc00 Fix a couple of issues with the test_structmembersType class in _testcapimodule by Mark Dickinson · 15 years ago
- 34c35b2 Add subtract() method to collections.Counter() objects. by Raymond Hettinger · 15 years ago
- 1c7c11e give TypeError when trying to set T_STRING_INPLACE by Benjamin Peterson · 15 years ago
- 2b79fdf split out large test function by Benjamin Peterson · 15 years ago
- e9da81c Fix assertRaises usage on reflection functions which should raise by Brian Curtin · 15 years ago
- 4564c08 set svn:eol-style on new file by Benjamin Peterson · 15 years ago
- e5aa886 Implement #1220212. Add os.kill support for Windows. by Brian Curtin · 15 years ago
- 7c63eee Issue #8294: Allow float and Decimal arguments in Fraction constructor. by Mark Dickinson · 15 years ago
- 7999dea Fix test_compiler.py that was using unittest.__file__ to find Lib/ (unittest is now a package). by Ezio Melotti · 15 years ago
- e33fa88 Implement #7347. Add CreateKeyEx, DeleteKeyEx, and update _winreg tests. by Brian Curtin · 15 years ago
- ed171ab Issue 8257: Decimal constructor to accept float. by Raymond Hettinger · 15 years ago
- f37592f Backport some robotparser test and skip the test if the external resource is not available. by Florent Xicluna · 15 years ago
- d44b2fc Issue 7994: Make object.__format__ with a non-empty format string a PendingDecprecationWarning. Still need to remove uses of this from various tests. by Eric Smith · 15 years ago
- f3eeca1 Issue #7279: Make Decimal('nan') hashable. Decimal('snan') remains unhashable. by Mark Dickinson · 15 years ago
- e096e82 Issue #7279: Make comparisons involving a Decimal sNaN signal InvalidOperation. by Mark Dickinson · 15 years ago
- 99d8096 Issue #2531: Make float-to-decimal comparisons return correct results. by Mark Dickinson · 15 years ago
- dfd3618 #7092: silence some py3k warnings by Florent Xicluna · 15 years ago
- b5023df Issue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets picked by Antoine Pitrou · 15 years ago
- bf0dfb3 Issue #8032: For gdb7, a python-gdb.py file is added to the build, by Martin v. Löwis · 15 years ago
- 6257a7b Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests. by Florent Xicluna · 15 years ago
- a57df2c Issue #8268: Old-style classes (not just instances) now support weak references. by Antoine Pitrou · 15 years ago
- 26cc99d Fix test for xml.etree when using a non-ascii path. And use check_warnings instead of catch_warnings. by Florent Xicluna · 15 years ago
- fcc500e Silence a py3k warning. by Ezio Melotti · 15 years ago
- aeb2e82 Fix #8225. xml.etree was displaying an incorrect link when viewed in help. by Brian Curtin · 15 years ago
- 8f66efe Fix small error in r79502 by Antoine Pitrou · 15 years ago
- 6032c25 Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi. by Antoine Pitrou · 15 years ago
- 7e21325 add inspect.getcallargs, which binds function arguments like a normal call #3135 by Benjamin Peterson · 15 years ago
- 75c6676 #8263: Now regrtest.py will report a failure if it receives a KeyboardInterrupt (SIGINT). by Florent Xicluna · 15 years ago
- 22b2438 #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode Standard Annex #14. by Florent Xicluna · 15 years ago
- e6410c5 Backport of weakref.WeakSet and tests from Python 3. by Michael Foord · 15 years ago
- b35ecf4 Rename the unittest test_suite function to not clash with a test module name (unittest.test.test_suite is now unambiguous). by Michael Foord · 15 years ago
- 71b7fac Make Fraction to complex comparisons with <=, <, >= or > raise TypeError. by Mark Dickinson · 15 years ago
- 355adc5 Ensure that the failed or unexpected tests are sorted before printing. by Florent Xicluna · 15 years ago
- c7024e7 reorder imports by Benjamin Peterson · 15 years ago
- 35b3792 Turn unittest tests into a package by Michael Foord · 15 years ago
- fd37dd4 Fix test_unittest and test_warnings when running "python -Werror -m test.regrtest" by Florent Xicluna · 15 years ago
- 8aa5a58 #8207: Fix test_pep277 on OS X by Florent Xicluna · 15 years ago
- 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 15 years ago
- 2ec1f27 Replace license with simple attribution. by Steven Bethard · 15 years ago
- 2c6799a Revert r79384 (the fix failed). by Antoine Pitrou · 15 years ago
- 914bdbb Trying to fix #8108. Will watch the buildbot(s). by Antoine Pitrou · 15 years ago
- 36b9fbb Skip tests which depend on multiprocessing.sharedctypes, if _ctypes is not available. by Florent Xicluna · 15 years ago
- 27e0240 Skip test_ascii_formatd if _ctypes is not available (BSD, ...). by Florent Xicluna · 15 years ago
- 3c919cf The SIGINT signal may happen earlier, during site.py initialization. by Florent Xicluna · 15 years ago
- 446ff14 The standard error should be empty when the signal is killed, except on SIGINT. by Florent Xicluna · 15 years ago
- fc4d6d7 Silence test_subprocess. by Florent Xicluna · 15 years ago
- 875bdf7 Skip test_format_deprecation if _ctypes is not available. Add a filter to the warning check. by Florent Xicluna · 15 years ago
- 0805e6e #7668: Fix test_httpservers failure when sys.executable contains non-ASCII bytes. by Florent Xicluna · 15 years ago
- c9d1a78 Issue #7860: platform.uname now reports the correct 'machine' type by R. David Murray · 15 years ago
- 804899b logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter. by Vinay Sajip · 15 years ago
- f08a017 Get rid of buffer() in test_ctypes: backport the 3.x tests. by Florent Xicluna · 15 years ago
- 52093b8 Fix an occasional test_ftplib failure, following r79226. by Antoine Pitrou · 15 years ago
- 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
- c7790ed Fix the NEWS about my last commit: an unicode subclass can now override the by Victor Stinner · 15 years ago
- 95affc4 Issue #1583863: An unicode subclass can now override the __str__ method by Victor Stinner · 15 years ago
- 0ce1672 expected failure should not trigger failfast behavior in unittest. by Michael Foord · 15 years ago
- 4989969 Removing Python 2.3 compatibility code from unittest. by Michael Foord · 15 years ago
- db003cb Fix failing test committed by accident. by Michael Foord · 15 years ago
- 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
- b1aa30f Issue 7815. __unittest in module globals trims frames from reported stacktraces in unittest. by Michael Foord · 15 years ago
- bb9d726 take into account keyword arguments when passing too many args by Benjamin Peterson · 15 years ago
- 9654589 improve error message from passing inadequate number of keyword arguments #6474 by Benjamin Peterson · 15 years ago
- 54bc22e don't write duplicate tests by Benjamin Peterson · 15 years ago
- 52b32b6 fix import by Benjamin Peterson · 15 years ago
- 77a8849 #8180: Fix test_pep277 on OS X and add more tests for special Unicode normalization cases. by Florent Xicluna · 15 years ago
- e39b2ec rewrite a bit by Benjamin Peterson · 15 years ago
- b88fbf4 Use assertRaises and add a specific warning filter. by Florent Xicluna · 15 years ago
- 3f5d146 No more deprecation warnings for distutils.sysconfig, following r78666. by Florent Xicluna · 15 years ago
- af61719 Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" statements. by Florent Xicluna · 15 years ago
- 8f43cec Fix py3k warnings in test_decimal, using unittest.assertItemsEqual. by Florent Xicluna · 15 years ago
- 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
- 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
- fc5f6a7 Cleanup test_tarfile, and use check_warnings. by Florent Xicluna · 15 years ago
- db4a321 Cleanup test_struct using check_warnings. by Florent Xicluna · 15 years ago
- 98e7b76 Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual and changing behaviour by Michael Foord · 15 years ago
- 2e6d262 #8178 Cleanup the threads after test_thread.TestForkInThread. by Florent Xicluna · 15 years ago
- bc27c6a Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* and setUp/tearDown. by Florent Xicluna · 15 years ago
- e9fbf2b - Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument. by Matthias Klose · 15 years ago
- f4fd0bf keep DeprecationWarning from failing test by Benjamin Peterson · 15 years ago
- 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