Changeset 1532
- Timestamp:
- 06/08/04 21:27:12 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r1527 r1532 28 28 29 29 - Extended some PATH in the shell scripts 30 31 - Deleting an user now also deletes his payments history. 32 33 - Doesn't explicitely ignore SIGCHLD anymore. This seems to 34 cause problems. 30 35 31 36 - 1.19alpha18 : -
pykota/trunk/pykota/tool.py
r1529 r1532 22 22 # 23 23 # $Log$ 24 # Revision 1.98 2004/06/08 19:27:12 jalet 25 # Doesn't ignore SIGCHLD anymore 26 # 24 27 # Revision 1.97 2004/06/07 22:45:35 jalet 25 28 # Now accepts a job when enforcement is STRICT and predicted account balance … … 842 845 self.gotSigTerm = 0 843 846 signal.signal(signal.SIGTERM, signal.SIG_IGN) 844 signal.signal(signal.SIGCHLD, signal.SIG_IGN)847 # signal.signal(signal.SIGCHLD, signal.SIG_IGN) 845 848 signal.signal(signal.SIGPIPE, signal.SIG_IGN) 846 849