jellyfin-kodi/jellyfin_kodi/objects/kodi
Chuddah 85d4e660ef Dont modify a list as you are traversing it. The result is
implementation dependant although with CPython elements are
unintentionally skipped during iteration.

Basic CPython example:

>>> A = [1,2,3,4,5,6]
>>> for a in A:
...     A.remove(a)
>>> A
[2, 4, 6]
2020-02-16 18:41:14 +00:00
..
__init__.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
artwork.py Dont modify a list as you are traversing it. The result is 2020-02-16 18:41:14 +00:00
kodi.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
movies.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
music.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
musicvideos.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
queries.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
queries_music.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
queries_texture.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
tvshows.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00