blob: 0b7bdce424e433655a7b613d1c291384cb079710 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env python3
import fileinput
import json
current_help_msg = []
current_module_code = []
current_module_name = None
current_module_signature = None
def
|