25 lines
634 B
Python
25 lines
634 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
Created on 2018年1月28日
|
|
@author: Irony."[讽刺]
|
|
@site: http://alyl.vip, http://orzorz.vip, https://coding.net/u/892768447, https://github.com/892768447
|
|
@email: 892768447@qq.com
|
|
@file: main
|
|
@description:
|
|
'''
|
|
|
|
__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: 892768447@qq.com"
|
|
__Copyright__ = "Copyright (c) 2018 Irony.\"[讽刺]"
|
|
__Version__ = "Version 1.0"
|
|
|
|
# 首先要引入importer
|
|
import IronyImporter # @UnresolvedImport @UnusedImport
|
|
|
|
|
|
# 测试开始
|
|
import test
|
|
print(test)
|
|
print(dir(test))
|
|
print(test.test(1, 5)) # @UndefinedVariable
|