Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/apostrophes-in-literal-string.json
vendored
Normal file
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/apostrophes-in-literal-string.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"this-str-has-apostrophes": {"type": "string", "value": "' there's one already\n'' two more\n''"}}
|
3
Dependencies/Python/Lib/test/test_tomllib/data/valid/apostrophes-in-literal-string.toml
vendored
Normal file
3
Dependencies/Python/Lib/test/test_tomllib/data/valid/apostrophes-in-literal-string.toml
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
this-str-has-apostrophes='''' there's one already
|
||||
'' two more
|
||||
'''''
|
11
Dependencies/Python/Lib/test/test_tomllib/data/valid/array/array-subtables.json
vendored
Normal file
11
Dependencies/Python/Lib/test/test_tomllib/data/valid/array/array-subtables.json
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
{"arr":
|
||||
{"type":"array","value":
|
||||
[
|
||||
{"subtab":
|
||||
{"val": {"type":"integer","value":"1"}
|
||||
}
|
||||
},
|
||||
{"subtab": {"val": {"type":"integer","value":"2"}}}
|
||||
]
|
||||
}
|
||||
}
|
7
Dependencies/Python/Lib/test/test_tomllib/data/valid/array/array-subtables.toml
vendored
Normal file
7
Dependencies/Python/Lib/test/test_tomllib/data/valid/array/array-subtables.toml
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
[[arr]]
|
||||
[arr.subtab]
|
||||
val=1
|
||||
|
||||
[[arr]]
|
||||
[arr.subtab]
|
||||
val=2
|
6
Dependencies/Python/Lib/test/test_tomllib/data/valid/array/open-parent-table.json
vendored
Normal file
6
Dependencies/Python/Lib/test/test_tomllib/data/valid/array/open-parent-table.json
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent-table": {
|
||||
"arr": {"type":"array","value":[{},{}]},
|
||||
"not-arr": {"type":"integer","value":"1"}
|
||||
}
|
||||
}
|
4
Dependencies/Python/Lib/test/test_tomllib/data/valid/array/open-parent-table.toml
vendored
Normal file
4
Dependencies/Python/Lib/test/test_tomllib/data/valid/array/open-parent-table.toml
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
[[parent-table.arr]]
|
||||
[[parent-table.arr]]
|
||||
[parent-table]
|
||||
not-arr = 1
|
4
Dependencies/Python/Lib/test/test_tomllib/data/valid/boolean.json
vendored
Normal file
4
Dependencies/Python/Lib/test/test_tomllib/data/valid/boolean.json
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"a": {"type":"bool","value":"true"},
|
||||
"b": {"type":"bool","value":"false"}
|
||||
}
|
2
Dependencies/Python/Lib/test/test_tomllib/data/valid/boolean.toml
vendored
Normal file
2
Dependencies/Python/Lib/test/test_tomllib/data/valid/boolean.toml
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
'a'=true
|
||||
"b"=false
|
4
Dependencies/Python/Lib/test/test_tomllib/data/valid/dates-and-times/datetimes.json
vendored
Normal file
4
Dependencies/Python/Lib/test/test_tomllib/data/valid/dates-and-times/datetimes.json
vendored
Normal file
@ -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"}
|
||||
}
|
2
Dependencies/Python/Lib/test/test_tomllib/data/valid/dates-and-times/datetimes.toml
vendored
Normal file
2
Dependencies/Python/Lib/test/test_tomllib/data/valid/dates-and-times/datetimes.toml
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
local-dt=1988-10-27t01:01:01
|
||||
zulu-dt=1988-10-27t01:01:01z
|
2
Dependencies/Python/Lib/test/test_tomllib/data/valid/dates-and-times/localtime.json
vendored
Normal file
2
Dependencies/Python/Lib/test/test_tomllib/data/valid/dates-and-times/localtime.json
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
{"t":
|
||||
{"type":"time-local","value":"00:00:00.999999"}}
|
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/dates-and-times/localtime.toml
vendored
Normal file
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/dates-and-times/localtime.toml
vendored
Normal file
@ -0,0 +1 @@
|
||||
t=00:00:00.99999999999999
|
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/empty-inline-table.json
vendored
Normal file
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/empty-inline-table.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"empty": {}}
|
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/empty-inline-table.toml
vendored
Normal file
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/empty-inline-table.toml
vendored
Normal file
@ -0,0 +1 @@
|
||||
empty ={ }#nothing here
|
4
Dependencies/Python/Lib/test/test_tomllib/data/valid/five-quotes.json
vendored
Normal file
4
Dependencies/Python/Lib/test/test_tomllib/data/valid/five-quotes.json
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"five-quotes": {"type":"string","value":"Closing with five quotes\n\"\""},
|
||||
"four-quotes": {"type":"string","value":"Closing with four quotes\n\""}
|
||||
}
|
6
Dependencies/Python/Lib/test/test_tomllib/data/valid/five-quotes.toml
vendored
Normal file
6
Dependencies/Python/Lib/test/test_tomllib/data/valid/five-quotes.toml
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
five-quotes = """
|
||||
Closing with five quotes
|
||||
"""""
|
||||
four-quotes = """
|
||||
Closing with four quotes
|
||||
""""
|
5
Dependencies/Python/Lib/test/test_tomllib/data/valid/hex-char.json
vendored
Normal file
5
Dependencies/Python/Lib/test/test_tomllib/data/valid/hex-char.json
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"a": {"type":"string","value":"a"},
|
||||
"b": {"type":"string","value":"b"},
|
||||
"c": {"type":"string","value":"c"}
|
||||
}
|
3
Dependencies/Python/Lib/test/test_tomllib/data/valid/hex-char.toml
vendored
Normal file
3
Dependencies/Python/Lib/test/test_tomllib/data/valid/hex-char.toml
vendored
Normal file
@ -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\
|
||||
|
||||
|
||||
"""
|
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/no-newlines.json
vendored
Normal file
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/no-newlines.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{}
|
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/no-newlines.toml
vendored
Normal file
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/no-newlines.toml
vendored
Normal file
@ -0,0 +1 @@
|
||||
#no newlines at all here
|
7
Dependencies/Python/Lib/test/test_tomllib/data/valid/trailing-comma.json
vendored
Normal file
7
Dependencies/Python/Lib/test/test_tomllib/data/valid/trailing-comma.json
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
{"arr":
|
||||
{"type":"array","value":
|
||||
[
|
||||
{"type":"integer","value":"1"}
|
||||
]
|
||||
}
|
||||
}
|
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/trailing-comma.toml
vendored
Normal file
1
Dependencies/Python/Lib/test/test_tomllib/data/valid/trailing-comma.toml
vendored
Normal file
@ -0,0 +1 @@
|
||||
arr=[1,]
|
Reference in New Issue
Block a user