Author: Amaury Forgeot d'Arc <[email protected]>
Branch: py3k
Changeset: r57790:5804e3969810
Date: 2012-10-04 23:00 +0200
http://bitbucket.org/pypy/pypy/changeset/5804e3969810/

Log:    Somehow SSLContext.options was defined but not exported for
        applevel.

diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py
--- a/pypy/module/_ssl/interp_ssl.py
+++ b/pypy/module/_ssl/interp_ssl.py
@@ -266,6 +266,8 @@
 SSLContext.typedef = TypeDef(
     "_SSLContext",
     __new__ = interp2app(SSLContext.descr_new.im_func),
+    options = GetSetProperty(SSLContext.get_options_w,
+                             SSLContext.set_options_w),
     verify_mode = GetSetProperty(SSLContext.get_verify_mode_w,
                                  SSLContext.set_verify_mode_w),
     _wrap_socket = interp2app(SSLContext.wrap_socket_w),
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to