Changeset 662
- Timestamp:
- 10/19/05 23:08:57 (19 years ago)
- Location:
- tea4cups/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
tea4cups/trunk/NEWS
r660 r662 23 23 Tea4CUPS News : 24 24 25 * 3.11 : 26 27 - Fixed an incompatibility with Python 2.1, thanks to Frank 28 Koormann. 29 25 30 * 3.10 : 26 31 -
tea4cups/trunk/tea4cups
r659 r662 37 37 from struct import pack, unpack 38 38 39 version = "3.1 0_unofficial"39 version = "3.11_unofficial" 40 40 41 41 class TeeError(Exception): … … 692 692 self.pipes = { 0: (0, 1) } 693 693 branches = self.enumBranches(self.PrinterName, "prehook") 694 for b in branches :694 for b in branches.keys() : 695 695 self.pipes[b.split("_", 1)[1]] = os.pipe() 696 696 retcode = self.runCommands("prehook", branches, serialize)