From ca39b88a755d444df583d065f9282ec59e48c7f6 Mon Sep 17 00:00:00 2001 From: Evgeny Shvarov Date: Sat, 31 Aug 2024 17:26:56 +0100 Subject: [PATCH] Update PersistentClass.cls to remove ByRef Removing ByRef in the Embedded Python method as it is not eligible syntax anymore --- src/dc/python/PersistentClass.cls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dc/python/PersistentClass.cls b/src/dc/python/PersistentClass.cls index f458619..9c184c4 100644 --- a/src/dc/python/PersistentClass.cls +++ b/src/dc/python/PersistentClass.cls @@ -14,7 +14,7 @@ ClassMethod CreateRecord(propValue As %VarString = "TestString", ByRef id As %In return sc } -ClassMethod CreateRecordPython(propValue As %VarString, ByRef id As %Integer) [ Language = python ] +ClassMethod CreateRecordPython(propValue As %VarString, id As %Integer) [ Language = python ] { import iris obj=iris.cls(__name__)._New()