Version 1.3.2.

This commit is contained in:
Craig Citro
2014-10-31 12:57:44 -07:00
parent 486ee8139f
commit 2423fc4161
5 changed files with 17 additions and 11 deletions

View File

@@ -1,8 +1,14 @@
v1.3.2
Version 1.3.2
Quick bugfix for an issue with dict-like arguments to `flow.step2_exchange`,
which is common in some environments (such as GAE).
v1.3.1
Version 1.3.1
Quick bugfix for bad error handling in from_json.
v1.3
Version 1.3

View File

@@ -62,7 +62,7 @@ Client library for using OAuth2, especially with Google APIs.
<hr />
<div class="fields"> <p><strong>Version:</strong>
1.3.1
1.3.2
</p>
</div><!-- ==================== SUBMODULES ==================== -->
<a name="section-Submodules"></a>
@@ -212,7 +212,7 @@ tools.run_flow() function should be used in its place.</em> </li>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Mon Oct 27 10:11:16 2014
Generated by Epydoc 3.0.1 on Fri Oct 31 12:54:56 2014
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"

View File

@@ -57,7 +57,7 @@
<pre class="py-src">
<a name="L1"></a><tt class="py-lineno"> 1</tt> <tt class="py-line"><tt class="py-docstring">"""Client library for using OAuth2, especially with Google APIs."""</tt> </tt>
<a name="L2"></a><tt class="py-lineno"> 2</tt> <tt class="py-line"> </tt>
<a name="L3"></a><tt class="py-lineno"> 3</tt> <tt class="py-line"><tt class="py-name">__version__</tt> <tt class="py-op">=</tt> <tt class="py-string">'1.3.1'</tt> </tt>
<a name="L3"></a><tt class="py-lineno"> 3</tt> <tt class="py-line"><tt class="py-name">__version__</tt> <tt class="py-op">=</tt> <tt class="py-string">'1.3.2'</tt> </tt>
<a name="L4"></a><tt class="py-lineno"> 4</tt> <tt class="py-line"> </tt>
<a name="L5"></a><tt class="py-lineno"> 5</tt> <tt class="py-line"><tt id="link-0" class="py-name" targets="Variable oauth2client.GOOGLE_AUTH_URI=oauth2client-module.html#GOOGLE_AUTH_URI"><a title="oauth2client.GOOGLE_AUTH_URI" class="py-name" href="#" onclick="return doclink('link-0', 'GOOGLE_AUTH_URI', 'link-0');">GOOGLE_AUTH_URI</a></tt> <tt class="py-op">=</tt> <tt class="py-string">'https://accounts.google.com/o/oauth2/auth'</tt> </tt>
<a name="L6"></a><tt class="py-lineno"> 6</tt> <tt class="py-line"><tt id="link-1" class="py-name" targets="Variable oauth2client.GOOGLE_DEVICE_URI=oauth2client-module.html#GOOGLE_DEVICE_URI"><a title="oauth2client.GOOGLE_DEVICE_URI" class="py-name" href="#" onclick="return doclink('link-1', 'GOOGLE_DEVICE_URI', 'link-1');">GOOGLE_DEVICE_URI</a></tt> <tt class="py-op">=</tt> <tt class="py-string">'https://accounts.google.com/o/oauth2/device/code'</tt> </tt>
@@ -96,7 +96,7 @@ expandto(location.href);
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Mon Oct 27 10:11:17 2014
Generated by Epydoc 3.0.1 on Fri Oct 31 12:54:58 2014
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"

View File

@@ -397,10 +397,10 @@ Exchanges a code for OAuth2Credentials.
Args:
code: string, dict or None. For a non-device flow, this is
either the response code as a string, or a dictionary of
query parameters to the redirect_uri. For a device flow,
this should be None.
code: string, a dict-like object, or None. For a non-device
flow, this is either the response code as a string, or a
dictionary of query parameters to the redirect_uri. For a
device flow, this should be None.
http: httplib2.Http, optional http instance to use when fetching
credentials.
device_flow_info: DeviceFlowInfo, return value from step1 in the
@@ -451,7 +451,7 @@ Raises:
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Mon Sep 29 15:21:52 2014
Generated by Epydoc 3.0.1 on Fri Oct 31 12:54:57 2014
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"

View File

@@ -1,6 +1,6 @@
"""Client library for using OAuth2, especially with Google APIs."""
__version__ = '1.3.1'
__version__ = '1.3.2'
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth'
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'