Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / security / py-oauth2 / DESCR
blobb76eb801df353ab12f417ac765a794f1d3417a51
1 This code was originally forked from Leah Culver and Andy Smith's
2 oauth.py code. Some of the tests come from a fork by Vic Fryzel, while
3 a revamped Request class and more tests were merged in from Mark
4 Paschal's fork. A number of notable differences exist between this
5 code and its forefathers:
7   100% unit test coverage.
8   The DataStore object has been completely ripped out. While
9     creating unit tests for the library I found several substantial
10     bugs with the implementation and confirmed with Andy Smith that it
11     was never fully baked.
12   Classes are no longer prefixed with OAuth.
13   The Request class now extends from dict.
14   The library is likely no longer compatible with Python 2.3.
15   The Client class works and extends from httplib2. It's a thin
16     wrapper that handles automatically signing any normal HTTP request
17     you might wish to make.