home *** CD-ROM | disk | FTP | other *** search
/ c't freeware shareware 1997 / CT_SW_97.ISO / mac / Software / entwickl / win95 / pythowin.exe / DATA.3 / win32com / util.py < prev    next >
Text File  |  1997-01-28  |  389b  |  16 lines

  1. # Utility functions common to client and server.
  2.  
  3. def IIDToInterfaceName(iid):
  4.     """
  5.     Converts an IID to an interface name.  Used primarily for debugging.
  6.  
  7.     iid -- An IID object.
  8.  
  9.     Result -- Always a string - either an interface name, or '<Unregistered interface>'
  10.     """
  11.     try:
  12.         return __.pythoncom.ServerInterfaces[iid]
  13.     except KeyError:
  14.         return "<Unregistered interface>"
  15.  
  16.