You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The implementation of __getitem__ in BaseFeed class has some bug.
It's not returning the last value when [:] is used. And I had to use feed[:feed.count()] to get the entire list. This is very unlike how a python list works.
The text was updated successfully, but these errors were encountered:
The implementation of
__getitem__
inBaseFeed
class has some bug.It's not returning the last value when
[:]
is used. And I had to usefeed[:feed.count()]
to get the entire list. This is very unlike how apython
list works.The text was updated successfully, but these errors were encountered: