summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update for newest Sphinx.Georg Brandl2008-03-091-3/+4
|
* #2249: document assertTrue and assertFalse.Georg Brandl2008-03-091-0/+2
|
* Well that was dumb. platform.python_implementation returns a function, not aJeffrey Yasskin2008-03-081-2/+3
| | | | string.
* Fix pybench for pythons < 2.6, tested back to 2.3.Jeffrey Yasskin2008-03-081-2/+2
|
* Add tests for with and finally performance to pybench.Jeffrey Yasskin2008-03-082-0/+194
|
* Issue 1106316. post_mortem()'s parameter, traceback, is nowFacundo Batista2008-03-083-3/+20
| | | | | optional: it defaults to the traceback of the exception that is currently being handled.
* #1533486: fix types in refcount intro.Georg Brandl2008-03-081-1/+1
|
* Add new name for Mandrake: Mandriva.Marc-André Lemburg2008-03-081-3/+4
|
* #2253: fix continue vs. finally docs.Georg Brandl2008-03-081-6/+5
|
* Grammar fixAndrew M. Kuchling2008-03-071-1/+1
|
* Speed up with statements by storing the __exit__ method on the stack instead ↵Nick Coghlan2008-03-076-55/+77
| | | | of in a temp variable (bumps the magic number for pyc files)
* Progress on issue #1193577 by adding a polling .shutdown() method toJeffrey Yasskin2008-03-074-86/+118
| | | | | | SocketServers. The core of the patch was written by Pedro Werneck, but any bugs are mine. I've also rearranged the code for timeouts in order to avoid interfering with the shutdown poll.
* Tweak recipes and testsRaymond Hettinger2008-03-072-13/+36
|
* Issue 2246: itertools grouper object did not participate in GC (should be ↵Raymond Hettinger2008-03-062-5/+22
| | | | backported).
* More tests.Raymond Hettinger2008-03-061-6/+144
|
* Update db-4.4.20 build procedure.Martin v. Löwis2008-03-061-4/+9
|
* Rely on x64 platform configuration when building _bsddb on AMD64.Martin v. Löwis2008-03-062-9/+11
|
* Bug #2220: handle rlcompleter attribute match failure more gracefully.Georg Brandl2008-03-061-0/+2
|
* #2220: handle matching failure more gracefully.Georg Brandl2008-03-061-1/+1
|
* #2225: return nonzero status code from py_compile if not all files could be ↵Georg Brandl2008-03-063-3/+15
| | | | compiled.
* Add missing NEWS entry for r61263.Georg Brandl2008-03-061-0/+3
|
* Add isinstance/issubclass to tutorial.Georg Brandl2008-03-061-0/+16
|
* Little clarification of assignments.Georg Brandl2008-03-061-8/+11
|
* Expand on re.split behavior with captured expressions.Georg Brandl2008-03-061-1/+13
|
* Patch #2232: os.tmpfile might fail on Windows if the user has noMartin v. Löwis2008-03-062-0/+44
| | | | | permission to create files in the root directory. Will backport to 2.5.
* #1725737: ignore other VC directories other than CVS and SVN's too.Georg Brandl2008-03-062-5/+7
|
* Add two itemsAndrew M. Kuchling2008-03-061-4/+12
|
* Add examples.Raymond Hettinger2008-03-061-23/+29
|
* cd PCbuild only after deleting all pyc files.Martin v. Löwis2008-03-051-1/+1
|
* Small code cleanup.Raymond Hettinger2008-03-051-4/+2
|
* C implementation of itertools.permutations().Raymond Hettinger2008-03-053-14/+293
|
* #2239: PYTHONPATH delimiter is os.pathsep.Georg Brandl2008-03-051-1/+2
|
* Elaborate on the role of the altinstall target when installing multipleSkip Montanaro2008-03-051-8/+21
| | | | versions.
* 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.