tao.mo

更新.gitignore以忽略Python缓存文件

...@@ -2,4 +2,33 @@ ...@@ -2,4 +2,33 @@
2 .idea 2 .idea
3 *.iws 3 *.iws
4 *.iml 4 *.iml
5 -*.ipr
...\ No newline at end of file ...\ No newline at end of file
5 +*.ipr
6 +
7 +### Python ###
8 +__pycache__/
9 +*.py[cod]
10 +*$py.class
11 +*.so
12 +.Python
13 +build/
14 +develop-eggs/
15 +dist/
16 +downloads/
17 +eggs/
18 +.eggs/
19 +lib/
20 +lib64/
21 +parts/
22 +sdist/
23 +var/
24 +wheels/
25 +*.egg-info/
26 +.installed.cfg
27 +*.egg
28 +.env
29 +.venv
30 +env/
31 +venv/
32 +ENV/
33 +env.bak/
34 +venv.bak/
...\ No newline at end of file ...\ No newline at end of file
......