Change %extend example which said that char arrays were problematic to wrap, when in fact they are not

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11764 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2009-12-02 22:16:48 +00:00
commit 09a801dd9e
4 changed files with 53 additions and 28 deletions

View file

@ -1,6 +1,6 @@
import memberin_extend_c
t = memberin_extend_c.Person()
t.name = "some name"
if t.name != "some name":
raise RuntimeError("some name wrong")
t.name = "Fred Bloggs"
if t.name != "FRED BLOGGS":
raise RuntimeError("name wrong")