appengine urllib 是否使用 SSLv3?传输安全协议?

Does appengine urllib use SSLv3? TLS?

请求HTTPS资源时,appengine的urllib是否使用SSLv3?使用 TLS? (python 2.7)

就上下文而言,AWS S3 最近宣布

As of 12:00 AM PDT April 30, 2015, AWS will discontinue support of SSLv3 for securing connections to S3 buckets.

还有那个

[some of our buckets] are currently accepting requests from clients that specify SSLv3 to connect to S3 HTTPS endpoints.

还有那个

These requests will fail once AWS disables support for SSLv3 for the Amazon S3 service. To avoid interrupted access, you must update any client software (or inform any clients to update software) making the requests that are using SSLv3 to connect to S3 HTTPS endpoints.

他们不提供有关哪些客户端正在使用 SSLv3 的任何用户代理信息。所以我想到,由于我们使用 boto 2.9.9(使用 urllib)从 GAE 连接到 S3,我们的 GAE 到 S3 连接可能是 SSLv3 违规者,现在我想检查是否是这种情况。

如果我在这里误解了某些概念,我提前道歉。例如。也许使用(或不使用)TLS 或 SSLv3 取决于 python 版本、boto 配置或其他因素。如果是这样,请纠正我,并编辑我的问题:)

哦,感谢 AWS 把这个交给我们 w/o 任何用户代理信息或其他方式来确定 4 月 30 日究竟会发生什么;)

我在 GAE Playground

上尝试了以下代码
import urllib2
r = urllib2.urlopen("https://howsmyssl.com/").read()
self.response.write(r)

然后说

Your client is using TLS 1.2

我没有找到任何官方文件,但没有人试图为将来的版本降级规范。