summaryrefslogtreecommitdiff
path: root/Modules/_sha3/cleanup.py
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/_sha3/cleanup.py')
-rwxr-xr-xModules/_sha3/cleanup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_sha3/cleanup.py b/Modules/_sha3/cleanup.py
index aabcb0442c..5238ab3ca9 100755
--- a/Modules/_sha3/cleanup.py
+++ b/Modules/_sha3/cleanup.py
@@ -32,10 +32,10 @@ def cleanup(f):
if line.startswith("typedef unsigned long long int"):
buf.append("/* %s */\n" % line.strip())
continue
- # remove #include "brg_endian.h"
- if "brg_endian.h" in line:
- buf.append("/* %s */\n" % line.strip())
- continue
+ ## remove #include "brg_endian.h"
+ #if "brg_endian.h" in line:
+ # buf.append("/* %s */\n" % line.strip())
+ # continue
# transform C++ comments into ANSI C comments
line = CPP1.sub(r"/* \1 */", line)
line = CPP2.sub(r" /* \1 */", line)