Changeset 437 for pkpgcounter/trunk
- Timestamp:
- 11/28/06 18:03:07 (18 years ago)
- Location:
- pkpgcounter/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/NEWS
r435 r437 22 22 pkpgcounter News : 23 23 24 * 2.12 : 25 26 - Fixed a problem with the PostScript parser. 27 24 28 * 2.11 : 25 29 -
pkpgcounter/trunk/pkpgpdls/postscript.py
r428 r437 101 101 proceed = 1 102 102 try : 103 newpagenum = int(line.split(']')[0].split()[1]) 103 # treats both "%%Page: x x" and "%%Page: (x-y) z" (probably N-up mode) 104 newpagenum = int(line.split(']')[0].split()[-1]) 104 105 except : 105 106 notinteger = 1 # It seems that sometimes it's not an integer but an EPS file name -
pkpgcounter/trunk/pkpgpdls/version.py
r435 r437 23 23 24 24 25 __version__ = "2.1 1"25 __version__ = "2.12" 26 26 27 27 __doc__ = """pkpgcounter : a generic Page Description Languages parser."""