Displaying 1 result from an estimated 1 matches for "2005b".
Did you mean:
2005
2015 Oct 09
3
Python version for scripts in LLVM?
...ml>
-------------- next part --------------
Index: DSAclean.py
===================================================================
--- DSAclean.py (revision 249819)
+++ DSAclean.py (working copy)
@@ -1,5 +1,7 @@
#! /usr/bin/python
+from __future__ import print_function
+
#changelog:
#10/13/2005b: replaced the # in tmp(.#*)* with alphanumeric and _, this will then remove
#nodes such as %tmp.1.i and %tmp._i.3
@@ -11,7 +13,7 @@
import re
import sys
if( len(sys.argv) < 3 ):
- print 'usage is: ./DSAclean <dot_file_to_be_cleaned> <out_put_file>'
+ print('usage is:...