Search
Write a publication
Pull to refresh
0
0
Send message
Опасная конструкция:
def get_list(self):
return self.queue
Отдаете ссылку на приватный атрибут, т.е. можно изменять очередь вне класса
лучше так сделать:
return list(self.queue)

Information

Rating
Does not participate
Registered
Activity