Regarding setting Django's USE_I18N = False
in settings.py the documentation say:
A boolean that specifies whether Django's internationalization system should be enabled. This provides an easy way to turn it off, for performance.
and:
If you don’t use internationalization, you should take the two seconds to set USE_I18N = False in your settings file.
This makes it sound like a big deal. Can anybody give me some information on how much performance I'm really gaining by turning it off until I need it?