I'm experiencing an unexpected problem. I need to retrieve the base unit strength for a unit type - without using CyUnit.baseCombatStr(). I naturally counted on there being something like CvUnitInfo.baseStrength(). But I guess not... 
Is there a way to do this - with Python - without actually creating a new unit and using the baseCombatStr() method on its CyUnit object?
edit: Wait a minute - its CvUnitInfo.getCombat(), isn't it?
In that case, never mind. 

Is there a way to do this - with Python - without actually creating a new unit and using the baseCombatStr() method on its CyUnit object?
edit: Wait a minute - its CvUnitInfo.getCombat(), isn't it?

Code:
iStrength = gc.getUnitInfo(eUnitType).getCombat()
