~ubuntu-branches/ubuntu/trusty/python-eventlet/trusty-proposed

« back to all changes in this revision

Viewing changes to eventlet/green/ssl.py

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2010-09-28 21:20:32 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100928212032-c4n67olxdoqzygmt
Tags: 0.9.12-0ubuntu1
New upstream release. (FFe: LP: #645899)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
__ssl = __import__('ssl')
2
2
 
3
 
exec "\n".join("%s = __ssl.%s" % (attr, attr) for attr in dir(__ssl))
 
3
globals().update(dict([(var, getattr(__ssl, var))
 
4
                       for var in dir(__ssl) 
 
5
                       if not var.startswith('__')]))
4
6
 
5
7
import sys
6
8
import errno