]> git.llucax.com Git - software/pymin.git/commitdiff
Add __all__ to pymin.item.
authorLeandro Lucarella <llucax@gmail.com>
Wed, 2 Jan 2008 02:31:38 +0000 (00:31 -0200)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 2 Jan 2008 02:31:38 +0000 (00:31 -0200)
pymin/item.py

index 3ed2461deace89029167d11164b86922ca760de9..61c9f7fbb28d8274c1e481e72a7e25f5f079ee1e 100644 (file)
@@ -2,6 +2,8 @@
 
 r"Simple module that provides a validated and sequenced Item."
 
+__all__ = ('Item',)
+
 from pymin.seqtools import Sequence
 from pymin.validatedclass import ValidatedClass