summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Submit fix for issue3393: Memory corruption in multiprocessing moduleJesse Noller2008-08-013-19/+28
* Generate the PatternGrammar pickle during "make install".Martin v. Löwis2008-08-012-1/+6
* Tone down math.fsum warning.Mark Dickinson2008-08-011-23/+2
* Remove a use of callable() to silence the warning triggered under -3.Brett Cannon2008-08-011-1/+1
* Silence (Syntax|Deprecation)Warning for 'inspect'. Had to remove tupleBrett Cannon2008-08-011-5/+9
* Remove use of tuple unpacking and dict.has_key() so as to silenceBrett Cannon2008-08-012-4/+5
* Remove assignment to True/False to silence the SyntaxWarning that is triggeredBrett Cannon2008-08-011-5/+5
* Fix a DeprecationWarning about __getitem__() and exceptions in the 'traceback...Brett Cannon2008-08-011-1/+1
* Correct a crash when two successive unicode allocations fail with a MemoryError:Amaury Forgeot d'Arc2008-07-312-1/+17
* 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-313-2/+7
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-3113-29/+258
* remove usage of MacOS from TkinterBenjamin Peterson2008-07-311-10/+0
* 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-312-4/+2
* #2542: now that issubclass() may call arbitrary code,Amaury Forgeot d'Arc2008-07-313-4/+49
* I mess up again; BufferError inherits StandardErrorBenjamin Peterson2008-07-301-1/+1
* Add note about problems with math.fsum on x86 hardware.Mark Dickinson2008-07-301-0/+26
* add BufferError to the exception hieracrchyBenjamin Peterson2008-07-301-0/+1
* backport r64751Benjamin Peterson2008-07-301-0/+2
* Replace math.sum with math.fsum in a couple of commentsMark Dickinson2008-07-301-2/+2
* Rename math.sum to math.fsumMark Dickinson2008-07-305-35/+35
* getrandombits is actually getrandbitsBenjamin Peterson2008-07-302-5/+5
* Fix special-value handling for math.sum.Mark Dickinson2008-07-301-38/+54
* Neaten-up the itertools recipes.Raymond Hettinger2008-07-302-12/+8
* the from __future__ import with_statement isn't needed in 2.6Benjamin Peterson2008-07-291-1/+1
* More modifications to tests for math.sum: replace the PythonMark Dickinson2008-07-291-39/+39
* Be less strict with replication timeouts (the machineJesus Cea2008-07-291-7/+19
* Refinements in the bsddb testsuiteJesus Cea2008-07-292-4/+4
* backport r65264Benjamin Peterson2008-07-282-30/+64
* Clarify wordingAndrew M. Kuchling2008-07-281-1/+1
* clarify Popen argumentBenjamin Peterson2008-07-271-3/+4
* 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-27143-322/+474
* note robotparser bug fix.Skip Montanaro2008-07-271-0/+2
* Close issue 3437 - missing state change when Allow lines are processed.Skip Montanaro2008-07-272-0/+74
* Shorten some overlong lines.Georg Brandl2008-07-261-3/+6
* disable some failing tests in test_locale due to a bug in locale.py.Antoine Pitrou2008-07-261-15/+14
* Remove extra wordsAndrew M. Kuchling2008-07-261-1/+1
* This sentence continues to bug me; rewrite it for the second timeAndrew M. Kuchling2008-07-261-2/+3
* 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
* add a NEWS entryAntoine Pitrou2008-07-251-0/+3
* Raymond's patch for #1819: speedup function calls with named parametersAntoine Pitrou2008-07-251-22/+30
* add a pybench test for complex function calls (part of #1819)Antoine Pitrou2008-07-251-0/+58
* fix indentationBenjamin Peterson2008-07-251-1/+1
* convert test_locale to unittest, and add a mechanism to override localconv() ...Antoine Pitrou2008-07-252-119/+278
* #3394: zipfile.writestr doesn't set external attributes, so files are extract...Antoine Pitrou2008-07-253-0/+18
* Issue 1592: Better error reporting for operations on closed shelves.Raymond Hettinger2008-07-253-1/+29