2 # -*- coding: ISO-8859-1 -*-
5 # Copyright (C) 2002-2004 Jörg Lehmann <joergl@users.sourceforge.net>
6 # Copyright (C) 2002-2004 André Wobst <wobsta@users.sourceforge.net>
8 # This file is part of PyX (http://pyx.sourceforge.net/).
10 # PyX is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or
13 # (at your option) any later version.
15 # PyX is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with PyX; if not, write to the Free Software
22 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
29 "arg is string-like (cf. python cookbook 3.2)"
45 if type(arg
+ 0.0) is type(arg
):
52 """arg is sequence-like (e.g. has a len)
53 a string is *not* considered to be a sequence"""
54 if isstring(arg
): return 0
60 def ensuresequence(arg
):
61 """return arg or (arg,) depending on the result of issequence,
62 None is converted to ()"""
63 if isstring(arg
): return (arg
,)
64 if arg
is None: return ()
65 if issequence(arg
): return arg
70 """return list(arg) or [arg] depending on the result of isequence,
71 None is converted to []"""
72 if isstring(arg
): return [arg
]
73 if arg
is None: return []
74 if issequence(arg
): return list(arg
)
77 def getitemno(arg
, n
):
78 """get item number n if arg is a sequence (when the sequence
79 is not long enough, None is returned), otherweise arg is
88 def issequenceofsequences(arg
):
89 """check if arg has a sequence or None as it's first entry"""
90 return issequence(arg
) and len(arg
) and (issequence(arg
[0]) or arg
[0] is None)
93 def getsequenceno(arg
, n
):
94 """get sequence number n if arg is a sequence of sequences (when
95 the sequence is not long enough, None is returned), otherwise
97 if issequenceofsequences(arg
):