We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8213753 commit 7f1d8d6Copy full SHA for 7f1d8d6
bsitool.py
@@ -1,4 +1,22 @@
1
import sys
2
+test_flag = False
3
+
4
+if (test_flag):
5
+ zlo = open("en._bsi", 'rb')
6
+ dobro = open("en_._bsi", 'rb')
7
+ one = zlo.read(1)
8
+ two = dobro.read(1)
9
+ count = 0
10
+ while ((one != b'') and (two != b'')):
11
+ if (one != two):
12
+ print(count)
13
+ break
14
15
16
+ count += 1
17
+ zlo.close()
18
+ dobro.close()
19
+ exit()
20
21
String = ''
22
Mode = 0
@@ -39,7 +57,7 @@
39
57
OutFile.write(test)
40
58
except:
41
59
OutFile.write("@" + Bytes[Ukaz:Neo].hex(' '))
42
- OutFile.write('\n#\n')
60
+ OutFile.write('\n###SEP###\n')
43
61
Ukaz = Neo+1
44
62
pass
45
63
Neo += 1
@@ -71,7 +89,7 @@
71
89
while (linenum < len(lines)):
72
90
line = lines[linenum]
73
91
74
- if (line == '#\n'):
92
+ if (line == '###SEP###\n'):
75
93
ifer = True
76
94
try:
77
95
if (down[0] == '@'):
0 commit comments