#!/usr/bin/python # -*- coding: utf-8 -*- from pyoida import Plugin class ExecTracer(Plugin): """Trace and replay debug executions.""" def get_action(self): """Register the plugin for given actions.""" return Plugin.PGA_DEBUGGER_ATTACH def handle_debugger(self, debugger, action): """Be notify about debugger attaching or detaching.""" print "Python Hello !"