6:81a2208f13e4 | 7:e336d6afc5a6 |
---|---|
1 # -*- coding: utf-8 -*- | |
2 | |
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> | |
4 # | |
5 | |
6 """ | |
7 Module containing stubs for API generation of the 'sys' module. | |
8 """ | |
9 | |
10 argv = [] | |
11 byteorder = "" | |
12 implementation = tuple() | |
13 maxsize = 1 | |
14 modules = {} | |
15 path = [] | |
16 platform = "" | |
17 stderr = 2 | |
18 stdin = 0 | |
19 stdout = 1 | |
20 version = "" | |
21 version_info = tuple() | |
22 | |
23 def exit(retval=0): | |
24 pass | |
25 | |
26 def print_exception(exc, file=stdout): | |
27 pass |