File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 23
23
blockCommentEnd : `"""` ,
24
24
},
25
25
}
26
+ pandasGen = baseLang {
27
+ name : "Pandas" ,
28
+ slug : "pythondata" ,
29
+ shortName : "py" ,
30
+ extension : ".py" ,
31
+ lineComment : "#" ,
32
+ blockCommentStart : `"""` ,
33
+ blockCommentEnd : `"""` ,
34
+ }
26
35
cppGen = cpp {
27
36
baseLang {
28
37
name : "C++" ,
@@ -212,6 +221,7 @@ var (
212
221
SupportedLangs = []Lang {
213
222
golangGen ,
214
223
python3Gen ,
224
+ pandasGen ,
215
225
cppGen ,
216
226
rustGen ,
217
227
javaGen ,
Original file line number Diff line number Diff line change @@ -58,6 +58,9 @@ func updateSupportMatrix(readme []byte) []byte {
58
58
w := table .NewWriter ()
59
59
w .AppendHeader (table.Row {"" , "Generation" , "Local testing" })
60
60
for _ , l := range lang .SupportedLangs {
61
+ if l .Name () == "Pandas" {
62
+ continue
63
+ }
61
64
localTest := ":white_check_mark:"
62
65
if _ , ok := l .(lang.LocalTestable ); ! ok {
63
66
localTest = "Not yet"
You can’t perform that action at this time.
0 commit comments