- d0052d1 #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, by Amaury Forgeot d'Arc · 16 years ago
- abe3d3e Issue #7058: Added save/restore for argv and os.environ to runtest_inner by R. David Murray · 16 years ago
- 245d915 Issue #7042: Fix test_signal failure on OS X 10.6 64-bit builds by Mark Dickinson · 16 years ago
- 82d31e9 test logging by Benjamin Peterson · 16 years ago
- 7adbb5a #7050 fix a SystemError when using tuple unpacking and augmented assignment by Benjamin Peterson · 16 years ago
- f895cf5 #7031: Add TestCase.assertIsInstance and negated method. by Georg Brandl · 16 years ago
- dc61ec3 That's self.env.unset(k) and not env.unset(k) I was heading back to the problem. by Senthil Kumaran · 16 years ago
- 5a43e86 using dict.unset(k) instead of del dict[k]. consistent with release26-maint by Senthil Kumaran · 16 years ago
- 91abd6e Fix for issue7026 test_urllib: unsetting missing 'env' variable. by Senthil Kumaran · 16 years ago
- 8ca7482 Fix buggy accuracy test by Mark Dickinson · 16 years ago
- 8b90204 #5329: fix os.popen* regression from 2.5: don't execute commands as a sequence by Philip Jenvey · 16 years ago
- 7e7a3ec Issue #7019: Unmarshalling of bad long data could produce unnormalized by Mark Dickinson · 16 years ago
- 7248178 Issue #6790: Make it possible again to pass an `array.array` to by Antoine Pitrou · 16 years ago
- dbf3b25 #6990: clear threading.local's key only after its thread state is removed: by Philip Jenvey · 16 years ago
- b93fff0 Issue #3366: Add gamma function to math module. by Mark Dickinson · 16 years ago
- 97f5ff3 Prevent test_bad_address failure when a domain in the dns search by R. David Murray · 16 years ago
- b4fd4d3 Patch from Thomas Barr so that csv.Sniffer will set doublequote property. by Skip Montanaro · 16 years ago
- 9aac245 #7000: document "sep" in capwords. Add a few tests by Ezio Melotti · 16 years ago
- b49e53e #6243: fix segfault when keyname() returns a NULL pointer. by Andrew M. Kuchling · 16 years ago
- 2fcd03b http://bugs.python.org/issue6971 by Kristján Valur Jónsson · 16 years ago
- 4d94743 When range checking was added to time.strftime() a check was placed on tm_isdst by Brett Cannon · 16 years ago
- 9f20d9d Issue 6877: this patch makes it possible to link the readline extension by Ronald Oussoren · 16 years ago
- ab84989 #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple. by Georg Brandl · 16 years ago
- dc782b5 backport keyword argument support for bytearray.decode by Benjamin Peterson · 16 years ago
- 332d721 add keyword arguments support to str/unicode encode and decode #6300 by Benjamin Peterson · 16 years ago
- 2985dbb Use skipUnless to skip math module tests on non-IEEE 754 platforms. by Mark Dickinson · 16 years ago
- ebf3adc #6844 followup: the warning when setting Exception.message was removed, do not test for it. by Georg Brandl · 16 years ago
- e9741f3 Issue #6922: Fix an infinite loop when trying to decode an invalid by Georg Brandl · 16 years ago
- 0674d3f #6844: do not emit DeprecationWarnings on access if Exception.message has been set by the user. by Georg Brandl · 16 years ago
- c4dcb38 Fix issue #1590864, multiple threads and fork() can cause deadlocks, by by Thomas Wouters · 16 years ago
- 69dfe8d Make the pdb displayhook compatible with the standard displayhook: do not print Nones. Add a test for that. by Georg Brandl · 16 years ago
- 6c39f06 Remove some more boilerplate from the actual tests in test_pdb. by Georg Brandl · 16 years ago
- e91ea56 Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568. by Michael Foord · 16 years ago
- 5a9719d unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866. by Michael Foord · 16 years ago
- c3f7937 Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567. by Michael Foord · 16 years ago
- 1036a7f #6026 - fix tests that failed without zlib by Ezio Melotti · 16 years ago
- 21121e6 Issue #6856: Add a filter keyword argument to TarFile.add(). by Lars Gustäbel · 16 years ago
- 93ed820 revert unintended changes by Benjamin Peterson · 16 years ago
- 8246968 tabbify by Benjamin Peterson · 16 years ago
- 5cfa804 Issue #6857: Fix Decimal formatting to be consistent with existing float by Mark Dickinson · 16 years ago
- 968f169 #Issue 6795: Fix infinite recursion in long(Decimal('nan')); change int(Decimal('nan')) to raise ValueError instead of either returning NaN or raising InvalidContext. by Mark Dickinson · 16 years ago
- 491ea55 Issue #6850: Fix bug in Decimal._parse_format_specifier for formats by Mark Dickinson · 16 years ago
- c8a7c7c Issue #6846: bytearray.pop was returning ints in the range [-128, 128) by Mark Dickinson · 16 years ago
- 2596758 Fix build issues on OSX 10.6 (issue 6802) by Ronald Oussoren · 16 years ago
- ed4ca82 #5101: add back tests to test_funcattrs that were lost during unittest conversion, and make some PEP8 cleanups. by Georg Brandl · 16 years ago
- e7e941e test_platform fails on OS X Snow Leopard because the UNIX command to get the by Brett Cannon · 16 years ago
- ffd0dc1 Sorry, sorry! Ignore my previous two commits. I mixed up the version by Armin Rigo · 16 years ago
- f866fbb Does not terminate: consume all memory without responding to Ctrl-C. by Armin Rigo · 16 years ago
- f416690 Found the next crasher by thinking about this logic in PyPy. by Armin Rigo · 16 years ago
- 6fcf9b5 remove the check that classmethod's argument is a callable by Benjamin Peterson · 16 years ago
- fff896b #6750: TextIOWrapped could duplicate output when several threads write to it. by Amaury Forgeot d'Arc · 16 years ago
- f7cda52 Issue #6054: Do not normalize stored pathnames. by Lars Gustäbel · 16 years ago
- 7a7739d Issue #6794: Fix handling of NaNs in Decimal.compare_total and by Mark Dickinson · 16 years ago
- 429677e Issue 6654 by Kristján Valur Jónsson · 16 years ago
- e2a7798 issue 6275 by Kristján Valur Jónsson · 16 years ago
- 764fc23 #6693: New functions in site.py to get user/global site packages paths. by Tarek Ziadé · 16 years ago
- df75677 Add test of file.write(array) extracted from Jython. by Frank Wierzbicki · 16 years ago
- b98d6b2 Issue 6665: Fix fnmatch to properly match filenames with newlines in them. by Gregory P. Smith · 16 years ago
- c0ba828 better col_offsets for "for" statements with tuple unpacking #6704 by Benjamin Peterson · 16 years ago
- 4c6e808 #6707 fix a crash with dir() on an uninitialized module by Benjamin Peterson · 16 years ago
- 764465f Expat could crash if given the wrong kind of input by never stopping its by Brett Cannon · 16 years ago
- c4ad034 Fix issue1628205: Socket file objects returned by socket.socket.makefile() now by Gregory P. Smith · 16 years ago
- 20e1f93 Issue #6629: Fix a data corruption issue in the new `io` package, which could by Antoine Pitrou · 16 years ago
- 8fdab95 Issue 6637: defaultdict.copy() failed with an empty factory. by Raymond Hettinger · 16 years ago
- 6c0f337 Adding tests derived from the Jython project. These are primarily tests of by Frank Wierzbicki · 16 years ago
- 4326ad8 Issue #6595: Allow Decimal constructor to accept non-European decimal by Mark Dickinson · 16 years ago
- 3e5b027 #6511: ZipFile will now raise BadZipfile when opening an empty or tiny file, by Amaury Forgeot d'Arc · 16 years ago
- e55df1f "Fix" for the refleak report: the ABC classes are now in the _pyio module by Amaury Forgeot d'Arc · 16 years ago
- fe67bd9 Issue #6561: '\d' regular expression should not match characters of by Mark Dickinson · 16 years ago
- c2b9e1a Issue 6573: Fix set.union() for cases where self is in the argument chain. by Raymond Hettinger · 16 years ago
- 74b3016 #6553: crash in cPickle.load(), when given a StringIO with incomplete data. by Amaury Forgeot d'Arc · 16 years ago
- 46ca2f2 Backport of fix for issue 6542: make sure by R. David Murray · 16 years ago
- ec812ca Issue #6540: Fixed crash for bytearray.translate() with invalid parameters. by Georg Brandl · 16 years ago
- 4879c90 the Slice in x[::] has to have step as None to help the interpreter by Benjamin Peterson · 16 years ago
- 6d75590 http://bugs.python.org/issue6499 by Kristján Valur Jónsson · 16 years ago
- d7b0eeb split unittest.py into a package by Benjamin Peterson · 16 years ago
- 5fee460 Fix for issue5102, timeout value propages between redirects, proxy, digest and by Senthil Kumaran · 16 years ago
- 88a0a2e Issue #6431: Fix Fraction comparisons with unknown types, and with by Mark Dickinson · 16 years ago
- e78e5d2 Issue #6415: Fixed warnings.warn sagfault on bad formatted string. by Hirokazu Yamamoto · 16 years ago
- 7530e47 Issue 6433: multiprocessing.pool.map hangs on empty list by Jesse Noller · 16 years ago
- d77faaf #5910: fix kqueue for calls with more than one event. by Georg Brandl · 16 years ago
- d5a23e3 methods' names pep8ification by Ezio Melotti · 16 years ago
- 91dcd93 Move TestRunner initialisation into unittest.TestProgram.runTests. Fixes issue 6418. by Michael Foord · 16 years ago
- 0369ba2 http://bugs.python.org/issue6267 Add more tests for the xlmrpc.ServerProxy by Kristján Valur Jónsson · 16 years ago
- 9bd39c1 put downloaded test support files in Lib/test/data instead of the cwd by Benjamin Peterson · 16 years ago
- 74b8d33 #2622 Import errors in email.message, from a py2app standalone application. by Amaury Forgeot d'Arc · 16 years ago
- 9175742 Add basic tests for the return value of os.popen().close(). by Amaury Forgeot d'Arc · 16 years ago
- ef6007c http://bugs.python.org/issue6460 by Kristján Valur Jónsson · 16 years ago
- 6cbfc12 more cleanups and if zlib -> skipUnless(zlib) by Ezio Melotti · 16 years ago
- ce32eb7 #6416: Fix compilation of the select module on Windows, as well as test_subprocess: by Amaury Forgeot d'Arc · 16 years ago
- b0c828a Try to fix Solaris buildbot rmtree failure in test_getcwd_long_pathnames by R. David Murray · 16 years ago
- 6fcf7ca Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see by R. David Murray · 16 years ago
- 573399a Curdir needs to be in the path for the test to work on all buildbots. by R. David Murray · 16 years ago
- fbf2cc4 Specify umask in execute bit test to get consistent results by R. David Murray · 16 years ago
- 00e1f63 Make test work with -O. by R. David Murray · 16 years ago
- 8a624a9 Conditionalize test cleanup code to eliminate traceback, which will by R. David Murray · 16 years ago
- 5fd3af2 Issue #1523: Remove deprecated overflow masking in struct module, and by Mark Dickinson · 16 years ago
- bb3895c Expand test coverage for struct.pack with native integer packing; by Mark Dickinson · 16 years ago
- ca6b5f3 Add skipping to struct test that only applies when overflow masking is in effect by Mark Dickinson · 16 years ago
- 23a736a Issue 6070: when creating a compiled file, after copying the mode bits, on by R. David Murray · 16 years ago