[Fxpy-commits] CVS: FXPy/includes-archive diffs.py,1.28,1.29
Status: Inactive
Brought to you by:
lyle
From: Bastian K. <ca...@us...> - 2002-02-11 09:59:22
|
Update of /cvsroot/fxpy/FXPy/includes-archive In directory usw-pr-cvs1:/tmp/cvs-serv25195/includes-archive Modified Files: diffs.py Log Message: FXPicker, FXColorBar and FXColorWheel added Index: diffs.py =================================================================== RCS file: /cvsroot/fxpy/FXPy/includes-archive/diffs.py,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** diffs.py 7 Feb 2002 14:24:16 -0000 1.28 --- diffs.py 11 Feb 2002 09:58:49 -0000 1.29 *************** *** 13,16 **** --- 13,17 ---- diff_line_expr8 = re.compile("License along with this library") diff_line_expr9 = re.compile("Foundation, Inc\.") + diff_line_expr10 = re.compile("^ \*") def is_not_license_text(line): *************** *** 21,26 **** diff_line_expr7.search(line) or diff_line_expr8.search(line) or ! diff_line_expr9.search(line)) ! def is_not_diff_line(line): return not (diff_line_expr1.search(line) or diff_line_expr2.search(line)) --- 22,28 ---- diff_line_expr7.search(line) or diff_line_expr8.search(line) or ! diff_line_expr9.search(line) or ! diff_line_expr10.search(line)) ! def is_not_diff_line(line): return not (diff_line_expr1.search(line) or diff_line_expr2.search(line)) *************** *** 58,64 **** for file in glob.glob("*.h"): ! origfile = os.path.join(path1, file) ! if os.path.exists(file) and os.path.exists(origfile): ! lines = os.popen("diff -BubN %s %s" % (origfile, file)).readlines() lines = filter(is_not_rcsid_line, lines) lines = filter(is_not_diff_line, lines) --- 60,66 ---- for file in glob.glob("*.h"): ! newfile = os.path.join(path1, file) ! if os.path.exists(file) and os.path.exists(newfile): ! lines = os.popen("diff -BubN %s %s" % (file, newfile)).readlines() lines = filter(is_not_rcsid_line, lines) lines = filter(is_not_diff_line, lines) |