Changeset 776a659


Ignore:
Timestamp:
Mar 14, 2011, 10:41:18 PM (13 years ago)
Author:
Jessica B. Hamrick <jhamrick@…>
Branches:
no-cups
Children:
df51061
Parents:
1176f8b
git-author:
Jessica B. Hamrick <jhamrick@…> (03/14/11 22:41:18)
git-committer:
Jessica B. Hamrick <jhamrick@…> (03/14/11 22:41:18)
Message:

Move server-related stuff into server module; add job, printer, and exceptions

Location:
server/lib
Files:
3 added
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • server/lib/ipp/attributegroup.py

    r94211df r776a659  
    5858    def __iter__(self):
    5959        return (a.name for a in self.attributes)
     60
    6061    iterkeys = __iter__
    6162
     
    6970
    7071    def __delitem__(self, name):
    71         self.attributes = filter(lambda x: x.name != name, self.attributes)
     72        self.attributes = filter(lambda x: x.name != name,
     73                                 self.attributes)
    7274
    7375    def append(self, attribute):
Note: See TracChangeset for help on using the changeset viewer.