--
You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-developers.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/5491ED93.2080506%40oddbird.net.
For more options, visit https://groups.google.com/d/optout.
Surprisingly, it seems that there isn’t a backwards compatibility problem with changing the type to lists, as the following pattern still works: # myproject/settings.py from django.conf.global_settings import FILE_UPLOAD_HANDLERS FILE_UPLOAD_HANDLERS += ('myproject.uploadhandler.FooBarUploadHandler',) Proof:['abc', ‘def’]foo = ['abc'] foo += ('def',) foo
I'm strongly against lists. Lists are mutable objects, their components can be changed in place. The settings are initialized at server start and after that changes on them arn't reflected. Therefore all settings should be tuples from my point of view. Using a custom list/tuple class for "easy" notation within the settings.py might be an option, but after server startup all of those should be immutable. So for the sake of logic, take tuples, please.
--
You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-developers.
I'm not talking about modifications inside the settings.py but in other place. With lists, unexperienced devs might do things like: from django.conf import settings; settings.TEMPLATE_DIRS[3] = '/my_tpls'; and expect to work out good.
This is realy just a question of logic: lists are mutable - settings are immutable; see the conflict?
Presumably more than just my personal taste: https://docs.python.org/2/faq/design.html#why-are-there-separate-tuple-and-list-data-types.
--
Loïc
I advertise that strongly against lists, because we actually had that kind of issue in our company.
One colleague created a list with phrases for some verbose logging in the settings.py. In the view function he promoted this list together with the actual data, also a list which is used for storing the data afterwards, to another function. The other function was implemented by another colleague, he was aware that he should not modify the second list for not corrupting the data to be safed. So he appended the data components to the first list zipped it to an dict and called the logging function. The result was that every log entry contained all data from previous calls and the server loked down very quick. It took them a day to debug this.
--
You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-developers.
--
You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-developers.
For more options, visit https://groups.google.com/d/optout.