diff options
author | Jonathan de Jong <jonathan@automatia.nl> | 2021-02-26 19:30:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-26 18:30:54 +0000 |
commit | e12077a78afb8f0e7931a0930aebe5081023d5f9 (patch) | |
tree | f8b89e4e125cfdff4e92845408b65588a8690a21 /.gitignore | |
parent | Add support for no_proxy and case insensitive env variables (#9372) (diff) | |
download | synapse-e12077a78afb8f0e7931a0930aebe5081023d5f9.tar.xz |
Allow bytecode again (#9502)
In #75, bytecode was disabled (from a bit of FUD back in `python<2.4` days, according to dev chat), I think it's safe enough to enable it again. Added in `__pycache__/` and `.pyc`/`.pyd` to `.gitignore`, to extra-insure compiled files don't get committed. `Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>`
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 2cef1b0a5a..295a18b539 100644 --- a/.gitignore +++ b/.gitignore @@ -6,13 +6,14 @@ *.egg *.egg-info *.lock -*.pyc +*.py[cod] *.snap *.tac _trial_temp/ _trial_temp*/ /out .DS_Store +__pycache__/ # stuff that is likely to exist when you run a server locally /*.db |