2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2025-01-09 09:55:41 +01:00

cpplint: fix Python 2 import name collision using absolute_import

This commit is contained in:
Akira Baruah 2017-05-08 14:58:53 -07:00 committed by ita1024
parent cbf4c4f861
commit f7ff1dd521

View File

@ -35,6 +35,7 @@ When using this tool, the wscript will look like:
bld(features='cpplint', source=bld.path.ant_glob('**/*.hpp')) bld(features='cpplint', source=bld.path.ant_glob('**/*.hpp'))
''' '''
from __future__ import absolute_import
import sys, re import sys, re
import logging import logging
import threading import threading