Accept uppercase E exponent after a leading-zero mantissa (#586)

A float like `0E2` is valid TOML, since both `e` and `E` are allowed
exponent markers. The "no leading zeros" guard exempted the mantissa only
for lowercase `0e`, so `0E2` (and `0E+2`, `+0E2`, etc.) were rejected as an
invalid number while `0e2` parsed fine. Add `0E` to the exempted prefixes.

GitOrigin-RevId: 7ab7469addd60e03ca3bfbb1287642e8d771e1c0
Change-Id: I8d3e28713fa3e436fe26e7015ab0f7eb74e9d40b
1 file changed
tree: 3dffd8826c41d598538fe5c3d47ee5ec753731f4
  1. .github/
  2. docs/
  3. tomlkit/
  4. .coveragerc
  5. .gitignore
  6. .gitmodules
  7. .pre-commit-config.yaml
  8. .readthedocs.yaml
  9. CHANGELOG.md
  10. LICENSE
  11. poetry.lock
  12. pyproject.toml
  13. README.md
  14. tox.ini
README.md

GitHub Release PyPI Version Python Versions License
Tests

TOML Kit - Style-preserving TOML library for Python

TOML Kit is a 1.1.0-compliant TOML library.

It includes a parser that preserves all comments, indentations, whitespace and internal element ordering, and makes them accessible and editable via an intuitive API.

You can also create new TOML documents from scratch using the provided helpers.

Part of the implementation has been adapted, improved and fixed from Molten.

Usage

See the documentation for more information.

Limitations

tomlkit preserves the original layout of a document, with one exception: a sub-table that extends an array of tables out of order — for example a [fruit.apple.texture] header that appears after [[fruit]] with an unrelated table in between — is normalized into the array's last element when the document is re-serialized, rather than kept at its original position. The data is preserved; only the physical placement of that sub-table changes.

Installation

If you are using uv, you can add tomlkit to your pyproject.toml file by using:

uv add tomlkit

Or just:

uv pip install tomlkit

If not, you can use pip:

pip install tomlkit

Running tests

Please clone the repo with submodules with the following command:

git clone --recurse-submodules https://github.com/python-poetry/tomlkit.git

The toml-test submodule is required for running the tests.

You can then run the tests with

poetry run pytest -q tests