https://bugs.kde.org/show_bug.cgi?id=377771
Bug ID: 377771 Summary: Wrong reppresentation of arrays in the variable manager Product: cantor Version: unspecified Platform: Other OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: julia-backend Assignee: ivan.lakhta...@gmail.com Reporter: alexander.se...@web.de CC: fil...@kde.org Target Milestone: --- * create an array with string values s=["a1","a2"] -> in the variable manager the array is shown as ASIIString["a1","a2"] and not as ["a1","a2"] * create an empty array b = Int64[], in the variable manager the array is shown as Int64[] and not as [] (similar for String[] and any other types). * create an array with string and integer values anyrray=[1,2,"abc"] -> in the variable the array is shown as Any[1,2,"abc"] and not as [1,2,"abc] Looks like the parser for Julia's output need to be extended and improved. -- You are receiving this mail because: You are watching all bug changes.