We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, in .NET 8 the following overload is added:
public static Dictionary<TKey,TValue> ToDictionary<TKey,TValue> (this IEnumerable<KeyValuePair<TKey,TValue>> source);
Since PythonDictionary is an IEnumerable<KeyValuePair<object, object>> the extension method should be callable:
PythonDictionary
IEnumerable<KeyValuePair<object, object>>
import clr clr.AddReference("System.Linq") from System.Linq import Enumerable clr.ImportExtensions(Enumerable) {}.ToDictionary()
This causes an assertion error when running test_cliclass.test_extension_methods in Debug mode.
test_cliclass.test_extension_methods
Debug
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example, in .NET 8 the following overload is added:
Since
PythonDictionary
is anIEnumerable<KeyValuePair<object, object>>
the extension method should be callable:This causes an assertion error when running
test_cliclass.test_extension_methods
inDebug
mode.The text was updated successfully, but these errors were encountered: