Todo: 集成多平台 解决因SaiNiu线程抢占资源问题 本地提交测试环境打包 和 正式打包脚本与正式环境打包bat 提交Python32环境包 改进多日志文件生成情况修改打包日志细节
This commit is contained in:
@@ -0,0 +1 @@
|
||||
{"this-str-has-apostrophes": {"type": "string", "value": "' there's one already\n'' two more\n''"}}
|
||||
@@ -0,0 +1,3 @@
|
||||
this-str-has-apostrophes='''' there's one already
|
||||
'' two more
|
||||
'''''
|
||||
@@ -0,0 +1,11 @@
|
||||
{"arr":
|
||||
{"type":"array","value":
|
||||
[
|
||||
{"subtab":
|
||||
{"val": {"type":"integer","value":"1"}
|
||||
}
|
||||
},
|
||||
{"subtab": {"val": {"type":"integer","value":"2"}}}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
[[arr]]
|
||||
[arr.subtab]
|
||||
val=1
|
||||
|
||||
[[arr]]
|
||||
[arr.subtab]
|
||||
val=2
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent-table": {
|
||||
"arr": {"type":"array","value":[{},{}]},
|
||||
"not-arr": {"type":"integer","value":"1"}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
[[parent-table.arr]]
|
||||
[[parent-table.arr]]
|
||||
[parent-table]
|
||||
not-arr = 1
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"a": {"type":"bool","value":"true"},
|
||||
"b": {"type":"bool","value":"false"}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
'a'=true
|
||||
"b"=false
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"local-dt": {"type":"datetime-local","value":"1988-10-27t01:01:01"},
|
||||
"zulu-dt": {"type":"datetime","value":"1988-10-27t01:01:01z"}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
local-dt=1988-10-27t01:01:01
|
||||
zulu-dt=1988-10-27t01:01:01z
|
||||
@@ -0,0 +1,2 @@
|
||||
{"t":
|
||||
{"type":"time-local","value":"00:00:00.999999"}}
|
||||
@@ -0,0 +1 @@
|
||||
t=00:00:00.99999999999999
|
||||
@@ -0,0 +1 @@
|
||||
{"empty": {}}
|
||||
@@ -0,0 +1 @@
|
||||
empty ={ }#nothing here
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"five-quotes": {"type":"string","value":"Closing with five quotes\n\"\""},
|
||||
"four-quotes": {"type":"string","value":"Closing with four quotes\n\""}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
five-quotes = """
|
||||
Closing with five quotes
|
||||
"""""
|
||||
four-quotes = """
|
||||
Closing with four quotes
|
||||
""""
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"a": {"type":"string","value":"a"},
|
||||
"b": {"type":"string","value":"b"},
|
||||
"c": {"type":"string","value":"c"}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
a="\u0061"
|
||||
b="\u0062"
|
||||
c="\U00000063"
|
||||
@@ -0,0 +1 @@
|
||||
{"beee": {"type": "string", "value": "heeee\ngeeee"}}
|
||||
@@ -0,0 +1,6 @@
|
||||
beee = """
|
||||
heeee
|
||||
geeee\
|
||||
|
||||
|
||||
"""
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -0,0 +1 @@
|
||||
#no newlines at all here
|
||||
@@ -0,0 +1,7 @@
|
||||
{"arr":
|
||||
{"type":"array","value":
|
||||
[
|
||||
{"type":"integer","value":"1"}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
arr=[1,]
|
||||
Reference in New Issue
Block a user