Files
@ bfd7fc9a814e
Branch filter:
Location: kallithea/kallithea/tests/functional/test_followers.py
bfd7fc9a814e
812 B
text/x-python
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.