blob: 33396f036a72827c136591c23afcbb0c0a6b203f (
plain) (
blame)
1
2
3
4
5
6
7
|
--sanitizer ignore memory
$optOptList = Python3::opt_opt_list(Callable<(String)->List<String>??>, @@
def opt_opt_list(in_str):
return [in_str] if len(in_str) % 2 == 0 else None
@@);
SELECT $optOptList("42");
|