# # patch "ChangeLog" # from [fa1d4b7e493828ddd605f870b1a85588d644a1ea] # to [4014aa935465a8d82cc062336b8f5d269e124160] # # patch "std_hooks.lua" # from [d9f8c4acffb845da040ee403b42bf4d1dad79d5b] # to [c674787159fd451501ae52361e126505047f6bb2] # --- ChangeLog +++ ChangeLog @@ -1,5 +1,9 @@ 2005-04-20 Nathaniel Smith + * std_hooks.lua (ignore_file): Ignore compiled python files. + +2005-04-20 Nathaniel Smith + * commands.cc (mdelta, mdata, fdelta, fdata, rdata): Check for existence of command line arguments. --- std_hooks.lua +++ std_hooks.lua @@ -72,6 +72,8 @@ if (string.find(name, "/%.svn/")) then return true end if (string.find(name, "^SCCS/")) then return true end if (string.find(name, "/SCCS/")) then return true end + if (string.find(name, "%.pyc$")) then return true end + if (string.find(name, "%.pyo$")) then return true end return false; end