Skip to content

Commit 2c49b1a

Browse files
committed
Add Python 3.13 support & drop python 3.8 & upgrade package version
1 parent 3273b61 commit 2c49b1a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from ast import AST
1+
from json import JSONEncoder
22

33

4-
print(AST)
4+
print(JSONEncoder)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from re import match, search
2-
from ast import AST
2+
from json import JSONEncoder
33

44

55
print(match)
66
print(search)
7-
print(AST)
7+
print(JSONEncoder)

tests/cases/source/star_import/2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
Union,
1111
cast,
1212
)
13-
from ast import *
14-
from ast import AST
13+
from json import *
14+
from json import JSONEncoder
1515

1616

17-
print(AST)
17+
print(JSONEncoder)

tests/cases/source/star_import/star_imports.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
from x import y
33
from re import *
44
from t.s.d import *
5-
from ast import *
6-
from ast import AST
5+
from json import *
6+
from json import JSONEncoder
77

88

99
print(match)
1010
print(search)
11-
print(AST)
11+
print(JSONEncoder)

0 commit comments

Comments
 (0)