8000 Fixed #296 Converter support for PyObject by rmadsen-ks · Pull Request #297 · pythonnet/pythonnet · GitHub
[go: up one dir, main page]

Skip to content

Fixed #296 Converter support for PyObject #297

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 7 commits into from
Dec 16, 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
removed windows line endings
  • Loading branch information
rmadsen-ks committed Dec 1, 2016
commit d5951f693f92be2567cff0199aa9fb68eb20c620
4 changes: 2 additions & 2 deletions src/tests/test_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import System
import six
from Python.Test import ClassTest
from System.Collections import Hashtable
from System.Collections import Hashtable

if six.PY3:
DictProxyType = type(object.__dict__)
Expand Down Expand Up @@ -264,7 +264,7 @@ def PyCallback(self, self2):
testobj = CallbackUser()
testobj.DoCallback()
self.assertTrue(testobj.PyCallbackWasCalled)
self.assertTrue(testobj.SameReference)
self.assertTrue(testobj.SameReference)

class ClassicClass:
def kind(self):
Expand Down
0