summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
* Issue #799428: Fix Tkinter.Misc._nametowidget to unwrapMartin v. Löwis2008-08-021-9/+9
| | | | Tcl command objects.
* Remove a __getitem__() removal on an exception to silence a warning triggeredBrett Cannon2008-08-021-1/+1
| | | | under -3.
* Remove a dict.has_key() use to silence a warning when running under -3.Brett Cannon2008-08-021-1/+1
|
* Remove a dict.has_key() use to silence a warning raised under -3.Brett Cannon2008-08-021-1/+1
|
* Remove a tuple unpacking in a parameter list to remove a SyntaxWarning raisedBrett Cannon2008-08-021-1/+3
| | | | while running under -3.
* Remove a tuple unpacking in a parameter list to suppress the SyntaxWarning withBrett Cannon2008-08-021-1/+2
| | | | -3.
* 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
| | | | | 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 silenceBrett Cannon2008-08-012-4/+5
| | | | SyntaxWarning as triggered by -3.
* Remove assignment to True/False to silence the SyntaxWarning that is triggeredBrett Cannon2008-08-011-5/+5
| | | | by -3.
* Fix a DeprecationWarning about __getitem__() and exceptions in the ↵Brett Cannon2008-08-011-1/+1
| | | | 'traceback' module.
* Correct a crash when two successive unicode allocations fail with a MemoryError:Amaury Forgeot d'Arc2008-07-311-0/+14
| | | | | | | | | 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 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
| | | | | | 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 memoryNeal Norwitz2008-07-314-9/+161
|
* 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-311-2/+1
| | | | both a keyword argument and star arguments.
* #2542: now that issubclass() may call arbitrary code,Amaury Forgeot d'Arc2008-07-311-1/+34
| | | | make sure that PyErr_ExceptionMatches returns 0 when an exception occurs there.
* 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
|
* getrandombits is actually getrandbitsBenjamin Peterson2008-07-301-3/+3
|
* 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
| | | | | 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 machineJesus Cea2008-07-291-7/+19
| | | | | can be a bit loaded), and be sure to yield the CPU when waiting.
* Refinements in the bsddb testsuiteJesus Cea2008-07-292-4/+4
|
* backport r65264Benjamin Peterson2008-07-281-30/+61
|
* Remove math.sum tests related to overflow, special values, and behaviourMark Dickinson2008-07-271-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 specificationMark Dickinson2008-07-27142-322/+471
| | | | (v. 1.68) and tests (v. 2.58) from IBM.
* Close issue 3437 - missing state change when Allow lines are processed.Skip Montanaro2008-07-272-0/+74
| | | | Adds test cases which use Allow: as well.
* disable some failing tests in test_locale due to a bug in locale.py.Antoine Pitrou2008-07-261-15/+14
| | | | this should fix the failures on the solaris buildbot.
* 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 ↵Antoine Pitrou2008-07-261-47/+69
| | | | the solaris buildbot
* convert test_locale to unittest, and add a mechanism to override localconv() ↵Antoine Pitrou2008-07-252-119/+278
| | | | results for further testing (#1864, #1222)
* #3394: zipfile.writestr doesn't set external attributes, so files are ↵Antoine Pitrou2008-07-252-0/+14
| | | | extracted mode 000 on Unix
* Issue 1592: Better error reporting for operations on closed shelves.Raymond Hettinger2008-07-252-1/+26
|
* #2242: utf7 decoding crashes on bogus input on some Windows/MSVC versionsAntoine Pitrou2008-07-251-0/+3
|
* use isinstanceBenjamin Peterson2008-07-231-1/+1
|
* bsddb module updated to version 4.7.2devel9.Jesus Cea2008-07-2314-139/+492
| | | | | | | | | | | | | This patch publishes the work done until now for Python 3.0 compatibility. Still a lot to be done. When possible, we use 3.0 features in Python 2.6, easing development and testing, and exposing internal changes to a wider audience, for better test coverage. Some mode details: http://www.jcea.es/programacion/pybsddb.htm#bsddb3-4.7.2
* 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
| | | | | The problem was introduced by r53954, the correction is to restore the symmetry between PyFrame_FastToLocals and PyFrame_LocalsToFast
* Issue 3396. Fixed the autocompletion of 'int.', and workedFacundo Batista2008-07-211-6/+11
| | | | | a little that part of the code, fixing a detail and enhancing a bit others.
* Save the whole of sys.modules instead of using an import tracker.Georg Brandl2008-07-201-21/+4
| | | | | This, when merged to py3k, will fix the spurious buildbot failure in test_urllib2 ("<urlopen error unknown url type: do>").
* Fix misspeeld method name (negative)Neal Norwitz2008-07-201-1/+1
|
* Remove exception indexing in asyncore.Georg Brandl2008-07-201-9/+9
|
* 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
|