Kaydet (Commit) 86116e2b authored tarafından Skip Montanaro's avatar Skip Montanaro

document the class, not its initializer

üst 0e8bd7e1
......@@ -14,11 +14,11 @@ class Full(Exception):
pass
class Queue:
def __init__(self, maxsize=0):
"""Initialize a queue object with a given maximum size.
"""Create a queue object with a given maximum size.
If maxsize is <= 0, the queue size is infinite.
"""
If maxsize is <= 0, the queue size is infinite.
"""
def __init__(self, maxsize=0):
try:
import threading
except ImportError:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment