Re: [python-win32] Setting ownership and permissions

2013-12-31 Thread Roger Upole
You should be able to just adjust privs once, instead of doing it in each call for every file. Roger "Joseph L. Casale" wrote in message news:assp.006455fdda.50f65708cf40439eba7f2abd9c2d8...@exch.activenetwerx.com... >I have a situation where I need to remove large directories and in doing

Re: [python-win32] Canonical ordering of an ACL

2013-12-31 Thread Roger Upole
See function _ReorderACL in PyACL.cpp: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/file/90d1d37b2444/win32/src/PyACL.cpp Roger "Joseph L. Casale" wrote in message news:assp.0077d9e4c1.e9def4441d094aa091d586758fbd3...@exch.activenetwerx.com... >I can't seem to find any info on t

[python-win32] Canonical ordering of an ACL

2013-12-31 Thread Joseph L. Casale
I can't seem to find any info on the PyACL methods that modify an ACL as to whether or not they enforce canonical ordering, I hate assume but given the role of some of the methods it does look it would need to? Thanks, jlc ___ python-win32 mailing list p

Re: [python-win32] Win32 GUI for beginners.

2013-12-31 Thread Tim Roberts
Sean Murphy wrote: > I am very very new to Python. I have read the book on programming for Windows > with Python that was released in 2000. The book is very good but doesn't give > me the basic information I am seeking. Since I am a beginner programmer. I want to caution you that you have an awf

Re: [python-win32] Win32 GUI for beginners.

2013-12-31 Thread RayS
I was in a similar place about 12 years ago, and settled on wx http://wiki.wxpython.org/How%20to%20Learn%20wxPython and BoaConstructor http://sourceforge.net/projects/boa-constructor/, which has served well since. A good book I'd bought is now online http://eduunix.ccut.edu.cn/index2/pdf/Mannin

Re: [python-win32] Win32 GUI for beginners.

2013-12-31 Thread Heang Lim
Hi Sean, I have been using Qt to automate test cases for the different network security applications and Voice over IP products I used to work on for my current company and my last company for the last ten years. I have built a couple GUI apps using both Qt (PyQt4) and Python scripts for these two

Re: [python-win32] Win32 GUI for beginners.

2013-12-31 Thread John Grant
Hi Sean, My opinion is that you would be better served learning Qt. In some ways this additional dependency might cloud matters, but for the features you ask for, Qt will make your development streamlined. You can find more information about the Python bindings at: https://wiki.python.org/moin/PyQt

[python-win32] winpexpect like library keeping process in a 'tty'

2013-12-31 Thread Gelonida N
Hi, pexpect is a python library for non windows OSes allowing to start a process connected to a pseudotty, capture its output and control its input. There is some kind of equivalent module, which is called winpexpect. I noticed one difference however: let's imagine, that I want to launch a

[python-win32] Win32 GUI for beginners.

2013-12-31 Thread Sean Murphy
Hi all. I am very very new to Python. I have read the book on programming for Windows with Python that was released in 2000. The book is very good but doesn't give me the basic information I am seeking. Since I am a beginner programmer. I want to create a GUI windows app with Python. The progra