# HG changeset patch # User Jeff Hammel # Date 1393204093 28800 # Node ID aabc968611bcf8bc75e9b8ad793f1a4ec23268c0 # Parent 12342551537b3504983ba9eb4f05b11b2d94d069 STUB: bitsyauth/__init__.py diff -r 12342551537b -r aabc968611bc bitsyauth/__init__.py --- a/bitsyauth/__init__.py Mon Dec 30 23:03:55 2013 -0800 +++ b/bitsyauth/__init__.py Sun Feb 23 17:08:13 2014 -0800 @@ -1,3 +1,7 @@ +""" +bitsyauth: wrapper module for paste auth +""" + import markup import random import re @@ -29,6 +33,7 @@ globals()['dictionary'] = _dictionary return random.Random().choice(dictionary) + class BitsyAuthInnerWare(object): """inner auth; does login checking""" @@ -237,6 +242,7 @@ self.request.environ['REMOTE_USER'] = user self.request.environ['paste.auth_tkt.set_user'](user) + ### join def captcha_pre(self, word, key):