소스 검색

refuse to run with python < 2.5.0

Matthew Wang 11 년 전
부모
커밋
c8734e4e35
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5
    0
      src/cdiff.py

+ 5
- 0
src/cdiff.py 파일 보기

@@ -9,6 +9,11 @@ See demo at homepage: https://github.com/ymattw/cdiff
9 9
 """
10 10
 
11 11
 import sys
12
+
13
+if sys.hexversion < 0x02050000:
14
+    sys.stderr.write("ERROR: requires python >= 2.5.0\n")
15
+    sys.exit(1)
16
+
12 17
 import os
13 18
 import re
14 19
 import difflib