source: server/lib/gutenbach/ipp/__init__.py @ b828a96

no-cups
Last change on this file since b828a96 was b828a96, checked in by Jessica B. Hamrick <jhamrick@…>, 12 years ago

Use classes for standard IPP attributes

  • Property mode set to 100644
File size: 615 bytes
Line 
1__all__ = []
2
3from attribute import Attribute
4__all__.append('Attribute')
5
6from attributegroup import AttributeGroup
7__all__.append('AttributeGroup')
8
9from request import Request
10__all__.append('Request')
11
12from value import Value
13__all__.append('Value')
14
15import constants
16from constants import *
17__all__.append('constants')
18__all__.extend(constants.__all__)
19
20import errors
21__all__.append('errors')
22
23import object_attributes
24from object_attributes import *
25__all__.append('object_attributes')
26__all__.extend(object_attributes.__all__)
27
28# this import needs to come last
29import operations as ops
30__all__.append('ops')
Note: See TracBrowser for help on using the repository browser.