__init__.py 498 B

123456789101112131415
  1. """unit tests package for urllib2pyopenssl
  2. PyOpenSSL utility to make a httplib-like interface suitable for use with
  3. urllib2
  4. """
  5. __author__ = "P J Kershaw (STFC)"
  6. __date__ = "05/01/12"
  7. __copyright__ = "(C) 2012 Science and Technology Facilities Council"
  8. __license__ = "BSD - see LICENSE file in top-level directory"
  9. __contact__ = "Philip.Kershaw@stfc.ac.uk"
  10. __revision__ = '$Id$'
  11. class Constants(object):
  12. PORT = 4443
  13. HOSTNAME = 'localhost'
  14. TEST_URI = 'https://%s:%d' % (HOSTNAME, PORT)