Re: [python-win32] Pylons as service...

2009-05-19 Thread Tim Roberts
Durumdara wrote: > > > > The service NAME isn't important at all. That's only used for filing, > so to speak. It's the command line that identifies the script to > be run. > > > One thing I don't understand that Image Path is "" (in this machine): > "C:\Python25\lib\site-packages\wi

[python-win32] I was able to use pyInstaller as a python library

2009-05-19 Thread 鎌土記良
Hello, Everyone. I was able to use pyInstaller as a python library http://moco.sakura.ne.jp/pyInstaller.zip and This library test code is available in http://moco.sakura.ne.jp/pyi_test.zip This library implements only a function to output windows binary. and I don't add the change to the conte

Re: [python-win32] Distutils changes broke pywin32 build

2009-05-19 Thread Tim Golden
Tim Golden wrote: Something in the changes to build_ext.py in r72585 has broken the setup.py build for pywin32: [... after discussions on distutils-sig ... http://mail.python.org/pipermail/distutils-sig/2009-May/011901.html ] Looking like it's an issue in distutils. Tarek's said he'll get a f

Re: [python-win32] Pylons as service...

2009-05-19 Thread Durumdara
Dear Tim! 2009/5/18 Tim Roberts > Durumdara wrote: > > > > 1.) > > I wanna ask something about python services. > > ... > > Yesterday I tried to install two of pylons services. > > Interesting thing I saw. > > > > Every of the installed services are have SAME EXE without any > > information to i

Re: [python-win32] Distutils changes broke pywin32 build

2009-05-19 Thread Tim Golden
Michael Foord wrote: Distutils is undergoing heavy changes in the hands of Tarek Ziade. One of the changes is drastically improving the test coverage. I would definitely discuss the problem with him (directly or on distutils-sig) as he will want to know about it - either to explain why the chang

Re: [python-win32] Distutils changes broke pywin32 build

2009-05-19 Thread Tim Golden
Tim Golden wrote: Something in the changes to build_ext.py in r72585 has broken the setup.py build for pywin32: http://svn.python.org/view/python/trunk/Lib/distutils/command/build_ext.py?r1=72531&r2=72585&pathrev=72585 Well, in short, it's a change in the way in which package prefixes are us

Re: [python-win32] Distutils changes broke pywin32 build

2009-05-19 Thread Michael Foord
Distutils is undergoing heavy changes in the hands of Tarek Ziade. One of the changes is drastically improving the test coverage. I would definitely discuss the problem with him (directly or on distutils-sig) as he will want to know about it - either to explain why the change is necessary and help

[python-win32] Distutils changes broke pywin32 build

2009-05-19 Thread Tim Golden
Something in the changes to build_ext.py in r72585 has broken the setup.py build for pywin32: http://svn.python.org/view/python/trunk/Lib/distutils/command/build_ext.py?r1=72531&r2=72585&pathrev=72585 The symptom is that pywintypes.lib is created in the build directory, but distutils is then lo

Re: [python-win32] Re ading date from PYTime

2009-05-19 Thread Tim Golden
SantoshMohan wrote: Hi, I am writing a script to read date from xls file. Output is like this: emptylist [((u'Name', u'DOB'),), ((u'C R RAMESH', ),), ((u'G SIVA RAMA KRISHNAIAH', ),)] emptylist[1] ((u'C R RAMESH', ),) value ((u'C R RAMESH', ),) value[0][1] How to read the date and

[python-win32] Re ading date from PYTime

2009-05-19 Thread SantoshMohan
Hi, I am writing a script to read date from xls file. Output is like this: >>>emptylist [((u'Name', u'DOB'),), ((u'C R RAMESH', ),), ((u'G SIVA RAMA KRISHNAIAH', ),)] >>> emptylist[1] ((u'C R RAMESH', ),) >>> value ((u'C R RAMESH', ),) >>> value[0][1] How to read the date and Time? -- View