What do I need to do (modules to load, locale methods to invoke, etc.) so that when I call:
datetime.date(2009,1,16).strftime(\"%A %Y-%b-%d\")
On Ubuntu,
$> sudo locale-gen es_ES.UTF-8 $> sudo dpkg-reconfigure locales $> python >>> import locale >>> locale.setlocale(locale.LC_TIME, 'es_ES.UTF-8')