diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:27:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:27:32 +0000 |
commit | 88857376d837c86ee4cbbe6ff3c9a22ab2113ffe (patch) | |
tree | efe8d5d117c400fef855ba85e3c181cd0d4bd501 /tests/data/extras/valid/burntsushi-repo/comment-tricky.toml | |
parent | Initial commit. (diff) | |
download | python-tomli-w-upstream/1.0.0.tar.xz python-tomli-w-upstream/1.0.0.zip |
Adding upstream version 1.0.0.upstream/1.0.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/data/extras/valid/burntsushi-repo/comment-tricky.toml')
-rw-r--r-- | tests/data/extras/valid/burntsushi-repo/comment-tricky.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/data/extras/valid/burntsushi-repo/comment-tricky.toml b/tests/data/extras/valid/burntsushi-repo/comment-tricky.toml new file mode 100644 index 0000000..c95f94d --- /dev/null +++ b/tests/data/extras/valid/burntsushi-repo/comment-tricky.toml @@ -0,0 +1,31 @@ +[section]#attached comment +#[notsection] +one = "11"#cmt +two = "22#" +three = '#' + +four = """# no comment +# nor this +#also not comment"""#is_comment + +five = 5.5#66 +six = 6#7 +8 = "eight" +#nine = 99 +ten = 10e2#1 +eleven = 1.11e1#23 + +["hash#tag"] +"#!" = "hash bang" +arr3 = [ "#", '#', """###""" ] +arr4 = [ 1,# 9, 9, +2#,9 +,#9 +3#] +,4] +arr5 = [[[[#["#"], +["#"]]]]#] +] +tbl1 = { "#" = '}#'}#}} + + |