[python-win32] Open MS Word, execute specific Ribbon command

2016-12-08 Thread Nicolas Göddel
Hi there, I am able to start Word, open a file, find its window handle and the handle of the Ribbon. Now I want to switch to an other tab within the Ribbon and execute a specific command. It seems now that I need these API calls to do this directly without simulating key presses: - GetAccessibleO

Re: [python-win32] Inheritable sockets on Windows and multiprocessing

2016-12-08 Thread Preston Landers
Thanks to Eryk Sun who pointed out that you can now just directly pass the socket object to the child process in multiprocessing (instead of the fileno int). I confirmed that worked for my use case. http://bugs.python.org/issue28906 thanks, Preston On Tue, Dec 6, 2016 at 5:11 PM Preston Landers