Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add the grammar to the reference manual, since the new docs don't | Georg Brandl | 2008-08-01 | 2 | -1/+8 |
| | | | | | have the feature of putting all the small EBNF snippets together into one big file. | ||||
* | Submit fix for issue3393: Memory corruption in multiprocessing module | Jesse Noller | 2008-08-01 | 3 | -19/+28 |
| | |||||
* | Generate the PatternGrammar pickle during "make install". | Martin v. Löwis | 2008-08-01 | 2 | -1/+6 |
| | | | | Fixes part of #3131. | ||||
* | Tone down math.fsum warning. | Mark Dickinson | 2008-08-01 | 1 | -23/+2 |
| | |||||
* | Remove a use of callable() to silence the warning triggered under -3. | Brett Cannon | 2008-08-01 | 1 | -1/+1 |
| | |||||
* | Silence (Syntax|Deprecation)Warning for 'inspect'. Had to remove tuple | Brett Cannon | 2008-08-01 | 1 | -5/+9 |
| | | | | | unpacking in a parameter list and set some constants by hand that were pulled from the 'compiler' package. | ||||
* | Remove use of tuple unpacking and dict.has_key() so as to silence | Brett Cannon | 2008-08-01 | 2 | -4/+5 |
| | | | | SyntaxWarning as triggered by -3. | ||||
* | Remove assignment to True/False to silence the SyntaxWarning that is triggered | Brett Cannon | 2008-08-01 | 1 | -5/+5 |
| | | | | by -3. | ||||
* | Fix a DeprecationWarning about __getitem__() and exceptions in the ↵ | Brett Cannon | 2008-08-01 | 1 | -1/+1 |
| | | | | 'traceback' module. | ||||
* | Correct a crash when two successive unicode allocations fail with a MemoryError: | Amaury Forgeot d'Arc | 2008-07-31 | 2 | -1/+17 |
| | | | | | | | | | the freelist contained half-initialized objects with freed pointers. The comment /* XXX UNREF/NEWREF interface should be more symmetrical */ was copied from tupleobject.c, and appears in some other places. I sign the petition. | ||||
* | Remove a dummy test that was checked in by mistake | Amaury Forgeot d'Arc | 2008-07-31 | 1 | -8/+0 |
| | |||||
* | #3479: unichr(2**32) used to return u'\x00'. | Amaury Forgeot d'Arc | 2008-07-31 | 3 | -2/+7 |
| | | | | | | The argument was fetched in a long, but PyUnicode_FromOrdinal takes an int. (why doesn't gcc issue a truncation warning in this case?) | ||||
* | Security patches from Apple: prevent int overflow when allocating memory | Neal Norwitz | 2008-07-31 | 13 | -29/+258 |
| | |||||
* | remove usage of MacOS from Tkinter | Benjamin Peterson | 2008-07-31 | 1 | -10/+0 |
| | |||||
* | Rename testSum to testFsum and move it to proper place in test_math.py | Mark Dickinson | 2008-07-31 | 1 | -97/+96 |
| | |||||
* | Backport test.support.fcmp() from 3.0 to silence -3 warnings. | Brett Cannon | 2008-07-31 | 1 | -5/+4 |
| | |||||
* | Alter recipe to show how to call izip_longest() with | Raymond Hettinger | 2008-07-31 | 2 | -4/+2 |
| | | | | both a keyword argument and star arguments. | ||||
* | #2542: now that issubclass() may call arbitrary code, | Amaury Forgeot d'Arc | 2008-07-31 | 3 | -4/+49 |
| | | | | make sure that PyErr_ExceptionMatches returns 0 when an exception occurs there. | ||||
* | I mess up again; BufferError inherits StandardError | Benjamin Peterson | 2008-07-30 | 1 | -1/+1 |
| | |||||
* | Add note about problems with math.fsum on x86 hardware. | Mark Dickinson | 2008-07-30 | 1 | -0/+26 |
| | |||||
* | add BufferError to the exception hieracrchy | Benjamin Peterson | 2008-07-30 | 1 | -0/+1 |
| | |||||
* | backport r64751 | Benjamin Peterson | 2008-07-30 | 1 | -0/+2 |
| | |||||
* | Replace math.sum with math.fsum in a couple of comments | Mark Dickinson | 2008-07-30 | 1 | -2/+2 |
| | | | | that were missed by r65308 | ||||
* | Rename math.sum to math.fsum | Mark Dickinson | 2008-07-30 | 5 | -35/+35 |
| | |||||
* | getrandombits is actually getrandbits | Benjamin Peterson | 2008-07-30 | 2 | -5/+5 |
| | |||||
* | Fix special-value handling for math.sum. | Mark Dickinson | 2008-07-30 | 1 | -38/+54 |
| | | | | | | Also minor cleanups to the code: fix tabbing, remove trailing whitespace, and reformat to fit into 80 columns. | ||||
* | Neaten-up the itertools recipes. | Raymond Hettinger | 2008-07-30 | 2 | -12/+8 |
| | |||||
* | the from __future__ import with_statement isn't needed in 2.6 | Benjamin Peterson | 2008-07-29 | 1 | -1/+1 |
| | |||||
* | More modifications to tests for math.sum: replace the Python | Mark Dickinson | 2008-07-29 | 1 | -39/+39 |
| | | | | | version of msum by a version using a different algorithm, and use the new float.fromhex method to specify test results exactly. | ||||
* | Be less strict with replication timeouts (the machine | Jesus Cea | 2008-07-29 | 1 | -7/+19 |
| | | | | | can be a bit loaded), and be sure to yield the CPU when waiting. | ||||
* | Refinements in the bsddb testsuite | Jesus Cea | 2008-07-29 | 2 | -4/+4 |
| | |||||
* | backport r65264 | Benjamin Peterson | 2008-07-28 | 2 | -30/+64 |
| | |||||
* | Clarify wording | Andrew M. Kuchling | 2008-07-28 | 1 | -1/+1 |
| | |||||
* | clarify Popen argument | Benjamin Peterson | 2008-07-27 | 1 | -3/+4 |
| | |||||
* | Remove math.sum tests related to overflow, special values, and behaviour | Mark Dickinson | 2008-07-27 | 1 | -65/+10 |
| | | | | | near the extremes of the floating-point range. (The behaviour of math.sum should be regarded as undefined in these cases.) | ||||
* | Issue #3449: Update decimal module to use most recent specification | Mark Dickinson | 2008-07-27 | 143 | -322/+474 |
| | | | | (v. 1.68) and tests (v. 2.58) from IBM. | ||||
* | note robotparser bug fix. | Skip Montanaro | 2008-07-27 | 1 | -0/+2 |
| | |||||
* | Close issue 3437 - missing state change when Allow lines are processed. | Skip Montanaro | 2008-07-27 | 2 | -0/+74 |
| | | | | Adds test cases which use Allow: as well. | ||||
* | Shorten some overlong lines. | Georg Brandl | 2008-07-26 | 1 | -3/+6 |
| | |||||
* | disable some failing tests in test_locale due to a bug in locale.py. | Antoine Pitrou | 2008-07-26 | 1 | -15/+14 |
| | | | | this should fix the failures on the solaris buildbot. | ||||
* | Remove extra words | Andrew M. Kuchling | 2008-07-26 | 1 | -1/+1 |
| | |||||
* | This sentence continues to bug me; rewrite it for the second time | Andrew M. Kuchling | 2008-07-26 | 1 | -2/+3 |
| | |||||
* | Fix more buildbot failures on test_locale. | Antoine Pitrou | 2008-07-26 | 1 | -5/+10 |
| | |||||
* | try to fix most buildbot failures on test_locale + add a debug output for ↵ | Antoine Pitrou | 2008-07-26 | 1 | -47/+69 |
| | | | | the solaris buildbot | ||||
* | add a NEWS entry | Antoine Pitrou | 2008-07-25 | 1 | -0/+3 |
| | |||||
* | Raymond's patch for #1819: speedup function calls with named parameters | Antoine Pitrou | 2008-07-25 | 1 | -22/+30 |
| | | | | (35% faster according to pybench) | ||||
* | add a pybench test for complex function calls (part of #1819) | Antoine Pitrou | 2008-07-25 | 1 | -0/+58 |
| | |||||
* | fix indentation | Benjamin Peterson | 2008-07-25 | 1 | -1/+1 |
| | |||||
* | convert test_locale to unittest, and add a mechanism to override localconv() ↵ | Antoine Pitrou | 2008-07-25 | 2 | -119/+278 |
| | | | | results for further testing (#1864, #1222) | ||||
* | #3394: zipfile.writestr doesn't set external attributes, so files are ↵ | Antoine Pitrou | 2008-07-25 | 3 | -0/+18 |
| | | | | extracted mode 000 on Unix |