Skip to content

Commit 68c9366

Browse files
committed
Merge branch 'master' of github.com:simplegeo/python-oauth2 into pending
Conflicts: oauth2/_version.py
2 parents 002fc66 + 4a64169 commit 68c9366

File tree

2 files changed

+60
-1
lines changed

2 files changed

+60
-1
lines changed

debian/changelog

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1+
python-oauth2 (1.3.128) lucid; urgency=low
2+
3+
[ Zooko Ofsimplegeo ]
4+
* raise an exception if the URL passed in is not a unicode object nor
5+
ascii We can't submit a correct URL with arbitrary bytes -- we have
6+
to submit a utf-8 encoded unicode string. (Otherwise we'll cause
7+
either a rejection or a signature mismatch in the server, which is
8+
what has happened at SimpleGeo.) If the caller passes in non-ascii
9+
things in a str then it would be better for them to change their
10+
code to decode it to unicode before passing it in than for us to
11+
decode it, since they have a better chance of knowing what encoding
12+
it is in -- if we did it we would be guessing.
13+
* fix flaws pointed out by ieure, plus test failures I'm not entirely
14+
sure it is appropriate to allow .url and .normalized_url to be non-
15+
existent in addition to allowing them to be None, but I don't really
16+
understand the intent of the url setter.
17+
* Oh, after we've made sure it can be converted to unicode, just leave
18+
it as a unicode object after that.
19+
* raise more specific error message if argument to to_unicode() is
20+
neither unicode nor str
21+
* a couple of cleanups suggested by ieure in code review
22+
23+
[ SimpleGeo Nerds ]
24+
25+
-- SimpleGeo Nerds <[email protected]> Mon, 10 Jan 2011 22:42:35 +0000
26+
27+
python-oauth2 (1.3.127) lucid; urgency=low
28+
29+
[ Zooko Ofsimplegeo ]
30+
* run tests when building
31+
* raise exception from a test just to see if hudson is *really*
32+
running these tests. I don't see the test results.
33+
* put version number in a file where it can be read and written by
34+
various things (including hudson)
35+
* make oauth2.__version__ exist, rename VERSION to OAUTH_VERSION for
36+
clarity
37+
* debian/control -- build-dep pyflakes
38+
* fix pyflakes
39+
* build-dep requires python-coverage
40+
* switch from nosetests to the builtin test runner Just because it
41+
doesn't seem to currently use any feature of nosetest and this way
42+
we can reduce the dependencies by one. We'll feel free to switch it
43+
back to using nosetests (and add the dep to debian/control this
44+
time) if we want to use some extra feature of nose.
45+
* remove test failure which was inserted just to see if hudson was
46+
running the tests properly
47+
* Fix bug inserted by pyflakes inspired cleanup earlier -- it turns
48+
out that _get_version() wasn't dead code but was having a necessary
49+
side-effect. Add new method named _check_version() to be clearer
50+
about what it does compared to _get_version()
51+
* port tests from mox to mock because they were failing and I don't
52+
understand mox. now they are working. add mock to the python and
53+
debian deps. remove apparently left-over line of code that runs
54+
"sign()" at the end of checking a signature
55+
56+
[ SimpleGeo Nerds ]
57+
58+
-- SimpleGeo Nerds <[email protected]> Tue, 04 Jan 2011 19:39:34 +0000
59+
160
python-oauth2 (1.2.1) lucid; urgency=low
261

362
[ Joe Stump ]

oauth2/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is the version of this source code.
22

3-
verstr = "1.4"
3+
verstr = "1.4.128"
44
try:
55
from pyutil.version_class import Version as pyutil_Version
66
__version__ = pyutil_Version(verstr)

0 commit comments

Comments
 (0)