File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 45
45
key_index = int64(0 );
46
46
for key = cell(py .list(x_py .keys()))
47
47
key_index = key_index + 1 ;
48
- v_name = string(key );
48
+ if class(key ) == ' cell'
49
+ % key could be a Python number
50
+ v_name = string(py .str(key{1 }));
51
+ else
52
+ v_name = string(key );
53
+ end
49
54
if isvarname(v_name )
50
55
x_mat.(v_name ) = x_py .get(v_name );
51
56
else
52
57
% this key can't be used; replace it
53
58
fixed = sprintf(' K%06d _' , key_index ) + ...
54
- regexprep(string( key ) ,' \W' ,' _' );
59
+ regexprep(v_name ,' \W' ,' _' );
55
60
x_mat.(fixed ) = x_py .get(v_name );
56
61
end
57
62
end
170
175
case ' logical'
171
176
x_mat = logical(x_py );
172
177
178
+ case ' py.bytes'
179
+ x_mat = uint8(x_py );
180
+
181
+ case ' py.NoneType'
182
+ x_mat = ' ' ;
183
+
173
184
% punt
174
185
otherwise
175
186
% return the original item? nothing?
You can’t perform that action at this time.
0 commit comments