Skip to content
Open
Show file tree
Hide file tree
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
Fix to make it work with python 2 again
  • Loading branch information
briandrawert committed Jul 19, 2018
commit 3314bf52f230721e7ac361f38ea720886631d52b
1 change: 1 addition & 0 deletions odespy/RungeKutta.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import print_function
from .solvers import Solver, Adaptive
import numpy as np

Expand Down
1 change: 1 addition & 0 deletions odespy/problems.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import print_function
import numpy as np
from .solvers import compile_f77

Expand Down
1 change: 1 addition & 0 deletions odespy/solvers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Authors: Liwei Wang, Hans Petter Langtangen
from __future__ import print_function

'''
This module contains the base class ``Solver``
Expand Down