1. 12 4月, 2024 1 次提交
  2. 15 1月, 2024 1 次提交
  3. 12 1月, 2024 1 次提交
  4. 11 1月, 2024 1 次提交
  5. 10 1月, 2024 1 次提交
  6. 13 12月, 2023 4 次提交
  7. 12 12月, 2023 4 次提交
  8. 11 12月, 2023 4 次提交
  9. 10 12月, 2023 4 次提交
  10. 09 12月, 2023 5 次提交
  11. 04 12月, 2023 12 次提交
  12. 03 12月, 2023 1 次提交
    • Eli Schwartz's avatar
      use the standard library tomllib on sufficiently new python · 0c206472
      Eli Schwartz 创作于
      In python 3.11 it is no longer necessary to vendor (?) a toml
      implementation. The vendored one is now part of the standard library.
      Simply use that instead.
      
      Benefits include:
      - micro-optimization when using the isort library API in an application
        that already uses tomllib, to avoid reading yet another one from
        on-disk
      - seamless support for automatically dropping tomli once the minimum
        python version is upgraded, via tools such as pyupgrade
      - distributors who patch out isort to use the system tomli, do not
        actually have to package tomli for versions of python that have
        tomllib
      0c206472
  13. 18 11月, 2023 1 次提交