tomli icon indicating copy to clipboard operation
tomli copied to clipboard

A lil' TOML parser

Results 9 tomli issues
Sort by recently updated
recently updated
newest added

updates: - [github.com/Lucas-C/pre-commit-hooks: ca52c4245639abd55c970e6bbbca95cab3de22d8 → 04618e68aa2380828a36a23ff5f65a06ae8f59b9](https://github.com/Lucas-C/pre-commit-hooks/compare/ca52c4245639abd55c970e6bbbca95cab3de22d8...04618e68aa2380828a36a23ff5f65a06ae8f59b9) - [github.com/executablebooks/mdformat: b8c05ae822d53326e967da45367d0408afc56a81 → 82f84976fc57d5ae61cbf2d457a26a89d4b4eef4](https://github.com/executablebooks/mdformat/compare/b8c05ae822d53326e967da45367d0408afc56a81...82f84976fc57d5ae61cbf2d457a26a89d4b4eef4) - [github.com/asottile/yesqa: 35cf7dc24fa922927caded7a21b2a8cb04bf8e10 → 265e9ff7c83add4949f81bb5fe14f4a743ffb04c](https://github.com/asottile/yesqa/compare/35cf7dc24fa922927caded7a21b2a8cb04bf8e10...265e9ff7c83add4949f81bb5fe14f4a743ffb04c) - [github.com/psf/black: ae2c0758c9e61a385df9700dc9c231bf54887041 → 27d20144a7517594e24a1649451177b2a11284be](https://github.com/psf/black/compare/ae2c0758c9e61a385df9700dc9c231bf54887041...27d20144a7517594e24a1649451177b2a11284be) - https://github.com/myint/docformatter → https://github.com/PyCQA/docformatter - [github.com/PyCQA/docformatter: 67919ee01837761f2d954d7fbb08c12cdd38ec5a → 8b8dae1d990e2e4fec7ff6704a79c23a403cd605](https://github.com/PyCQA/docformatter/compare/67919ee01837761f2d954d7fbb08c12cdd38ec5a...8b8dae1d990e2e4fec7ff6704a79c23a403cd605)...

Update tests and merge when https://github.com/toml-lang/toml/pull/894 makes it into a TOML release.

Update tests and merge when https://github.com/toml-lang/toml/pull/796 makes it into a TOML release.

Merge when https://github.com/toml-lang/toml/pull/790 finds its way into a TOML release.

Update tests and merge when https://github.com/toml-lang/toml/pull/904 makes it into a TOML release.

I noticed that there are couple of TOML test files without JSON counterparts (https://github.com/hukkin/tomli/blob/master/tests/data/toml-lang-compliance/valid/qa/qa-array-inline-nested-1000.toml, https://github.com/hukkin/tomli/blob/master/tests/data/toml-lang-compliance/valid/qa/qa-table-inline-nested-1000.toml) that couldn't be loaded with the current version due to deep recursion. Maybe they're not...

updates: - [github.com/Lucas-C/pre-commit-hooks: 12885e376b93dc4536ad68d156065601e4433665 → a30f0d816e5062a67d87c8de753cfe499672b959](https://github.com/Lucas-C/pre-commit-hooks/compare/12885e376b93dc4536ad68d156065601e4433665...a30f0d816e5062a67d87c8de753cfe499672b959) - [github.com/executablebooks/mdformat: 82f84976fc57d5ae61cbf2d457a26a89d4b4eef4 → 08fba30538869a440b5059de90af03e3502e35fb](https://github.com/executablebooks/mdformat/compare/82f84976fc57d5ae61cbf2d457a26a89d4b4eef4...08fba30538869a440b5059de90af03e3502e35fb) - [github.com/asottile/yesqa: 265e9ff7c83add4949f81bb5fe14f4a743ffb04c → f2ae90cf9e1661ade79d0881186ce4fd7ba6ee79](https://github.com/asottile/yesqa/compare/265e9ff7c83add4949f81bb5fe14f4a743ffb04c...f2ae90cf9e1661ade79d0881186ce4fd7ba6ee79) - [github.com/PyCQA/isort: dbf82f2dd09ae41d9355bcd7ab69187a19e6bf2f → c235f5e450b4b84e58d114ed4c589cbf454175a3](https://github.com/PyCQA/isort/compare/dbf82f2dd09ae41d9355bcd7ab69187a19e6bf2f...c235f5e450b4b84e58d114ed4c589cbf454175a3) - [github.com/psf/black: bf7a16254ec96b084a6caf3d435ec18f0f245cc7 → 3702ba224ecffbcec30af640c149f231d90aebdb](https://github.com/psf/black/compare/bf7a16254ec96b084a6caf3d435ec18f0f245cc7...3702ba224ecffbcec30af640c149f231d90aebdb) - https://github.com/myint/docformatter → https://github.com/PyCQA/docformatter...

I ran across an incorrect error message while using `tomli.loads`. See the snippet below ``` import tomli >>> tomli_str = b'test="a"' >>> tomli.loads(tomli_str) Traceback (most recent call last): File "",...

This updates the test files from upstream; all additional tests are now also integrated upstream, so I removed them here. The only exception is the one that subseconds are truncated...