-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 md5 semodule packages is being retired. Supposed to use hashlib now. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAklsnlcACgkQrlYvE4MpobMEHQCgiRH3w/m4vTnPSdKfYCJtPHKF ncEAn2WdQb9l5uiUsmIvp+92mTBAcmCR =RVRr -----END PGP SIGNATURE-----
diff --exclude-from=exclude -N -u -r nsasepolgen/src/sepolgen/yacc.py policycoreutils-2.0.60/sepolgen-1.0.14/src/sepolgen/yacc.py --- nsasepolgen/src/sepolgen/yacc.py 2008-08-28 09:34:24.000000000 -0400 +++ policycoreutils-2.0.60/sepolgen-1.0.14/src/sepolgen/yacc.py 2008-12-15 15:34:55.000000000 -0500 @@ -67,7 +67,7 @@ error_count = 3 # Number of symbols that must be shifted to leave recovery mode -import re, types, sys, cStringIO, md5, os.path +import re, types, sys, cStringIO, hashlib, os.path # Exception raised for yacc-related errors class YaccError(Exception): pass @@ -506,7 +506,7 @@ Errorfunc = None # User defined error handler - Signature = md5.new() # Digital signature of the grammar rules, precedence + Signature = hashlib.md5() # Digital signature of the grammar rules, precedence # and other information. Used to determined when a # parsing table needs to be regenerated.