Re: [Python-Dev] Python 2.5.1

2007-04-28 Thread Josiah Carlson
"Khalid A. Bakr" <[EMAIL PROTECTED]> wrote: > > --- "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > > There must be more to the problem than just an open > > file. Please undo the change that triggered the > > addition of the test, and see whether you > > can reproduce the original problem with a

Re: [Python-Dev] New Super PEP

2007-04-28 Thread James Y Knight
On Apr 28, 2007, at 10:43 PM, Calvin Spealman wrote: > Abstract > > > The PEP defines the proposal to enhance the super builtin to work > implicitly > upon the class within which it is used and upon the instance the > current > function was called on. The premise of the new super usag

[Python-Dev] Python 2.5.1

2007-04-28 Thread Khalid A. Bakr
For reference, this is the result of running the regression tests of the official Python 2.5.1 (final) on Win98. I think I saw it in the installtion screen that Python 2.5 is the last release to support Win98. Even though the unicode tests failing might be expected, what interested me was the fac

Re: [Python-Dev] Python 2.5.1

2007-04-28 Thread Khalid A. Bakr
--- "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > There must be more to the problem than just an open > file. Please undo the change that triggered the > addition of the test, and see whether you > can reproduce the original problem with an arbitrary > open file (I > could trigger the problem wit

Re: [Python-Dev] New Super PEP

2007-04-28 Thread Collin Winter
On 4/28/07, Calvin Spealman <[EMAIL PROTECTED]> wrote: > Comments welcome, of course. Bare with my first attempt at crafting a PEP. > > PEP: XXX > Title: Super As A Keyword > Version: $Revision$ > Last-Modified: $Date$ > Author: Calvin Spealman <[EMAIL PROTECTED]> > Status: Draft > Type: Standards

Re: [Python-Dev] New Super PEP

2007-04-28 Thread Adam Olsen
On 4/28/07, Calvin Spealman <[EMAIL PROTECTED]> wrote: > Comments welcome, of course. Bare with my first attempt at crafting a PEP. > > PEP: XXX > Title: Super As A Keyword > Version: $Revision$ > Last-Modified: $Date$ > Author: Calvin Spealman <[EMAIL PROTECTED]> > Status: Draft > Type: Standards

Re: [Python-Dev] Python 2.5.1

2007-04-28 Thread Calvin Spealman
On 4/28/07, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > > I have a patch myself that creates an open file and uses that as the > > test. My reasoning is that pagefile.sys was chosen as a file that > > should always exist and be open, so its safe to test against, so we > > should just be testing

[Python-Dev] New Super PEP

2007-04-28 Thread Calvin Spealman
Comments welcome, of course. Bare with my first attempt at crafting a PEP. PEP: XXX Title: Super As A Keyword Version: $Revision$ Last-Modified: $Date$ Author: Calvin Spealman <[EMAIL PROTECTED]> Status: Draft Type: Standards Track Content-Type: text/x-rst Created: 30-Apr-2007 Python-Version: 2.6

Re: [Python-Dev] Python 2.5.1

2007-04-28 Thread Martin v. Löwis
> I have a patch myself that creates an open file and uses that as the > test. My reasoning is that pagefile.sys was chosen as a file that > should always exist and be open, so its safe to test against, so we > should just be testing against a fixture, instead. It is here, and if > someone would re

[Python-Dev] Summary of Tracker Issues

2007-04-28 Thread Tracker
ACTIVITY SUMMARY (04/22/07 - 04/29/07) Tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue number. Do NOT respond to this message. 1649 open ( +0) / 8584 closed ( +0) / 10233 total ( +0) Average duration of open issues: 778 days. Medi

Re: [Python-Dev] Python 2.5.1

2007-04-28 Thread Calvin Spealman
On 4/28/07, Jean-Paul Calderone <[EMAIL PROTECTED]> wrote: > On Sat, 28 Apr 2007 09:32:57 -0400, Raghuram Devarakonda <[EMAIL PROTECTED]> > wrote: > >On 4/28/07, Calvin Spealman <[EMAIL PROTECTED]> wrote: > >> Index: test_os.py > >> =

Re: [Python-Dev] Python 2.5.1

2007-04-28 Thread Jean-Paul Calderone
On Sat, 28 Apr 2007 09:32:57 -0400, Raghuram Devarakonda <[EMAIL PROTECTED]> wrote: >On 4/28/07, Calvin Spealman <[EMAIL PROTECTED]> wrote: >> Index: test_os.py >> === >> --- test_os.py (revision 54982) >> +++ test_os.py (working co

[Python-Dev] April 1-15, 2007 Summaries Final Draft

2007-04-28 Thread Calvin Spealman
If no one has any further comments over the weekend and Monday, I'll post it as the final summary that evening/night. = Announcements = = Summaries = --- About SSL tests --- An open bug about missing SSL tests (#451607) was brought

Re: [Python-Dev] Python 2.5.1

2007-04-28 Thread Raghuram Devarakonda
On 4/28/07, Calvin Spealman <[EMAIL PROTECTED]> wrote: > Index: test_os.py > === > --- test_os.py (revision 54982) > +++ test_os.py (working copy) > @@ -6,6 +6,7 @@ > import unittest > import warnings > import sys > +import tempfi

Re: [Python-Dev] Python 2.5.1

2007-04-28 Thread Calvin Spealman
On 4/27/07, Khalid A. Bakr <[EMAIL PROTECTED]> wrote: > Okay. It seems I mixed up WindowsError with the > exception e in my post; at least it is now known that > e is not a number. The patch is short and is as > follows: > > Index: Lib/test/test_os.py > =