short_k = _PYMVPA_SEP.join(k_split[2:])
expected_length = infix2length.get(infix, None)
if expected_length:
whiletype(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:
ifisinstance(v, np.ndarray) and np.dtype == np.str_:
v = str(v)
whileisinstance(v, basestring):
// strings are seperated by ""// XXX what if this is part of the value // intended by the user?