Changeset 4:14b2a12d495e in mailjam for postman/__init__.py


Ignore:
Timestamp:
May 15, 2012, 4:41:48 PM (12 years ago)
Author:
Francisco de Borja Lopez Rio <borja@…>
Branch:
default
Phase:
public
Message:

Fixed some bugs in the code that was doing the de-serialization of data from
json-encoded files.

One of the bugs raised an exception complaining about the Member, MailingList
and JsonStorage classes not being found when de-serializing objects that
contain instances of such classes in their attributes. I fixed it adding some
imports to the init.py file within the postman/ module

The other bug was causing an infinite loop that was triggering a RuntimeError
(maximum recursion depth exceeded) when de-serializing MailingList instances
(a call to the .load() method in the init method of the MailingList class
was causing it)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postman/__init__.py

    r1 r4  
     1# -*- coding: utf-8 -*-
     2
     3from models import Member, MailingList
     4from storage import JsonStorage
Note: See TracChangeset for help on using the changeset viewer.