aboutsummaryrefslogtreecommitdiffstats
path: root/util/string/cast.py
diff options
context:
space:
mode:
authormonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
committermonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
commit06e5c21a835c0e923506c4ff27929f34e00761c2 (patch)
tree75efcbc6854ef9bd476eb8bf00cc5c900da436a2 /util/string/cast.py
parent03f024c4412e3aa613bb543cf1660176320ba8f4 (diff)
downloadydb-06e5c21a835c0e923506c4ff27929f34e00761c2.tar.gz
fix ya.make
Diffstat (limited to 'util/string/cast.py')
-rw-r--r--util/string/cast.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/util/string/cast.py b/util/string/cast.py
deleted file mode 100644
index 4787f6ef44c..00000000000
--- a/util/string/cast.py
+++ /dev/null
@@ -1,27 +0,0 @@
-print 'static const ui8 SAFE_LENS[4][15] = {'
-
-
-def nb(n, b):
- if n == 0:
- return [0]
-
- digits = []
-
- while n:
- digits.append(int(n % b))
- n /= b
-
- return digits[::-1]
-
-
-for p in (1, 2, 4, 8):
-
- def it1():
- for base in range(2, 17):
- m = 2 ** (8 * p) - 1
-
- yield len(nb(m, base)) - 1
-
- print ' {0, 0, ' + ', '.join(str(x) for x in it1()) + '},'
-
-print '};'