- Timestamp:
- 09/04/03 09:57:18 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r1122 r1123 22 22 PyKota NEWS : 23 23 24 - 1.15alpha4 : 25 26 - Problem with Python 2.3 fixed. Needs some definitive 27 modification. 28 24 29 - 1.15alpha3 : 25 30 -
pykota/trunk/pykota/accounters/external.py
r1068 r1123 21 21 # 22 22 # $Log$ 23 # Revision 1.6 2003/09/04 07:57:18 jalet 24 # Problem with Python 2.3 fixed : a bug of me. 25 # 23 26 # Revision 1.5 2003/07/07 11:49:24 jalet 24 27 # Lots of small fixes with the help of PyChecker … … 91 94 92 95 # launches external accounter 93 try : 94 infilename = tempfile.mkstemp() # Python 2.3 95 except AttributeError : 96 infilename = tempfile.mktemp() 97 try : 98 outfilename = tempfile.mkstemp() # Python 2.3 99 except AttributeError : 100 outfilename = tempfile.mktemp() 101 try : 102 errfilename = tempfile.mkstemp() # Python 2.3 103 except AttributeError : 104 errfilename = tempfile.mktemp() 96 # TODO : USE tempfile.mkstemp() instead ! Needs some work ! 97 infilename = tempfile.mktemp() 98 outfilename = tempfile.mktemp() 99 errfilename = tempfile.mktemp() 105 100 106 101 try : -
pykota/trunk/pykota/version.py
r1121 r1123 21 21 # 22 22 23 __version__ = "1.15alpha 3_unofficial"23 __version__ = "1.15alpha4_unofficial" 24 24 25 25 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""