#! /usr/bin/env python3 # -*- coding: utf-8 -*- #====================================================================== # # cherry.py - # # Created by skywind on 2021/02/01 # Last Modified: 2021/02/01 23:35:29 # #====================================================================== from __future__ import unicode_literals, print_function import sys import time import os #---------------------------------------------------------------------- # vim #---------------------------------------------------------------------- try: import vim except ImportError: vim = None #---------------------------------------------------------------------- # 2 / 3 Compatible #---------------------------------------------------------------------- if sys.version_info[0] >= 3: xrange = range unicode = str #---------------------------------------------------------------------- # internal #---------------------------------------------------------------------- # print(5) #---------------------------------------------------------------------- # testing suit #---------------------------------------------------------------------- if __name__ == "__main__": def test1(): print('hello') return 0 test1()