On Thu, Dec 4, 2008 at 7:33 PM, <[EMAIL PROTECTED]> wrote:
>Michael> try:
>Michael> from string import Template
>Michael> except ImportError:
>Michael> from our.compat.string import Template
>
> This is "easier to ask forgiveness than permission" (EAFP). This tends to
> be
Michael> if sys.version_info[:2] >= (2, 5):
Michael> from string import Template
Michael> else:
Michael> from our.compat.string import Template
This is "look before you leap" (LBYL).
Michael> try:
Michael> from string import Template
Michael> except Import