fix: unintended behavior for collections

This commit is contained in:
Shunsuke Shibayama 2023-04-19 18:49:27 +09:00
parent daf01f3cf2
commit 7d7849b493
9 changed files with 66 additions and 17 deletions

View file

@ -0,0 +1,2 @@
class Dict(dict):
pass

View file

@ -0,0 +1,2 @@
class Set(set):
pass

View file

@ -14,6 +14,8 @@ from _erg_bool import Bool
from _erg_bytes import Bytes
from _erg_str import Str, StrMut
from _erg_array import Array
from _erg_dict import Dict
from _erg_set import Set
from _erg_in_operator import in_operator
from _erg_mutate_operator import mutate_operator