10 lines
219 B
Python
10 lines
219 B
Python
|
|
from wechatpayv3 import WeChatPay
|
|
import inspect
|
|
|
|
print("WeChatPay.__init__ signature:")
|
|
print(inspect.signature(WeChatPay.__init__))
|
|
|
|
print("\nWeChatPay.__init__ docstring:")
|
|
print(inspect.getdoc(WeChatPay.__init__))
|