Shared Memory Dictionary utilizing Posix IPC semaphores and shared memory segments and offering permanent disk storage of data if required.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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