We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7daaa22 + 6b73cab commit 4f84d71Copy full SHA for 4f84d71
utils/name-compression/HuffGen.py
@@ -1,7 +1,7 @@
1
#!/usr/bin/env python
2
3
import sys
4
-from heapq import heappush, heappop, heapify
+from heapq import heappush, heappop
5
from collections import defaultdict
6
7
filenames = sys.argv[1:]
@@ -16,7 +16,6 @@ def addLine(line):
16
"""
17
Analyze the frequency of letters in \p line.
18
19
- max_string_length = 8
20
for c in line: hist[c] += 1
21
22
# Read all of the input files and analyze the content of the files.
utils/update-checkout
@@ -21,7 +21,6 @@ from SwiftBuildSupport import (
SWIFT_SOURCE_ROOT,
WorkingDirectory,
23
check_call,
24
- check_output,
25
)
26
27
def update_working_copy(repo_path):
0 commit comments