summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/qtestlib.prf
blob: 0b1fbee6223f8378f93b0bf302dfc7fbced5262c (plain)
1
2
3
4

CONFIG += console

qtAddLibrary(QtTest)
a>Robert Schuppenies2008-06-061-13/+10 | | * | Fix sys.flags sequence behavior and add a test case.Georg Brandl2008-06-061-1/+2 | | * | Merged revisions 63856-63857,63859-63860 via svnmerge fromMartin v. Löwis2008-06-042-2/+136 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r63856 | robert.schuppenies | 2008-06-01 18:16:17 +0200 (So, 01 Jun 2008) | 2 lines Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. ........ r63859 | georg.brandl | 2008-06-01 18:42:16 +0200 (So, 01 Jun 2008) | 2 lines Some style nits. Also clarify in the docstrings what __sizeof__ does. ........ r63860 | georg.brandl | 2008-06-01 19:05:56 +0200 (So, 01 Jun 2008) | 2 lines Fix test_descrtut. ........ * | Remove tabcheck from the expected flags in sys.flags.Georg Brandl2008-06-041-1/+1 | | * | Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-4/+4 | | * | Revert r63934 -- it was mixing two patches.Georg Brandl2008-06-046-27/+16 | | * | Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-046-16/+27 | | * | Change all functions that expect one unicode character to accept a pair ofWalter Dörwald2008-06-031-0/+8 | | | | | | | | surrogates in narrow builds. Fixes issue #1706460. (Port of r63899). * | Forward-port PYTHONIOENCODING.Martin v. Löwis2008-06-021-0/+20 | | * | Remove the htmllib and sgmllib modules as per PEP 3108.Georg Brandl2008-06-013-509/+0 | | * | Add test case for r63810.Georg Brandl2008-05-301-0/+5 | | * | Merged revisions 63460,63464 via svnmerge fromBenjamin Peterson2008-05-291-6/+24 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r63460 | ronald.oussoren | 2008-05-18 15:54:47 -0500 (Sun, 18 May 2008) | 6 lines - Add unittests for platform.mac_ver (or rather, ensure that the unittest for that function actually tests something on OSX). - Add documentation to platform.mac_ver that explains why the middle element of the return value will not contain useful information. ........ r63464 | benjamin.peterson | 2008-05-18 17:07:42 -0500 (Sun, 18 May 2008) | 2 lines fix test_platform (os was not imported) ........ * | Remove deprecated SmartCookie and SerialCookie classes.Georg Brandl2008-05-281-1/+0 | | * | Make db modules' error classes inherit IOError.Georg Brandl2008-05-281-24/+27 | | | | | | | | Stop dbm from importing every dbm module when imported. * | Remove __metaclass__ remains.Georg Brandl2008-05-271-1/+1 | | * | #2957: marshal recursion limit exceeded when importing a large .pyc fileAmaury Forgeot d'Arc2008-05-261-0/+6 | | * | update test ignore listBenjamin Peterson2008-05-261-9/+9 | | * | The commands module has been removed. The getoutput() and getstatusoutput()Brett Cannon2008-05-264-55/+30 | | | | | | | | | | | | | | | | | | | | functions have been added to the subprocess module. The fixer for this still needs to be written and proper Py3K deprecation warnings for the functions that didn't make the transition need to be done in 2.6. This is all part of trying to close issue #2872. * | remove test.support.have_unicodeBenjamin Peterson2008-05-263-21/+12 | | * | Merged revisions 63542-63544,63546,63553,63563-63564,63567,63569,63576 via ↵Benjamin Peterson2008-05-263-3/+161 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r63542 | mark.dickinson | 2008-05-22 20:35:30 -0500 (Thu, 22 May 2008) | 5 lines Issue #2819: Add math.sum, a function that sums a sequence of floats efficiently but with no intermediate loss of precision. Based on Raymond Hettinger's ASPN recipe. Thanks Jean Brouwers for the patch. ........ r63543 | mark.dickinson | 2008-05-22 21:36:48 -0500 (Thu, 22 May 2008) | 2 lines Add tests for math.sum (Issue #2819) ........ r63544 | mark.dickinson | 2008-05-22 22:30:01 -0500 (Thu, 22 May 2008) | 2 lines Better error reporting in test_math.py ........ r63546 | raymond.hettinger | 2008-05-22 23:32:43 -0500 (Thu, 22 May 2008) | 1 line Tweak the comments and formatting. ........ r63553 | mark.dickinson | 2008-05-23 07:07:36 -0500 (Fri, 23 May 2008) | 3 lines Skip math.sum tests on non IEEE 754 platforms, and on IEEE 754 platforms that exhibit the problem described in issue #2937. ........ r63563 | martin.v.loewis | 2008-05-23 10:18:28 -0500 (Fri, 23 May 2008) | 3 lines Issue #1390: Raise ValueError in toxml when an invalid comment would otherwise be produced. ........ r63564 | raymond.hettinger | 2008-05-23 12:21:44 -0500 (Fri, 23 May 2008) | 1 line Issue 2909: show how to name unpacked fields. ........ r63567 | raymond.hettinger | 2008-05-23 12:34:34 -0500 (Fri, 23 May 2008) | 1 line Fix typo ........ r63569 | martin.v.loewis | 2008-05-23 14:33:13 -0500 (Fri, 23 May 2008) | 3 lines Mention that the leaking of variables from list comprehensions is fixed in 3.0. ........ r63576 | martin.v.loewis | 2008-05-24 04:36:45 -0500 (Sat, 24 May 2008) | 3 lines Don't try to get the window size if it was never set before. Fixes the test failure on Solaris. ........ * | Create http package. #2883.Georg Brandl2008-05-26