~ubuntu-branches/ubuntu/saucy/python-crypto/saucy-proposed

« back to all changes in this revision

Viewing changes to lib/Crypto/Util/wrapper.py

  • Committer: Package Import Robot
  • Author(s): Sebastian Ramacher
  • Date: 2012-05-24 20:16:34 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120524201634-de6vxznjsdgekuwp
Tags: 2.6-1
* New upstream release.
  - Fixes CVE-2012-2417: insecure ElGamal key generation.
* Set urgency to high since this fixes a security issue.
* debian/copyright:
  - Fix formatting.
  - Update Format URL.
* debian/control:
  - Bump Standards-Version to 3.9.3 (no changes required).
  - Drop qNEW from Description since qNEW has been removed.
* debian/patches: Remove posixread.patch (not needed anymore).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
#   wrapper.py: Small class to wrap an object, instantiated from a class
3
 
#       or generated by a module.
4
 
#
5
 
# ===================================================================
6
 
# The contents of this file are dedicated to the public domain.  To
7
 
# the extent that dedication to the public domain is not available,
8
 
# everyone is granted a worldwide, perpetual, royalty-free,
9
 
# non-exclusive license to exercise all rights associated with the
10
 
# contents of this file for any purpose whatsoever.
11
 
# No rights are reserved.
12
 
#
13
 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
 
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
 
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
 
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
 
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
 
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
 
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
 
# SOFTWARE.
21
 
# ===================================================================
22
 
#
23
 
 
24
 
__all__ = [ 'Wrapper' ]
25
 
 
26
 
class Wrapper:
27
 
    '''
28
 
    Wrapper for an object, instantiated from a class
29
 
    or from a call to a new() function in a module.
30
 
    '''
31
 
    def __init__(self, wrapped, *args):
32
 
        """
33
 
        wrapped is either a class or a module with a new() function.
34
 
        """
35
 
        if hasattr(wrapped, 'new'):
36
 
            self._wrapped = wrapped.new(*args)
37
 
        else:
38
 
            self._wrapped = wrapped(*args)
39
 
    
40
 
    def __getattr__(self, name):
41
 
        try:
42
 
            return getattr(getattr(self,'_wrapped'),name)
43
 
        except AttributeError:
44
 
            if hasattr(self, name):
45
 
                return getattr(self,name)
46
 
            raise
47