Skip to content

Instantly share code, notes, and snippets.

@sevas
Created January 13, 2012 09:17
Show Gist options
  • Save sevas/1605251 to your computer and use it in GitHub Desktop.
Save sevas/1605251 to your computer and use it in GitHub Desktop.
set french locale on windows with python
# locale string from: http://msdn.microsoft.com/en-us/library/cdax410z(v=VS.80).aspx
if sys.platform in [ 'win32']:
locale.setlocale(locale.LC_ALL, 'fra')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment