noncvs.py
来自「最新的版本ACE-5.6.8,刚从外文网上搬下,与大家分享.」· Python 代码 · 共 13 行
PY
13 行
""" Catches most files disallowed in CVS """
type_list = ["icc", "ncb", "opt", "zip", "dsw",
"vcproj", "dsw", "bor", "vcp", "pdb",
"o", "ilk", "pyc", "so", "dll", "lib" ]
from sys import stderr
def handler (file_name, file_content):
stderr.write (file_name + ":0: error: This file should not be checked into the repository\n")
return 1
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?