#!/usr/bin/python2.2 #^--- change the above line to point to your installation of Python # $Id: //guest/mitch_stuart/perforce/utils/delta/wxUtil.py#1 $ def checkOneRadio(radios, radio): uncheckRadios(radios) radio.SetValue(1) def uncheckRadios(radios): for radio in radios: radio.SetValue(0)