1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 """Provides an interface to the null machine.
20
21 """
22
23 from system import *;
24
26 """Returns an object representing the null system.
27 """
28 system=NullSystem()
29
31 """Represents the uptime on a null system.
32 """
35
37 """Represents a null system.
38
39 """
42
43
45 """Represents a null processor
46 """
47 pass
48
49
51 """Represents a null memory (RAM) bank
52 """
53 pass
54
55
57 """Represents a null filesystem
58 """
59 pass
60
61
63 """Represents a null drive
64 """
65 pass
66
67
69 """Represents a null list of processes
70 """
71 pass
72
73
75 """Represents a single null process
76 """
77 pass
78