short_k = _PYMVPA_SEP.join(k_split[2:])
expected_length = infix2length.get(infix, None)
if expected_length:
while type(v) is str:
// strings are seperated by ""
// XXX what if this is part of the value
// intended by the user?
v = v.split("")
After Change
short_k = _PYMVPA_SEP.join(k_split[2:])
expected_length = infix2length.get(infix, None)
if expected_length:
if isinstance(v, np.ndarray) and np.dtype == np.str_:
v = str(v)
while isinstance(v, basestring):
// strings are seperated by ""
// XXX what if this is part of the value
// intended by the user?