Source code for utilipy.utils.string
# -*- coding: utf-8 -*-
# ----------------------------------------------------------------------------
#
# TITLE : String
# PROJECT : utilipy
#
# ----------------------------------------------------------------------------
"""String Utilities.
Routine Listings
----------------
FormatTemplate
"""
__author__ = "Nathaniel Starkman"
__all__ = ["FormatTemplate"]
###############################################################################
# IMPORTS
# GENERAL
import re
import string
from string import *
# CUSTOM
# PROJECT-SPECIFIC
###############################################################################
# __ALL__
# if hasattr(string, "__all__"):
# __all__ += string.__all__
# else:
# __all__ += list(dir(string))
###############################################################################
# CODE
###############################################################################
# /def
# /class
###############################################################################
# END