summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* #3580: fix a failure in test_osAntoine Pitrou2008-08-171-1/+1
* get the symtable module back in working orderBenjamin Peterson2008-08-171-20/+160
* #3556: test_raiseMemError consumes an insane amount of memoryAntoine Pitrou2008-08-171-8/+3
* backport r65723: strengthen test_os.test_closerangeAntoine Pitrou2008-08-171-3/+21
* Make test_ossaudiodev work.Antoine Pitrou2008-08-171-2/+2
* include filename and line number in SyntaxErrorBenjamin Peterson2008-08-161-1/+1
* Issue #2776: fixed small issue when handling an URL with double slashFacundo Batista2008-08-161-0/+26
* Issue #3476: make BufferedReader and BufferedWriter thread-safeAntoine Pitrou2008-08-141-1/+78
* Issue 1432. Fixes a bug caused because of the evolutionFacundo Batista2008-08-141-2/+9
* remove duplicate close() from ssl.py; expose unwrap and add test for itBill Janssen2008-08-121-2/+17
* Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...Nick Coghlan2008-08-1111-18/+114
* - Issue #3537: Fix an assertion failure when an empty but presized dictGeorg Brandl2008-08-111-0/+11
* Copy reduce() to _functools so to have functools.reduce() not raise a warningBrett Cannon2008-08-091-1/+44
* accept issue 3436Skip Montanaro2008-08-081-0/+33
* Add imp.reload(). This to help with transitioning to 3.0 the reload() built-inBrett Cannon2008-08-061-0/+19
* Remove duplicate importMark Dickinson2008-08-061-1/+0
* Bug 3228: take a test from Niels Gustaebel's patch, and based on his patch, c...Andrew M. Kuchling2008-08-051-6/+29
* Issue #1481296: (again!) Make conversion of a float NaN to an int orMark Dickinson2008-08-041-1/+2
* Bug 3228: Explicitly supply the file mode to avoid creating executable files,Andrew M. Kuchling2008-08-041-1/+27
* Preemptively backport the relevant parts of r65420Antoine Pitrou2008-08-021-0/+3
* Correct a crash when two successive unicode allocations fail with a MemoryError:Amaury Forgeot d'Arc2008-07-311-0/+14
* Remove a dummy test that was checked in by mistakeAmaury Forgeot d'Arc2008-07-311-8/+0
* #3479: unichr(2**32) used to return u'\x00'.Amaury Forgeot d'Arc2008-07-311-0/+1
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-314-9/+161
* Rename testSum to testFsum and move it to proper place in test_math.pyMark Dickinson2008-07-311-97/+96
* Backport test.support.fcmp() from 3.0 to silence -3 warnings.Brett Cannon2008-07-311-5/+4
* Alter recipe to show how to call izip_longest() withRaymond Hettinger2008-07-311-2/+1
* #2542: now that issubclass() may call arbitrary code,Amaury Forgeot d'Arc2008-07-311-1/+34
* I mess up again; BufferError inherits StandardErrorBenjamin Peterson2008-07-301-1/+1
* add BufferError to the exception hieracrchyBenjamin Peterson2008-07-301-0/+1
* Rename math.sum to math.fsumMark Dickinson2008-07-302-8/+8
* Neaten-up the itertools recipes.Raymond Hettinger2008-07-301-6/+4
* More modifications to tests for math.sum: replace the PythonMark Dickinson2008-07-291-39/+39
* Remove math.sum tests related to overflow, special values, and behaviourMark Dickinson2008-07-271-65/+10
* Issue #3449: Update decimal module to use most recent specificationMark Dickinson2008-07-27142-322/+471
* Close issue 3437 - missing state change when Allow lines are processed.Skip Montanaro2008-07-271-0/+69
* disable some failing tests in test_locale due to a bug in locale.py.Antoine Pitrou2008-07-261-15/+14
* Fix more buildbot failures on test_locale.Antoine Pitrou2008-07-261-5/+10
* try to fix most buildbot failures on test_locale + add a debug output for the...Antoine Pitrou2008-07-261-47/+69
* convert test_locale to unittest, and add a mechanism to override localconv() ...Antoine Pitrou2008-07-251-119/+262
* #3394: zipfile.writestr doesn't set external attributes, so files are extract...Antoine Pitrou2008-07-251-0/+13
* Issue 1592: Better error reporting for operations on closed shelves.Raymond Hettinger2008-07-251-0/+15
* #2242: utf7 decoding crashes on bogus input on some Windows/MSVC versionsAntoine Pitrou2008-07-251-0/+3
* remove unneeded importBenjamin Peterson2008-07-221-1/+0
* don't use assert statementBenjamin Peterson2008-07-211-1/+1
* Issue2378: pdb would delete free variables when stepping into a class statement.Amaury Forgeot d'Arc2008-07-211-0/+18
* Save the whole of sys.modules instead of using an import tracker.Georg Brandl2008-07-201-21/+4
* Fix misspeeld method name (negative)Neal Norwitz2008-07-201-1/+1
* Clean-up itertools docs and recipes.Raymond Hettinger2008-07-191-55/+17
* Fix compress() recipe in docs to use itertools.Raymond Hettinger2008-07-191-3/+3