[Python] Use consistent import ordering for Python code

Ordering used:
1.) standard library imports
2.) third party imports
3.) local package imports

Each group is individually alphabetized.
This commit is contained in:
practicalswift
2016-03-07 23:18:16 +01:00
parent 55856876e0
commit 265835fdfc
35 changed files with 90 additions and 76 deletions

View File

@@ -12,10 +12,10 @@
#
# ===----------------------------------------------------------------------===//
import os
import subprocess
import multiprocessing
import os
import re
import subprocess
class Result(object):
def __init__(self, name, status, output, xfail_list):