.editorconfig
author Yuya Nishihara <yuya@tcha.org>
Sun, 15 Sep 2019 16:50:48 +0900
changeset 43178 1b2200bd06b6
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
rust-cpython: add safe wrapper representing shared data borrowed from PyObject PySharedRef is a tempoary wrapper around PySharedRefCell. It provides safe functions for each shared data. $shared_accessor implements a safe method to construct PySharedRefCell. This allows us to add more than once PySharedRefCell to a Python object.

# See http://EditorConfig.org for the specification

root = true

[*.py]
indent_size = 4
indent_style = space
trim_trailing_whitespace = true

[*.{c,h}]
indent_size = 8
indent_style = tab
trim_trailing_whitespace = true

[*.t]
indent_size = 2
indent_style = space
trim_trailing_whitespace = false