Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jul 22, 2023. It is now read-only.
/pythonnetPublic archive
forked frompythonnet/pythonnet

Commit87e1df3

Browse files
committed
Fix NotSupportedException when using the project in an F# interactive (maybe C# interactive as well).
1 parentcd14a4a commit87e1df3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

‎src/runtime/moduleobject.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ public ModuleObject(string name) : base()
3535
stringdocstring="Namespace containing types from the following assemblies:\n\n";
3636
foreach(AssemblyainAssemblyManager.GetAssemblies(name))
3737
{
38-
filename=a.Location;
38+
if(!a.IsDynamic&&a.Location!=null)
39+
{
40+
filename=a.Location;
41+
}
3942
docstring+="- "+a.FullName+"\n";
4043
}
4144

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp