MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / get_children

Method get_children

pydevd_attach_to_process/winappdbg/window.py:436–443  ·  view source on GitHub ↗

@see: L{get_parent} @rtype: list( L{Window} ) @return: List of child windows. @raise WindowsError: An error occured while processing this request.

(self)

Source from the content-addressed store, hash-verified

434 return self.__get_window(hWnd)
435
436 def get_children(self):
437 """
438 @see: L{get_parent}
439 @rtype: list( L{Window} )
440 @return: List of child windows.
441 @raise WindowsError: An error occured while processing this request.
442 """
443 return [self.__get_window(hWnd) for hWnd in win32.EnumChildWindows(self.get_handle())]
444
445 def get_tree(self):
446 """

Callers 1

get_treeMethod · 0.95

Calls 2

__get_windowMethod · 0.95
get_handleMethod · 0.95

Tested by

no test coverage detected