Shared Memory Dictionary utilizing Posix IPC semaphores and shared memory segments and offering permanent disk storage of data if required.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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