Fix comments

This commit is contained in:
taizan-hokouto
2020-10-24 16:10:04 +09:00
parent e950dff9d2
commit 16df63c14e
4 changed files with 88 additions and 86 deletions

View File

@@ -4,13 +4,13 @@ import queue
class Buffer(queue.Queue):
'''
チャットデータを格納するバッファの役割を持つFIFOキュー
Buffer for storing chat data.
Parameter
---------
max_size : int
格納するチャットブロックの最大個数。0の場合は無限。
最大値を超える場合は古いチャットブロックから破棄される。
maxsize : int
Maximum number of chat blocks to be stored.
If it exceeds the maximum, the oldest chat block will be discarded.
'''
def __init__(self, maxsize=0):