We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
str.xxx()
1 parent e935426 commit ac67137Copy full SHA for ac67137
userbenchmark/dynamo/dynamobench/_dynamo/utils.py
@@ -2359,6 +2359,8 @@ def check_numpy_ndarray_args(args, kwargs):
2359
list_methods = {method for method in list.__dict__.values() if callable(method)}
2360
list_getitem = list.__getitem__
2361
2362
+str_methods = {method for method in str.__dict__.values() if callable(method)}
2363
+
2364
2365
def builtin_dict_keys(d):
2366
# Avoids overridden keys method of the dictionary
0 commit comments