Changeset 92
- Timestamp:
- 04/28/08 11:23:09 (7 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
tests/test_address_list.py (modified) (1 diff)
-
turbomail/control.py (modified) (1 diff)
-
turbomail/util.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/test_address_list.py
r84 r92 25 25 self._addresses = AddressList() 26 26 27 # Helper function to avoid rep itition.27 # Helper function to avoid repetition. 28 28 def check(self, addresses, string): 29 29 self.assertEqual(self.addresses, addresses) -
trunk/turbomail/control.py
r84 r92 75 75 load('provider', 'debug') 76 76 77 # Load and init alize the various extensions.77 # Load and initialize the various extensions. 78 78 extensions = pkg_resources.iter_entry_points("turbomail.extensions") 79 79 for entrypoint in extensions: -
trunk/turbomail/util.py
r88 r92 15 15 16 16 class Address(object): 17 """Validated elect onic mail address class.17 """Validated electronic mail address class. 18 18 19 19 This class knows how to validate and format e-mail addresses. It 20 20 uses Python's built-in `parseaddr` and `formataddr` helper 21 functions and helps guar entee a uniform base for all e-mail21 functions and helps guarantee a uniform base for all e-mail 22 22 address operations. 23 23
