Changeset: 70aa06ebe04e for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=70aa06ebe04e Modified Files: Branch: default Log Message:
merge with Jun2010 branch diffs (17 lines): diff -r fab42ddc4495 -r 70aa06ebe04e testing/src/process.py --- a/testing/src/process.py Wed Aug 18 16:12:41 2010 +0200 +++ b/testing/src/process.py Wed Aug 18 18:42:36 2010 +0200 @@ -91,7 +91,12 @@ ret.append(c) if size > 0: size -= 1 - self._queue.task_done() + try: + # only available as of Python 2.5 + self._queue.task_done() + except AttributeError: + # not essential, if not available + pass if not c: self._eof = True break # EOF _______________________________________________ Checkin-list mailing list Checkin-list@monetdb.org http://mail.monetdb.org/mailman/listinfo/checkin-list