[Jython-checkins] jython: Checking in an extemely limited ssl module. Fixes #1897

alan.kennedy jython-checkins at python.org
Sat Jun 9 00:11:57 CEST 2012


http://hg.python.org/jython/rev/ca29927d58f2
changeset:   6695:ca29927d58f2
user:        Alan Kennedy <alan at xhaus.com>
date:        Fri Jun 08 23:09:16 2012 +0100
summary:
  Checking in an extemely limited ssl module. Fixes #1897

files:
  Lib/ssl.py |  10 ++++++++++
  1 files changed, 10 insertions(+), 0 deletions(-)


diff --git a/Lib/ssl.py b/Lib/ssl.py
new file mode 100644
--- /dev/null
+++ b/Lib/ssl.py
@@ -0,0 +1,10 @@
+"""
+This module provides very limited support for the SSL module on jython.
+
+See the jython wiki for more information.
+http://wiki.python.org/jython/SSLModule
+"""
+
+import socket
+
+wrap = socket.ssl

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list