Update of /cvsroot/pywin32/pywin32/com/win32com/client
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20161/com/win32com/client
Modified Files:
Tag: py3k
combrowse.py
Log Message:
merge reindentation changes from trunk.
Index: combrowse.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/client/combrowse.py,v
retrieving revision 1.8.2.1
retrieving revision 1.8.2.2
diff -C2 -d -r1.8.2.1 -r1.8.2.2
*** combrowse.py 29 Aug 2008 08:58:52 -0000 1.8.2.1
--- combrowse.py 3 Oct 2008 04:15:33 -0000 1.8.2.2
***************
*** 15,19 ****
Details
! This module allows browsing of registered Type Libraries, COM categories,
and running COM objects. The display is similar to the Pythonwin object
browser, and displays the objects in a hierarchical window.
--- 15,19 ----
Details
! This module allows browsing of registered Type Libraries, COM categories,
and running COM objects. The display is similar to the Pythonwin object
[...1005 lines suppressed...]
! root = HLIRoot("COM Browser")
! if sys.modules.has_key("app"):
! # do it in a window
! browser.MakeTemplate()
! browser.template.OpenObject(root)
! else:
! # list=hierlist.HierListWithItems( root, win32ui.IDB_BROWSER_HIER )
! # dlg=hierlist.HierDialog("COM Browser",list)
! dlg = browser.dynamic_browser(root)
! dlg.DoModal()
if __name__=='__main__':
! main()
+ ni = pythoncom._GetInterfaceCount()
+ ng = pythoncom._GetGatewayCount()
+ if ni or ng:
+ print "Warning - exiting with %d/%d objects alive" % (ni,ng)
|