Changeset 1733
- Timestamp:
- 10/01/07 17:27:48
- Files:
-
- branches/cherrypy-3.0.x/cherrypy/wsgiserver/__init__.py (modified) (1 diff)
- trunk/cherrypy/wsgiserver/__init__.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/cherrypy-3.0.x/cherrypy/wsgiserver/__init__.py
r1700 r1733 971 971 while self._workerThreads: 972 972 worker = self._workerThreads.pop() 973 if worker is not current and worker.isAlive :973 if worker is not current and worker.isAlive(): 974 974 try: 975 975 worker.join() trunk/cherrypy/wsgiserver/__init__.py
r1697 r1733 1036 1036 while self._workerThreads: 1037 1037 worker = self._workerThreads.pop() 1038 if worker is not current and worker.isAlive :1038 if worker is not current and worker.isAlive(): 1039 1039 try: 1040 1040 if timeout is None or timeout < 0: … … 1042 1042 else: 1043 1043 worker.join(timeout) 1044 if worker.isAlive :1044 if worker.isAlive(): 1045 1045 # We exhausted the timeout. 1046 1046 # Forcibly shut down the socket. … … 1057 1057 # See http://www.cherrypy.org/ticket/691. 1058 1058 KeyboardInterrupt), exc1: 1059 print exc11060 1059 pass 1061 1060

