10000
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.
1 parent b5b0c69 commit f1e2920Copy full SHA for f1e2920
src/runtime/methodbinder.cs
@@ -200,11 +200,11 @@ static PyArgConverterAttribute TryGetArgConverter(Type type) {
200
201
return ArgConverterCache.GetOrAdd(type, declaringType =>
202
declaringType
203
- .GetCustomAttributes(typeof(PyArgConverterAttribute), inherit: false)
+ .GetCustomAttributes(typeof(PyArgConverterAttribute), inherit: true)
204
.OfType<PyArgConverterAttribute>()
205
.SingleOrDefault()
206
?? declaringType.Assembly
207
208
209
210
);
0 commit comments