1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
10 def PrintMessage(heading
, eol
='\n'):
11 sys
.stdout
.write('%s%s' % (heading
, eol
))
15 def WaitForEnter(timeout
):
16 select
.select([sys
.stdin
], [], [], timeout
)
22 # pylint: disable=W0601
27 logging
.getLogger().disabled
= True