mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1155968 - Place imports on separate lines. r=khuey
This commit is contained in:
parent
dbc59edeed
commit
d1eb1b611b
@ -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
|
||||
|
||||
|
@ -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 = {
|
||||
|
@ -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:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user