diff options
Diffstat (limited to 'factory/declarations.py')
-rw-r--r-- | factory/declarations.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/factory/declarations.py b/factory/declarations.py index d827f30..b930b4d 100644 --- a/factory/declarations.py +++ b/factory/declarations.py @@ -23,7 +23,10 @@ import threading global_counter_lock = threading.Lock() class GlobalCounter(object): - """A simple global counter.""" + """A simple global counter. + + It is used to order the various OrderedDeclaration together. + """ _value = 0 |