diff @pyobject/subsasgn.m @ 343:fe6b9e618c98

Add %!xtests for known failures due to bugs in Octave * @py/py.m, @pyobject/pyobject.m, @pyobject/subsasgn.m, @pyobject/subsref.m: Add %!xtests for known failures due to bugs in Octave.
author Mike Miller <mtmiller@octave.org>
date Tue, 16 Aug 2016 13:54:25 -0700
parents 15c20ab4b80a
children 087e7bc3697f
line wrap: on
line diff
--- a/@pyobject/subsasgn.m	Tue Aug 16 12:57:07 2016 -0700
+++ b/@pyobject/subsasgn.m	Tue Aug 16 13:54:25 2016 -0700
@@ -128,3 +128,8 @@
 %! assert (A{1, 3}, 30)
 %! assert (A{2, 1}, 40)
 %! assert (A{2, 2}, 5)
+
+## Test of string key assignment, fails in the general case
+%!xtest
+%! d = pyobject (struct ());
+%! d{"value"} = 1;