[issue24258] BZ2File objects do not have name attribute

2015-06-01 Thread Cliff Dyer
Cliff Dyer added the comment: I've got a fix for this now. In working on it, I've discovered that not all file-like objects have a .name attribute. io.BytesIO (which is used all over the test suite) does not. I've written a patch that always creates a .name attribute on BZ2File, but sets

[issue24258] BZ2File objects do not have name attribute

2015-06-01 Thread Cliff Dyer
Cliff Dyer added the comment: It's probably too late for this to get into 3.5, since we're already in betas. Pushing back to 3.6. -- versions: +Python 3.6 -Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24258

[issue24258] BZ2File objects do not have name attribute

2015-05-26 Thread Cliff Dyer
Cliff Dyer added the comment: I'd be happy to take a look at this one, if no one else is working on it. -- nosy: +jcd ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24258

[issue15957] README.txt points to broken contributing url in python wiki

2012-09-17 Thread Cliff Dyer
New submission from Cliff Dyer: The README.txt file for distutils2 points to http://wiki.python.org/Distutils2/Contributing, which raises a 404. The correct URL is http://wiki.python.org/moin/Distutils2/Contributing. The attached patch fixes this typo. -- assignee: docs@python

[issue8074] Fail-fast behavior for unittest

2010-03-05 Thread Cliff Dyer
New submission from Cliff Dyer j...@sdf.lonestar.org: When a long suite of tests is running, it would be nice to be able to exit out early to see the results of the tests that have run so far. I would like to see a couple of features included in `unittest` to this effect that have recently

[issue8074] Fail-fast behavior for unittest

2010-03-05 Thread Cliff Dyer
Cliff Dyer j...@sdf.lonestar.org added the comment: This feature was implemented in the django test runner as [r12034](http://code.djangoproject.com/changeset/12034) (^C override) and [r11843](http://code.djangoproject.com/changeset/11843) (failfast option

[issue3457] Release notes for 2.6b2 call it an alpha release

2008-07-28 Thread Cliff Dyer
New submission from Cliff Dyer [EMAIL PROTECTED]: The release notes for python 2.6b2 at http://www.python.org/download/releases/2.6/ identify the release as an alpha release. I'm not sure, but the disclaimer regarding who should use it might need changing too. alpha != beta

[issue3457] Release notes for 2.6b2 call it an alpha release

2008-07-28 Thread Cliff Dyer
Cliff Dyer [EMAIL PROTECTED] added the comment: The same issue applies to 3.0b2. The release is identified as alpha. Also, there's a bit about who the alphas are aimed at (developers), but nothing about the role of the betas. ___ Python tracker [EMAIL