Ignore:
Timestamp:
Dec 23, 2011, 9:37:39 PM (12 years ago)
Author:
Jessica B. Hamrick <jhamrick@…>
Branches:
no-cups
Children:
1037115
Parents:
b828a96
git-author:
Jessica B. Hamrick <jhamrick@…> (12/23/11 21:37:39)
git-committer:
Jessica B. Hamrick <jhamrick@…> (12/23/11 21:37:39)
Message:

Reorganization

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/lib/gutenbach/ipp/__init__.py

    rb828a96 r793432f  
    1 __all__ = []
     1import core
     2from core import *
     3__all__ = ['core']
     4__all__.extend(core.__all__)
     5print __all__
    26
    3 from attribute import Attribute
    4 __all__.append('Attribute')
    5 
    6 from attributegroup import AttributeGroup
    7 __all__.append('AttributeGroup')
    8 
    9 from request import Request
    10 __all__.append('Request')
    11 
    12 from value import Value
    13 __all__.append('Value')
    14 
    15 import constants
    16 from constants import *
    17 __all__.append('constants')
    18 __all__.extend(constants.__all__)
    19 
    20 import errors
    21 __all__.append('errors')
    22 
    23 import object_attributes
    24 from object_attributes import *
    25 __all__.append('object_attributes')
    26 __all__.extend(object_attributes.__all__)
     7import attributes
     8from attributes import *
     9__all__.append('attributes')
     10__all__.extend(attributes.__all__)
    2711
    2812# this import needs to come last
    29 import operations as ops
    30 __all__.append('ops')
     13import operations
     14from operations import *
     15__all__.append('operations')
     16__all__.extend(operations.__all__)
Note: See TracChangeset for help on using the changeset viewer.