Kaydet (Commit) dafb4951 authored tarafından Alex Gaynor's avatar Alex Gaynor

Make a comment more accurate.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16786 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst fcee0c1b
......@@ -1045,7 +1045,9 @@ def get_templatetags_modules():
global templatetags_modules
if not templatetags_modules:
_templatetags_modules = []
# Populate list once per thread.
# Populate list once per process. Mutate the local list first, and then
# assign it to the global name to ensure there are no cases where two
# threads try to populate it simultaneously.
for app_module in ['django'] + list(settings.INSTALLED_APPS):
try:
templatetag_module = '%s.templatetags' % app_module
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment