We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent4c7778a commita4aadb0Copy full SHA for a4aadb0
git/config.py
@@ -87,15 +87,15 @@ def __new__(cls, name: str, bases: Tuple, clsdict: Dict[str, Any]) -> "MetaParse
87
mutating_methods=clsdict[kmm]
88
forbaseinbases:
89
methods= (tfortininspect.getmembers(base,inspect.isroutine)ifnott[0].startswith("_"))
90
-forname,methodinmethods:
91
-ifnameinclsdict:
+formethod_name,methodinmethods:
+ifmethod_nameinclsdict:
92
continue
93
method_with_values=needs_values(method)
94
-ifnameinmutating_methods:
+ifmethod_nameinmutating_methods:
95
method_with_values=set_dirty_and_flush_changes(method_with_values)
96
# END mutating methods handling
97
98
-clsdict[name]=method_with_values
+clsdict[method_name]=method_with_values
99
# END for each name/method pair
100
# END for each base
101
# END if mutating methods configuration is set