Shared Memory Dictionary utilizing Posix IPC semaphores and shared memory segments and offering permanent disk storage of data if required.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

27 行
562B

  1. # NOTE: you have to use single-quoted strings in TOML for regular expressions.
  2. # It's the equivalent of r-strings in Python. Multiline strings are treated as
  3. # verbose regular expressions by Black. Use [ ] to denote a significant space
  4. # character.
  5. [tool.black]
  6. line-length = 88
  7. skip-numeric-underscore-normalization = true # We can remove this when Python2 goes away
  8. include = '\.pyi?$'
  9. exclude = '''
  10. /(
  11. \.eggs
  12. | \.git
  13. | \.hg
  14. | \.mypy_cache
  15. | \.tox
  16. | \.venv
  17. | _build
  18. | buck-out
  19. | build
  20. | dist
  21. | tests/fixtures
  22. | docs/source
  23. )/
  24. '''