
10 Mar
2014
10 Mar
'14
3:31 p.m.
import cherrypy +import grp +from multiprocessing import Process, Queue import os import psutil +import pwd import re import subprocess import urllib2 from threading import Timer +import traceback
from cherrypy.lib.reprconf import Parser The statements "from <foo> import <bar>" should be placed at the end of
Am 10-03-2014 05:23, schrieb shaohef@linux.vnet.ibm.com: their corresponding blocks. So, the statement "from multiprocessing..." should be moved to before "from threading..." (alphabetical order) and "import traceback" should be moved to after "import urllib2" (before the statements "from <foo> import <bar>").