~ubuntu-branches/ubuntu/natty/python-crypto/natty-security

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Muharem Hrnjadovic
  • Date: 2009-06-16 16:15:28 UTC
  • mfrom: (6.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090616161528-ve0f8gn27gsq76t3
Tags: 2.0.1+dfsg1-4ubuntu1
* Merge from debian unstable (LP: #388002), remaining changes:
  - Install the -dbg build using --install-layout=deb.
  - The md5 module is deprecated in Python 2.6, use hashlib when possible.
  - Explicitly use python2.5 to build the docs; the old doc tools are not
    included in python2.6 anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
                          theoretic functions)
18
18
"""
19
19
 
20
 
__all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util']
 
20
__all__ = ['Cipher', 'Hash', 'Protocol', 'Util']
21
21
 
22
 
__version__ = '2.0.1'
23
 
__revision__ = "$Id: __init__.py,v 1.12 2005/06/14 01:20:22 akuchling Exp $"
 
22
__version__ = '2.0'
 
23
__revision__ = "$Id: __init__.py,v 1.10 2004/08/13 23:44:47 akuchling Exp $"
24
24
 
25
25