Skip to content

Commit

Permalink
Update _non_provider_methods
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Oct 7, 2023
1 parent 3f9503d commit 434ebe9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tblfaker/_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,24 @@
_non_provider_regexp: Final = re.compile("^(add|del|get|set)_[a-z_]+")
_non_provider_methods: Final = (
"__delattr__",
"__dir__",
"__eq__",
"__format__",
"__ge__",
"__getattribute__",
"__gt__",
"__hash__",
"__init__",
"__init_subclass__",
"__le__",
"__lt__",
"__ne__",
"__reduce__",
"__reduce_ex__",
"__repr__",
"__setattr__",
"__str__",
"__subclasshook__",
"_Generator__format_token",
"format",
"parse",
Expand Down

0 comments on commit 434ebe9

Please sign in to comment.