diff options
| author | Barry Warsaw | 2007-06-09 18:16:29 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2007-06-09 18:16:29 -0400 |
| commit | 5bc4941f0b749830d5e4feb57be5f172e77e0631 (patch) | |
| tree | ac56f0b3ed7398673d97bcf737c8ea9143704ef6 /Mailman/database/listmanager.py | |
| parent | 3231fd628f6eea30bd6e2be56eb419ed0008d954 (diff) | |
| download | mailman-5bc4941f0b749830d5e4feb57be5f172e77e0631.tar.gz mailman-5bc4941f0b749830d5e4feb57be5f172e77e0631.tar.zst mailman-5bc4941f0b749830d5e4feb57be5f172e77e0631.zip | |
Repair the usermanager.txt and listmanager.txt doc tests. These repairs were
necessary to deal with the simplified user model. Eradicate more references
to rosters and roster sets.
Give Users a repr. Also give them a belongs_to() link to Preferences, but
change the user manager to not give a user preferences by default (the lookup
schema should properly handle users with no preferences now).
Also, when creating a user, set their real_name to the empty string if no
real_name argument was given to create_user(). Update the IUserManager
interface's create_user() method to match the implementation.
Diffstat (limited to 'Mailman/database/listmanager.py')
| -rw-r--r-- | Mailman/database/listmanager.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Mailman/database/listmanager.py b/Mailman/database/listmanager.py index de8abbd58..83c913ffb 100644 --- a/Mailman/database/listmanager.py +++ b/Mailman/database/listmanager.py @@ -54,7 +54,6 @@ class ListManager(object): def delete(self, mlist): # Delete the wrapped backing data. XXX It's kind of icky to reach # into the MailList object this way. - mlist._data.delete_rosters() mlist._data.delete() mlist._data = None |
