summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Issue 1872: Changed the struct module typecode from 't' to '?', forThomas Heller2008-03-058-29/+41
| | | | compatibility with PEP3118.
* News entry for yesterdays commit.Thomas Heller2008-03-051-0/+10
|
* Fix some rst.Georg Brandl2008-03-051-7/+7
|
* Fix test_socketserver on Windows after r61099 added several signal.alarm()Jeffrey Yasskin2008-03-051-3/+7
| | | | | | calls (which don't exist on non-Unix platforms). Thanks to Trent Nelson for the report and patch.
* test_smtplib sometimes reports leaks too, suppress itNeal Norwitz2008-03-051-1/+1
|
* Use -u urlfetch to run more testsNeal Norwitz2008-03-051-3/+3
|
* Tabs -> spacesNeal Norwitz2008-03-051-13/+13
|
* Make the timeout longer to give slow machines a chance to pass the testNeal Norwitz2008-03-051-1/+1
| | | | | | before timing out. This doesn't change the duration of the test under normal circumstances. This is targetted at fixing the spurious failures on the FreeBSD buildbot primarily.
* Catch OSError when trying to remove a file in case removal fails. ThisNeal Norwitz2008-03-051-2/+5
| | | | should prevent a failure in tearDown masking any real test failure.
* Get this test to pass even when there is no sound card in the system.Neal Norwitz2008-03-051-4/+16
| | | | Patch from Trent Nelson. (I can't test this.)
* Remove the files/dirs after closing the DB so the tests work on Windows.Neal Norwitz2008-03-052-6/+3
| | | | Patch from Trent Nelson. Also simplified removing a file by using test_support.
* Issue#2238: some syntax errors from *args or **kwargs expressionsAmaury Forgeot d'Arc2008-03-053-0/+14
| | | | | | | | | | | | | | would give bogus error messages, because of untested exceptions:: >>> f(**g(1=2)) XXX undetected error Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'int' object is not iterable instead of the expected SyntaxError: keyword can't be an expression Will backport.
* Add more items; add fragmentary notesAndrew M. Kuchling2008-03-051-14/+166
|
* Fix refleak in chain().Raymond Hettinger2008-03-041-1/+1
|
* fix typoFred Drake2008-03-041-1/+1
|
* Try to fix the build for PY_LINUX.Thomas Heller2008-03-041-0/+1
|
* Merged changes from libffi3-branch.Thomas Heller2008-03-04100-3575/+38655
| | | | | | | | | The bundled libffi copy is now in sync with the recently released libffi3.0.4 version, apart from some small changes to Modules/_ctypes/libffi/configure.ac. I gave up on using libffi3 files on os x. Instead, static configuration with files from pyobjc is used.
* Close the file before trying to remove the directory so it works on Windows.Neal Norwitz2008-03-041-1/+2
| | | | As reported by Trent Nelson on python-dev.
* #2230: document that PyArg_* leaves addresses alone on error.Georg Brandl2008-03-041-4/+8
|
* Fix some patch attributions.Georg Brandl2008-03-041-2/+4
|
* Beef-up docs and tests for itertools. Fix-up end-case for product().Raymond Hettinger2008-03-043-19/+145
|
* Thesis night results: add various itemsAndrew M. Kuchling2008-03-041-12/+162
|
* Add versionadded tagsAndrew M. Kuchling2008-03-041-0/+4
|
* Typo fixAndrew M. Kuchling2008-03-041-1/+1
|
* Fix sentence fragmentAndrew M. Kuchling2008-03-041-2/+2
|
* Grammar fix; markup fixAndrew M. Kuchling2008-03-041-2/+2
|
* Typo fixAndrew M. Kuchling2008-03-041-1/+1
|
* Issue 2226: Callable checked for the wrong abstract method.Raymond Hettinger2008-03-031-1/+1
|
* Remove dependency on itertools -- a simple genexp suffices.Raymond Hettinger2008-03-031-2/+2
|
* Expand a bit on genexp scopes.Georg Brandl2008-03-031-8/+9
|
* Actually import itertools.Georg Brandl2008-03-031-0/+1
|
* 15 -> 16, the 2ndGeorg Brandl2008-03-031-1/+1
|
* There are now sixteen isfoo functions.Georg Brandl2008-03-031-1/+1
|
* 15 -> 16Christian Heimes2008-03-031-2/+2
|
* Since abc._Abstract was replaces by a new type flags the regression test ↵Christian Heimes2008-03-035-4/+24
| | | | suite fails. I've added a new function inspect.isabstract(). Is the mmethod fine or should I check if object is a instance of type or subclass of object, too?
* Initialized merge tracking via "svnmerge" with revisions "1-60195" fromChristian Heimes2008-03-030-0/+0
| | | | svn+ssh://pythondev@svn.python.org/python/branches/trunk-math
* Only DECREF if ret != NULLNeal Norwitz2008-03-031-1/+1
|
* Add test_main() functions to various tests where it was simple to do. Done soBrett Cannon2008-03-039-36/+63
| | | | | that regrtest can execute the test_main() directly instead of relying on import side-effects.
* Add a note in the main test class' docstring that the order of execution of theBrett Cannon2008-03-031-2/+9
| | | | tests is important.
* Add a note in the main test class' docstring that the order of execution of theBrett Cannon2008-03-031-0/+4
| | | | tests is important.
* Move test_largefile over to using 'with' statements for open files.Brett Cannon2008-03-031-28/+18
| | | | Also rename the driver function to test_main() instead of main_test().
* compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that inJeffrey Yasskin2008-03-031-0/+2
| | | | ceval.c. This is worth about a .03-.04us speedup on a simple with block.
* Refactor test_logging to use unittest. This should finally solve the flakinessBrett Cannon2008-03-033-2164/+753
| | | | | | issues. Thanks to Antoine Pitrou for the patch.
* Modify import of test_support so that the code can also be used with aGregory P. Smith2008-03-0215-15/+73
| | | | | stand alone distribution of bsddb that includes its own small copy of test_support for the needed functionality on older pythons.
* Fix factual error.Georg Brandl2008-03-021-5/+6
|
* Make clear that the constants are strings.Georg Brandl2008-03-021-15/+15
|
* Added note about update of sqlite3 module.Gerhard Häring2008-03-021-0/+2
|
* Made sqlite3 module's regression tests work with SQLite versions that don'tGerhard Häring2008-03-021-2/+3
| | | | support "create table if not exists", yet.
* Handle 0-tuples which can be singletons.Raymond Hettinger2008-03-021-1/+1
|
* Simplify code for itertools.product().Raymond Hettinger2008-03-021-13/+2
|