Commit 84b2c67d authored by Dylan Trotter's avatar Dylan Trotter

Add MemoryErrorType.

parent 2bc50a44
...@@ -44,6 +44,8 @@ var ( ...@@ -44,6 +44,8 @@ var (
KeyErrorType = newSimpleType("KeyError", LookupErrorType) KeyErrorType = newSimpleType("KeyError", LookupErrorType)
// LookupErrorType corresponds to the Python type 'LookupError'. // LookupErrorType corresponds to the Python type 'LookupError'.
LookupErrorType = newSimpleType("LookupError", StandardErrorType) LookupErrorType = newSimpleType("LookupError", StandardErrorType)
// MemoryErrorType corresponds to the Python type 'MemoryError'.
MemoryErrorType = newSimpleType("MemoryError", StandardErrorType)
// NameErrorType corresponds to the Python type 'NameError'. // NameErrorType corresponds to the Python type 'NameError'.
NameErrorType = newSimpleType("NameError", StandardErrorType) NameErrorType = newSimpleType("NameError", StandardErrorType)
// NotImplementedErrorType corresponds to the Python type // NotImplementedErrorType corresponds to the Python type
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment