I've built Python, but can't figure out how to package it for windows

2010-02-09 Thread Mark Jones
Python 2.6.4 is built, and I found a bdist_wininst project and wininst-8 project. How do I manage to build the msi for this thing? -- http://mail.python.org/mailman/listinfo/python-list

Re: I've built Python, but can't figure out how to package it for windows

2010-02-09 Thread Mark Jones
That was so simple, thanks. I scanned all the folders for inst, install, setup, but since msi was the expected output extension, I didn't see that! On Feb 9, 6:14 pm, "Gabriel Genellina" wrote: > En Tue, 09 Feb 2010 19:55:30 -0300, Mark Jones   > escribió: > > >

Re: I've built Python, but can't figure out how to package it for windows

2010-02-10 Thread Mark Jones
Turns out there is an tools/msi directory and in there is python code to help build the MSI from the tree you built. Only problem is you can't use it without having python and PythonWin installed. So I grabbed 2.6.4 python and pythonwin and installed them. It uses COM objects and the CabSDK from M

os.stat and strange st_ctime

2010-10-10 Thread Mark Jones
I've read the part about these being variable Note The exact meaning and resolution of the st_atime, st_mtime, andst_ctime members depends on the operating system and the file system. For example, on Windows systems using the FAT or FAT32 file systems, st_mtimehas 2-second resolution, and st_ati