8000 Assemblymanager thread safety by ArvidJB · Pull Request #277 · pythonnet/pythonnet · GitHub
[go: up one dir, main page]

Skip to content

Assemblymanager thread safety #277

New issue

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

Merged
merged 14 commits into from
Nov 17, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Missed an asterisk
  • Loading branch information
abessen committed Oct 28, 2016
commit 3844d19938c6f9a2e20c5235408e931afab3a243
4 changes: 2 additions & 2 deletions src/tests/test_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ def testModuleInterface(self):
# the filename can be any module from the System namespace
# (eg System.Data.dll or System.dll, but also mscorlib.dll)
system_file = System.__file__
self.assertTrue(fnmatch(system_file, "*System*.dll") or fnmatch(system_file, "mscorlib.dll"),
"unexpected System.__file__" + system_file)
self.assertTrue(fnmatch(system_file, "*System*.dll") or fnmatch(system_file, "*mscorlib.dll"),
"unexpected System.__file__: " + system_file)
self.assertTrue(System.__doc__.startswith("Namespace containing types from the following assemblies:"))
self.assertTrue(self.isCLRClass(System.String))
self.assertTrue(self.isCLRClass(System.Int32))
Expand Down
0