FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
lpython/tests/parser/lambda2.py at main · ss-sathya/lpython · GitHub
ss-sathya
/
lpython
Public
forked from
lcompilers/lpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
lpython
/
tests
/
parser
/
lambda2.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
72 lines (37 loc) · 1.14 KB
Breadcrumbs
lpython
/
tests
/
parser
/
lambda2.py
Copy path
File metadata and controls
72 lines (37 loc) · 1.14 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# AST tests only
verify_matching_signatures
(
lambda
x
=
0
:
0
,
lambda
x
=
0
:
0
)
input_func
=
lambda
prompt
=
""
:
next
(
gen
)
cast
[
key
]
=
lambda
x
,
k
=
key
:
array
(
x
,
copy
=
False
).
astype
(
k
)
x
=
lambda
func
=
self
.
_try_call
,
attr
=
attr
:
func
(
attr
)
fpos32
=
lambda
x
,
**
k
:
np
.
format_float_positional
(
np
.
float32
(
x
),
**
k
)
m
=
lambda
self
,
*
args
,
**
kw
:
func
(
self
,
*
args
,
**
kw
)
stack
.
push
(
lambda
*
exc
: {}[
1
])
lambda
*
x
,
y
,
z
:
test
lambda
*
x
,
y
,
z
,
**
args
:
test
lambda
*
x
,
**
args
:
test
lambda
**
args
:
test
lambda
x
,
y
:
test
lambda
x
,
*
y
:
test
lambda
x
,
*
y
,
z
:
test
lambda
x
,
*
y
,
z
,
**
args
:
test
lambda
x
,
*
y
,
**
args
:
test
lambda
x
,
**
args
:
test
lambda
x
,
*
y
,
z
,
**
args
:
test
lambda
a
,
/
,
b
,
c
:
test
lambda
a
,
/
,
*
b
:
test
lambda
a
,
/
,
*
b
,
c
,
d
:
test
lambda
a
,
/
,
*
b
,
c
,
**
d
:
test
lambda
a
,
/
,
**
b
:
test
lambda
a
,
/
,
*
b
,
**
c
:
test
lambda
a
,
/
,
b
,
c
,
*
d
:
test
lambda
a
,
/
,
b
,
c
,
**
d
:
test
lambda
a
,
/
,
b
,
c
,
*
d
,
**
e
:
test
lambda
a
,
/
,
b
,
c
,
*
d
,
e
,
**
f
:
test
lambda
*
,
a
:
test
lambda
*
,
a
,
**
b
:
test
lambda
a
,
*
,
b
:
test
lambda
a
,
*
,
b
,
**
c
:
test
lambda
a
,
/
,
*
,
b
:
test
lambda
a
,
/
,
b
,
*
,
c
:
test
lambda
a
,
/
,
*
,
c
,
**
d
:
test
lambda
a
,
/
,
b
,
*
,
c
,
**
d
:
test
Back
|
FazBrowse Home
|
New Git URL