Re: python 2.5 problems

2007-09-11 Thread Brian
Was not specific about my process. Yes, I did use the 'formal' windoze uninstall using Add/Remove Programs. I ran the same code and idle at work (XP Pro/SP2/Python 2.4) with no problems. My next step is to install python 2.5 at work. My Linux partition has Python 2.4, and I do not use idle on

Re: python 2.5 problems

2007-09-10 Thread Bjoern Schliessmann
Brian wrote: > Finally deleted 2.2 and loaded 2.5 (see below), using > the msi, on my XP partition. Having intermittent system > crashes. The probability that this is not a coincidence is IMHO very, very low. Looks like a deeper software or even hardware problem. Regards, Björn -- BOFH excu

Re: python 2.5 problems

2007-09-10 Thread Ant
On Sep 9, 6:57 pm, "O.R.Senthil Kumaran" <[EMAIL PROTECTED]> wrote: > > Finally deleted 2.2 and loaded 2.5 (see below), using > > Dont delete. Uninstall python 2.2 and additional modules if you have > installed them. But since you've already deleted 2.2, download and reinstall 2.2, uninstall 2.2

Re: python 2.5 problems

2007-09-09 Thread O.R.Senthil Kumaran
> Finally deleted 2.2 and loaded 2.5 (see below), using Dont delete. Uninstall python 2.2 and additional modules if you have installed them. > So is there something not stable about ver 2.5 on XP ? Nothing like that. Python 2.5 works perfectly fine on Windows XP. Download from www.python.org

Re: Python 2.5, problems reading large ( > 4Gbyes) files on win2k

2007-03-05 Thread Bill Tydeman
On 3/4/07, Paul Duffy <[EMAIL PROTECTED]> wrote: Bill Tydeman wrote: > Just curious, but since the file size limitation on NTFS is 4 GB, have > you confirmed that it isn't some other part of the interaction that is > causing the problem? What FS is hosting the files? I don't think that is corr

Re: Python 2.5, problems reading large ( > 4Gbyes) files on win2k

2007-03-04 Thread Paul Duffy
Bill Tydeman wrote: > Just curious, but since the file size limitation on NTFS is 4 GB, have > you confirmed that it isn't some other part of the interaction that is > causing the problem? What FS is hosting the files? I don't think that is correct. Groovy version of app runs just fine. > > On

Re: Python 2.5, problems reading large ( > 4Gbyes) files on win2k

2007-03-03 Thread Bill Tydeman
Just curious, but since the file size limitation on NTFS is 4 GB, have you confirmed that it isn't some other part of the interaction that is causing the problem? What FS is hosting the files? On 2 Mar 2007 10:09:15 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Folks, I've a Python 2.5

Re: Python 2.5, problems reading large ( > 4Gbyes) files on win2k

2007-03-03 Thread casevh
On Mar 2, 10:09 am, [EMAIL PROTECTED] wrote: > Folks, > > I've a Python 2.5 app running on 32 bit Win 2k SP4 (NTFS volume). > Reading a file of 13 GBytes, one line at a time. It appears that, > once the read line passes the 4 GByte boundary, I am getting > occasional random line concatenations. I

Re: Python 2.5, problems reading large ( > 4Gbyes) files on win2k

2007-03-02 Thread Paul Duffy
I am not using the universal newline. File reading loop is essentially... ifile = open("fileName", "r") for line in ifile ... Thanks Peter Otten wrote: > [EMAIL PROTECTED] wrote: > > >> I've a Python 2.5 app running on 32 bit Win 2k SP4 (NTFS volume). >> Reading a file of 13 GBytes, one li

Re: Python 2.5, problems reading large ( > 4Gbyes) files on win2k

2007-03-02 Thread Peter Otten
[EMAIL PROTECTED] wrote: > I've a Python 2.5 app running on 32 bit Win 2k SP4 (NTFS volume). > Reading a file of 13 GBytes, one line at a time. It appears that, > once the read line passes the 4 GByte boundary, I am getting > occasional random line concatenations. Input file is confirmed good >