--- python.req.py 2009-02-13 15:51:25 +0300 +++ python.req.py.new 2009-02-13 15:52:03 +0300 @@ -177,7 +177,7 @@ for src in files : ext = os.path.splitext(basename(src))[1] if ext not in ['.so','.pyc','.pyo','.pth'] : - lines = [ line.rstrip().replace('\r','') for line in open(src).readlines() ] + lines = [ line.rstrip().replace('\r','') for line in open(src).readlines() if not line.startswith('#')] encmod = None if len(lines) > 0 : encmod = need_encoding_module(lines[0])