예제 #1
0
 def __exit__(self, *args):
     self.extend(self._stringio.getvalue().splitlines())
     del self._stringio  # free up some memory
     sys.stdout = self._stdout
     LOG.init()
예제 #2
0
 def __enter__(self):
     self._stdout = sys.stdout
     sys.stdout = self._stringio = StringIO()
     LOG.init()
     return self
예제 #3
0
 def __enter__(self):
     self._stdout = sys.stdout
     sys.stdout = self._stringio = StringIO()
     LOG.init()
     return self
예제 #4
0
 def __exit__(self, *args):
     self.extend(self._stringio.getvalue().splitlines())
     del self._stringio    # free up some memory
     sys.stdout = self._stdout
     LOG.init()
예제 #5
0
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from os.path import abspath, dirname, join

from mycroft.api import Api
from mycroft.messagebus.message import Message
from mycroft.skills.context import adds_context, removes_context
from mycroft.skills import (MycroftSkill, FallbackSkill, intent_handler,
                            intent_file_handler)
from mycroft.skills.intent_service import AdaptIntent
from mycroft.util.log import LOG

MYCROFT_ROOT_PATH = abspath(join(dirname(__file__), '..'))

__all__ = [
    'MYCROFT_ROOT_PATH', 'Api', 'Message', 'adds_context', 'removes_context',
    'MycroftSkill', 'FallbackSkill', 'intent_handler', 'intent_file_handler',
    'AdaptIntent'
]

LOG.init()  # read log level from config