]>
Commit | Line | Data |
---|---|---|
1e4a197e RD |
1 | """Decorator classes for documentation and shell scripting. |
2 | """ | |
3 | ||
4 | __author__ = "Patrick K. O'Brien <pobrien@orbtech.com>" | |
5 | __cvsid__ = "$Id$" | |
6 | __revision__ = "$Revision$"[11:-2] | |
7 | ||
8 | ||
9 | # These are not the real wxPython classes. These are Python versions | |
10 | # for documentation purposes. They are also used to apply docstrings | |
11 | # to the real wxPython classes, which are SWIG-generated wrappers for | |
12 | # C-language classes. | |
13 | ||
14 | ||
15 | class InputStream: | |
16 | """""" | |
17 | ||
18 | def CanRead(self): | |
19 | """""" | |
20 | pass | |
21 | ||
22 | def Eof(self): | |
23 | """""" | |
24 | pass | |
25 | ||
26 | def GetC(self): | |
27 | """""" | |
28 | pass | |
29 | ||
30 | def LastRead(self): | |
31 | """""" | |
32 | pass | |
33 | ||
34 | def Peek(self): | |
35 | """""" | |
36 | pass | |
37 | ||
38 | def SeekI(self): | |
39 | """""" | |
40 | pass | |
41 | ||
42 | def TellI(self): | |
43 | """""" | |
44 | pass | |
45 | ||
46 | def Ungetch(self): | |
47 | """""" | |
48 | pass | |
49 | ||
50 | def __init__(self): | |
51 | """""" | |
52 | pass | |
53 | ||
54 | def close(self): | |
55 | """""" | |
56 | pass | |
57 | ||
58 | def eof(self): | |
59 | """""" | |
60 | pass | |
61 | ||
62 | def flush(self): | |
63 | """""" | |
64 | pass | |
65 | ||
66 | def read(self): | |
67 | """""" | |
68 | pass | |
69 | ||
70 | def readline(self): | |
71 | """""" | |
72 | pass | |
73 | ||
74 | def readlines(self): | |
75 | """""" | |
76 | pass | |
77 | ||
78 | def seek(self): | |
79 | """""" | |
80 | pass | |
81 | ||
82 | def tell(self): | |
83 | """""" | |
84 | pass | |
85 | ||
86 | ||
87 | class OutputStream: | |
88 | """""" | |
89 | ||
90 | def __init__(self): | |
91 | """""" | |
92 | pass | |
93 | ||
94 | def write(self): | |
95 | """""" | |
96 | pass |