Skip to content
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

The major change being that we always use __getattr__ instead of __getattribute__ #55

Merged
merged 2 commits into from
Feb 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
269 changes: 0 additions & 269 deletions forward.py

This file was deleted.

3 changes: 3 additions & 0 deletions jpype/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
# *****************************************************************************
import _jpype
from ._jinit import *
from ._jforward import JForward as _JForward
from ._jpackage import *
from ._jproxy import *
from ._core import *
Expand Down Expand Up @@ -67,3 +68,5 @@
if hasattr(_jpype, 'bootstrap'):
_jpype.bootstrap()
_core.initializeResources()

jroot = _JForward(None)
Loading