8 lines
126 B
Python
8 lines
126 B
Python
#! /bin/env python3
|
|
# encoding: utf-8
|
|
|
|
import sys
|
|
|
|
from . import core
|
|
|
|
_print = core.textui.Output("over", stream=sys.stderr)
|