選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

10 行
141 B

  1. import sys
  2. __all__ = ['tomllib']
  3. if sys.version_info >= (3, 11):
  4. import tomllib
  5. else: # pragma: no cover
  6. import tomli as tomllib