Re: [Python-3000] RELEASED Python 2.6a1 and 3.0a3

2008-03-06 Thread Jim Kleckner
Martin v. Löwis wrote: >> Thanks for fixing these Martin! > > I have now also uploaded signed MSI files for 3.0a3. > > I have not tested them on a machine which doesn't have the > VS 2008 CRT installed (as all the machines I can access > right now do have it); please report what works and what >

Re: [Python-3000] RELEASED Python 2.6a1 and 3.0a3

2008-03-06 Thread Martin v. Löwis
> I suspect something in the install failed to set something > in the registry. Is there any log file of the install > to inspect? You need to run msiexec /i /l*v to generate a logfile for the installation. Regards, Martin ___ Python-3000 mailing l

Re: [Python-3000] RELEASED Python 2.6a1 and 3.0a3

2008-03-06 Thread Jim Kleckner
Jim Kleckner wrote: > Martin v. Löwis wrote: >>> Thanks for fixing these Martin! >> I have now also uploaded signed MSI files for 3.0a3. >> >> I have not tested them on a machine which doesn't have the >> VS 2008 CRT installed (as all the machines I can access >> right now do have it); please repor

Re: [Python-3000] RELEASED Python 2.6a1 and 3.0a3

2008-03-06 Thread Jim Kleckner
Martin v. Löwis wrote: >> I suspect something in the install failed to set something >> in the registry. Is there any log file of the install >> to inspect? > > You need to run > > msiexec /i /l*v > > to generate a logfile for the installation. Ok, I have the 3MB log file. Should I upload i

[Python-3000] The case for unbound methods?

2008-03-06 Thread Anthony Tolle
Exhibit A, wraptest.py (demonstrates using a wrapper to insert an extra argument into method calls): import sys if sys.version_info[0] < 3: _self_attr = 'im_self' else: _self_attr = '__self__' class methodwrapper(object):

Re: [Python-3000] The case for unbound methods?

2008-03-06 Thread Guido van Rossum
Would you mind giving an "executive summary" of your argument that doesn't require scanning 40 lines of code? On Thu, Mar 6, 2008 at 7:43 PM, Anthony Tolle <[EMAIL PROTECTED]> wrote: > Exhibit A, wraptest.py (demonstrates using a wrapper to insert an > extra argument into method calls): > >

Re: [Python-3000] The case for unbound methods?

2008-03-06 Thread Greg Ewing
Anthony Tolle wrote: > Have I made a case for the existence of unbound methods? Not very well, IMO. Without seeing a concrete use case, it's hard to be sure, but my feeling is that there's almost certainly a better way of thinking about the problem you're trying to solve -- one that doesn't requ

Re: [Python-3000] RELEASED Python 2.6a1 and 3.0a3

2008-03-06 Thread Martin v. Löwis
> Ok, I have the 3MB log file. Should I upload it > somewhere or is there a pattern to find? Please compress it, and make a bug report on bugs.python.org. Regards, Martin ___ Python-3000 mailing list [email protected] http://mail.python.org/mailm