Bug 1155968 - Place imports on separate lines. r=khuey

This commit is contained in:
Boris Kudryavtsev 2015-05-04 22:34:00 +02:00
parent dbc59edeed
commit d1eb1b611b
3 changed files with 13 additions and 4 deletions

View File

@ -7,7 +7,12 @@
"""Print a C++ header file for the IDL files specified on the command line"""
import sys, os.path, re, xpidl, itertools, glob
import sys
import os.path
import re
import xpidl
import itertools
import glob
printdoccomments = False

View File

@ -9,7 +9,8 @@
import os
import sys
import xpidl, xpt
import xpidl
import xpt
# A map of xpidl.py types to xpt.py types
TypeMap = {

View File

@ -7,8 +7,11 @@
"""A parser for cross-platform IDL (XPIDL) files."""
import sys, os.path, re
from ply import lex, yacc
import sys
import os.path
import re
from ply import lex
from ply import yacc
"""A type conforms to the following pattern: