~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_static_tuple_py.py

  • Committer: Vincent Ladeuil
  • Date: 2016-01-21 11:42:23 UTC
  • mto: This revision was merged to the branch mainline in revision 6610.
  • Revision ID: v.ladeuil+lp@free.fr-20160121114223-ngcvndi02ydiqs5z
Allow hyphens in option names to unbreak compatibility.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009 Canonical Ltd
 
1
# Copyright (C) 2009, 2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
20
20
strings.
21
21
"""
22
22
 
 
23
from __future__ import absolute_import
 
24
 
23
25
 
24
26
class StaticTuple(tuple):
25
27
    """A static type, similar to a tuple of strings."""
34
36
 
35
37
    def __init__(self, *args):
36
38
        """Create a new 'StaticTuple'"""
 
39
        num_keys = len(args)
 
40
        if num_keys < 0 or num_keys > 255:
 
41
            raise TypeError('StaticTuple(...) takes from 0 to 255 items')
37
42
        for bit in args:
38
43
            if type(bit) not in (str, StaticTuple, unicode, int, long, float,
39
44
                                 None.__class__, bool):
40
45
                raise TypeError('StaticTuple can only point to'
41
46
                    ' StaticTuple, str, unicode, int, long, float, bool, or'
42
47
                    ' None not %s' % (type(bit),))
43
 
        num_keys = len(args)
44
 
        if num_keys < 0 or num_keys > 255:
45
 
            raise ValueError('must have 1 => 256 key bits')
46
48
        # We don't need to pass args to tuple.__init__, because that was
47
49
        # already handled in __new__.
48
50
        tuple.__init__(self)