Re: [python-win32] win32com v.s. win32comext?

2006-01-04 Thread aurora
Thank you. That works! By the way there is a few more things I find out in order to package shell extension with py2exe. It has to be built as an in-process COM server. So I have added this in the setup.py context_menu_handler = Target( description = "Context Menu Handler", # what

Re: [python-win32] win32com v.s. win32comext?

2006-01-03 Thread Thomas Heller
aurora <[EMAIL PROTECTED]> writes: > I use win32com.shell. There are something special going on I don't > understand. Notice the commands below. I imported win32com.shell. But the > module is being loaded from win32comext\shell\__init__.pyc. > import win32com.shell win32com.shell >

[python-win32] win32com v.s. win32comext?

2006-01-03 Thread aurora
I use win32com.shell. There are something special going on I don't understand. Notice the commands below. I imported win32com.shell. But the module is being loaded from win32comext\shell\__init__.pyc. >>> import win32com.shell >>> win32com.shell What is the mechanism to make this happen? I a