Skip to content

Commit 577fcc9

Browse files
committed
Fix import error
1 parent 85d2443 commit 577fcc9

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

extra/detail/decode_decimal128.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
# Distributed under the Boost Software License, Version 1.0.
33
# https://www.boost.org/LICENSE_1_0.txt
44

5+
import sys
6+
import os
7+
sys.path.insert(0, os.path.dirname(__file__))
8+
59
from generate_string import generate_string
610

711
def decode_decimal128(bits):

extra/detail/decode_decimal32.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
# Distributed under the Boost Software License, Version 1.0.
33
# https://www.boost.org/LICENSE_1_0.txt
44

5+
import sys
6+
import os
7+
sys.path.insert(0, os.path.dirname(__file__))
8+
59
from generate_string import generate_string
610

711
def decode_decimal32(bits):

extra/detail/decode_decimal64.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
# Distributed under the Boost Software License, Version 1.0.
33
# https://www.boost.org/LICENSE_1_0.txt
44

5+
import sys
6+
import os
7+
sys.path.insert(0, os.path.dirname(__file__))
8+
59
from generate_string import generate_string
610

711
def decode_decimal64(bits):

extra/detail/decode_fast_type.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
# Distributed under the Boost Software License, Version 1.0.
33
# https://www.boost.org/LICENSE_1_0.txt
44

5+
import sys
6+
import os
7+
sys.path.insert(0, os.path.dirname(__file__))
8+
59
from generate_string import generate_string
610

711
def decode_fast_type(significand, exp, sign):

0 commit comments

Comments
 (0)