Is there a cleaner way to define global variables so that they're all in one line?
Currently I have:
SUCCESS = 0 # Declarations spanning multiple lines
FAIL = 0
TARGET = os.getcwd()
TIMEOUT = 2
MAXDEPTH = 0
ORIGINAL = ''
PATHS = {}
def main():
aNumber,aString = 1,'hello' # Declarations in one line
print aString
main()
;