mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 14:42:20 +03:00
11 lines
280 B
Python
11 lines
280 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
|
|
|
from queue import Queue
|
|
|
|
|
|
class PluginQueue(Queue):
|
|
def __contains__(self, item):
|
|
with self.mutex:
|
|
return item in self.queue
|