Skip to content

Commit 80f168d

Browse files
committed
Drop six dependency
1 parent ee5e75d commit 80f168d

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

tests/api/test_symbolTable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import unittest
55
from unittest import TestCase
6-
from six import StringIO
6+
from io import StringIO
77

88
from src.api.symboltable import SymbolTable
99
from src.api.constants import TYPE

tests/symbols/test_symbolARRAYACCESS.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
from unittest import TestCase
5-
from six import StringIO
5+
from io import StringIO
66

77
from src import symbols
88
import src.api.global_ as gl

tests/symbols/test_symbolBINARY.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
from unittest import TestCase
5-
from six import StringIO
5+
from io import StringIO
66

77
from src.api.config import OPTIONS
88
from src import symbols

tests/symbols/test_symbolBOUND.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import unittest
55
from unittest import TestCase
6-
from six import StringIO
6+
from io import StringIO
77

88
from src.api.config import OPTIONS
99
from src import symbols

tests/symbols/test_symbolTYPECAST.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3+
34
from unittest import TestCase
5+
from io import StringIO
46

57
from src.symbols import TYPECAST
68
from src.symbols import NUMBER
79
from src.symbols import VAR
810
from src.symbols.type_ import Type
911
from src.api.config import OPTIONS
10-
from six import StringIO
1112
from src.api.constants import CLASS
1213
from src.libzxbpp import zxbpp
1314

0 commit comments

Comments
 (0)