forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuiltin.Generated.cs
More file actions
201 lines (194 loc) · 7.61 KB
/
Builtin.Generated.cs
File metadata and controls
201 lines (194 loc) · 7.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
using IronPython.Runtime.Exceptions;
using IronPython.Runtime.Types;
namespace IronPython.Modules {
public static partial class Builtin {
#region Generated builtin exceptions
// *** BEGIN GENERATED CODE ***
// generated by function: builtin_gen from: generate_exceptions.py
public static PythonType SystemExit {
get { return PythonExceptions.SystemExit; }
}
public static PythonType KeyboardInterrupt {
get { return PythonExceptions.KeyboardInterrupt; }
}
public static PythonType GeneratorExit {
get { return PythonExceptions.GeneratorExit; }
}
public static PythonType Exception {
get { return PythonExceptions.Exception; }
}
public static PythonType StopIteration {
get { return PythonExceptions.StopIteration; }
}
public static PythonType ArithmeticError {
get { return PythonExceptions.ArithmeticError; }
}
public static PythonType FloatingPointError {
get { return PythonExceptions.FloatingPointError; }
}
public static PythonType OverflowError {
get { return PythonExceptions.OverflowError; }
}
public static PythonType ZeroDivisionError {
get { return PythonExceptions.ZeroDivisionError; }
}
public static PythonType AssertionError {
get { return PythonExceptions.AssertionError; }
}
public static PythonType AttributeError {
get { return PythonExceptions.AttributeError; }
}
public static PythonType BufferError {
get { return PythonExceptions.BufferError; }
}
public static PythonType OSError {
get { return PythonExceptions.OSError; }
}
public static PythonType BlockingIOError {
get { return PythonExceptions.BlockingIOError; }
}
public static PythonType FileExistsError {
get { return PythonExceptions.FileExistsError; }
}
public static PythonType FileNotFoundError {
get { return PythonExceptions.FileNotFoundError; }
}
public static PythonType PermissionError {
get { return PythonExceptions.PermissionError; }
}
public static PythonType NotADirectoryError {
get { return PythonExceptions.NotADirectoryError; }
}
public static PythonType InterruptedError {
get { return PythonExceptions.InterruptedError; }
}
public static PythonType ChildProcessError {
get { return PythonExceptions.ChildProcessError; }
}
public static PythonType IsADirectoryError {
get { return PythonExceptions.IsADirectoryError; }
}
public static PythonType ProcessLookupError {
get { return PythonExceptions.ProcessLookupError; }
}
public static PythonType TimeoutError {
get { return PythonExceptions.TimeoutError; }
}
public static PythonType ConnectionError {
get { return PythonExceptions.ConnectionError; }
}
public static PythonType BrokenPipeError {
get { return PythonExceptions.BrokenPipeError; }
}
public static PythonType ConnectionAbortedError {
get { return PythonExceptions.ConnectionAbortedError; }
}
public static PythonType ConnectionRefusedError {
get { return PythonExceptions.ConnectionRefusedError; }
}
public static PythonType ConnectionResetError {
get { return PythonExceptions.ConnectionResetError; }
}
public static PythonType EOFError {
get { return PythonExceptions.EOFError; }
}
public static PythonType ImportError {
get { return PythonExceptions.ImportError; }
}
public static PythonType LookupError {
get { return PythonExceptions.LookupError; }
}
public static PythonType IndexError {
get { return PythonExceptions.IndexError; }
}
public static PythonType KeyError {
get { return PythonExceptions.KeyError; }
}
public static PythonType MemoryError {
get { return PythonExceptions.MemoryError; }
}
public static PythonType NameError {
get { return PythonExceptions.NameError; }
}
public static PythonType UnboundLocalError {
get { return PythonExceptions.UnboundLocalError; }
}
public static PythonType ReferenceError {
get { return PythonExceptions.ReferenceError; }
}
public static PythonType RuntimeError {
get { return PythonExceptions.RuntimeError; }
}
public static PythonType NotImplementedError {
get { return PythonExceptions.NotImplementedError; }
}
public static PythonType SyntaxError {
get { return PythonExceptions.SyntaxError; }
}
public static PythonType IndentationError {
get { return PythonExceptions.IndentationError; }
}
public static PythonType TabError {
get { return PythonExceptions.TabError; }
}
public static PythonType SystemError {
get { return PythonExceptions.SystemError; }
}
public static PythonType TypeError {
get { return PythonExceptions.TypeError; }
}
public static PythonType ValueError {
get { return PythonExceptions.ValueError; }
}
public static PythonType UnicodeError {
get { return PythonExceptions.UnicodeError; }
}
public static PythonType UnicodeDecodeError {
get { return PythonExceptions.UnicodeDecodeError; }
}
public static PythonType UnicodeEncodeError {
get { return PythonExceptions.UnicodeEncodeError; }
}
public static PythonType UnicodeTranslateError {
get { return PythonExceptions.UnicodeTranslateError; }
}
public static PythonType Warning {
get { return PythonExceptions.Warning; }
}
public static PythonType DeprecationWarning {
get { return PythonExceptions.DeprecationWarning; }
}
public static PythonType PendingDeprecationWarning {
get { return PythonExceptions.PendingDeprecationWarning; }
}
public static PythonType RuntimeWarning {
get { return PythonExceptions.RuntimeWarning; }
}
public static PythonType SyntaxWarning {
get { return PythonExceptions.SyntaxWarning; }
}
public static PythonType UserWarning {
get { return PythonExceptions.UserWarning; }
}
public static PythonType FutureWarning {
get { return PythonExceptions.FutureWarning; }
}
public static PythonType ImportWarning {
get { return PythonExceptions.ImportWarning; }
}
public static PythonType UnicodeWarning {
get { return PythonExceptions.UnicodeWarning; }
}
public static PythonType BytesWarning {
get { return PythonExceptions.BytesWarning; }
}
public static PythonType ResourceWarning {
get { return PythonExceptions.ResourceWarning; }
}
// *** END GENERATED CODE ***
#endregion
}
}