You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Source/VarPyth.pas
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@ function MainModule: Variant; // return the main module that's used for executin
107
107
functionBuiltinModule: Variant; // return the builtin module
108
108
functionSysModule: Variant; // return the builtin module 'sys'
109
109
functionDatetimeModule: Variant; // return the builtin module 'datetime'
110
-
functionImport(const AModule : AnsiString ): Variant; // import a Python module and return the module object.
110
+
functionImport(const AModule: string): Variant; // import a Python module and return the module object.
111
111
functionlen(const AValue : Variant ): NativeInt; // return the length of a Python collection.
112
112
function_type(const AValue : Variant ): Variant; // return the type object of a Python object.
113
113
functioniter(const AValue : Variant ): Variant; // return an iterator for the container AValue. You can call the 'next' method of the iterator until you catch the EPyStopIteration exception.
@@ -704,7 +704,7 @@ function DatetimeModule : Variant; // return the builtin module 'datetime'
0 commit comments