File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
27
python-oauth2 (1.3.127) lucid; urgency=low
2
28
3
29
[ Zooko Ofsimplegeo ]
Original file line number Diff line number Diff line change 1
1
# This is the version of this source code.
2
2
3
- verstr = "1.3.127 "
3
+ verstr = "1.3.128 "
4
4
try :
5
5
from pyutil .version_class import Version as pyutil_Version
6
6
__version__ = pyutil_Version (verstr )
You can’t perform that action at this time.
0 commit comments