Shared Memory Dictionary utilizing Posix IPC semaphores and shared memory segments and offering permanent disk storage of data if required.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

27 lines
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. '''