Files
@ bfd7fc9a814e
Branch filter:
Location: kallithea/docs/usage/customization.rst
bfd7fc9a814e
1.7 KiB
text/prs.fallenstein.rst
py3: replace list comprehension with for-loop due to scope
The scope of the list comprehension variable 'x' will be limited to the list
comprehension in python3. Thus switching to a full loop (without this
scope restriction) in preparation for python3.
The scope of the list comprehension variable 'x' will be limited to the list
comprehension in python3. Thus switching to a full loop (without this
scope restriction) in preparation for python3.