.editorconfig
author Manuel Jacob <me@manueljacob.de>
Wed, 02 Sep 2020 01:30:56 +0200
branchstable
changeset 45211 fc8299319ffe
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
tests: fix test-demandimport.py on Python 3.9 Starting with Python 3.9, importing importlib.resources (indirectly) imports the zipfile module. Therefore, the module is not suitable for the test. Instead, we can use the ftplib module, which is very unlikely to be imported during the test run.

# 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