Mark Sapiro writes:
 > -            op, data = v
 > -            if (op == Pending.SUBSCRIPTION and
 > -                    data.address.lower() == email.lower()):
 > +            if (v[0] == Pending.SUBSCRIPTION and
 > +                    v[1].address.lower() == email.lower()):

Pedantic Python at your service:

-            op, data = v
+            op, data = v[:2]

Doesn't really matter, I guess, but if you can use mnemonic names, why
not?
------------------------------------------------------
Mailman-Users mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/mailman-users.python.org/
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: https://www.mail-archive.com/[email protected]/
    https://mail.python.org/archives/list/[email protected]/

Reply via email to