Commit 2aec53aa by Piotr Mitros

New-style classes

parent 138ff04f
...@@ -13,7 +13,7 @@ def strip_dict(d): ...@@ -13,7 +13,7 @@ def strip_dict(d):
(type(d[k]) == float or type(d[k]) == int) ]) (type(d[k]) == float or type(d[k]) == int) ])
return d return d
class LoncapaProblem(): class LoncapaProblem(object):
def get_state(self): def get_state(self):
''' Stored per-user session data neeeded to: ''' Stored per-user session data neeeded to:
1) Recreate the problem 1) Recreate the problem
......
class XModule: class XModule(object):
''' Implements a generic learning module. ''' Implements a generic learning module.
Initialized on access with __init__, first time with state=None, and Initialized on access with __init__, first time with state=None, and
then with state then with state
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment