~ar-python-hackers/authentication-results-python/trunk

« back to all changes in this revision

Viewing changes to authres/core.py

  • Committer: Scott Kitterman
  • Date: 2016-12-11 06:08:52 UTC
  • Revision ID: scott@kitterman.com-20161211060852-1pyta3jfpfpkoofl
  * Updated README and docstring reference to refer to RFC 7601
  * Bump version numbers to 0.900 due to new feature support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# limitations under the License.
17
17
 
18
18
"""
19
 
Module for parsing ``Authentication-Results`` headers as defined in RFC 5451
20
 
and 7001.
 
19
Module for parsing ``Authentication-Results`` headers as defined in RFC 5451,
 
20
7001, and 7601.
21
21
"""
22
22
 
23
23
#MODULE = 'authres'
24
24
 
25
25
__author__  = 'Julian Mehnle, Scott Kitterman'
26
26
__email__   = 'julian@mehnle.net'
27
 
__version__ = '0.800'
 
27
__version__ = '0.900'
28
28
 
29
29
import re
30
30