X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0c77c58722acc7b594bfb3e12aa4b78a51109b27..b53cb9474348e13533ccba3735191a55ef3da6c4:/README.md diff --git a/README.md b/README.md index 96a24a1..e9937f1 100644 --- a/README.md +++ b/README.md @@ -371,6 +371,12 @@ human-readable strings"](https://stackoverflow.com/a/56190)), you can pass `--skip-string-normalization` on the command line. This is meant as an adoption helper, avoid using this for new projects. +### Numeric literals + +*Black* standardizes all numeric literals to use lowercase letters: `0xab` +instead of `0XAB` and `1e10` instead of `1E10`. In Python 3.6+, *Black* +adds underscores to long numeric literals to aid readability: `100000000` +becomes `100_000_000`. ### Line breaks & binary operators @@ -843,6 +849,10 @@ More details can be found in [CONTRIBUTING](CONTRIBUTING.md). ### 18.8b0 +* adjacent string literals are now correctly split into multiple lines (#463) + +* code with `_` in numeric literals is recognized as Python 3.6+ (#461) + * numeric literals are now normalized to include `_` separators on Python 3.6+ code (#452)