From: Leandro Lucarella Date: Fri, 28 Sep 2007 16:55:51 +0000 (-0300) Subject: Bugfix: handle empty lists on as_table(). X-Git-Url: https://git.llucax.com/software/pymin.git/commitdiff_plain/92f311f91952623a83b6cb5c31f6e3c7c052df16?ds=inline;hp=-c Bugfix: handle empty lists on as_table(). --- 92f311f91952623a83b6cb5c31f6e3c7c052df16 diff --git a/seqtools.py b/seqtools.py index 13e6eac..d3de929 100644 --- a/seqtools.py +++ b/seqtools.py @@ -92,6 +92,8 @@ def as_table(obj): if hasattr(i, '__iter__'): return obj return (obj,) + else: + return ((),) # empty table if __name__ == '__main__': @@ -128,3 +130,5 @@ if __name__ == '__main__': print f(dict(a=1, b=2)) + print f([]) +