forked from pythonnet/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerictype.cs
More file actions
36 lines (32 loc) · 1.1 KB
/
generictype.cs
File metadata and controls
36 lines (32 loc) · 1.1 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
using System;
namespace Python.Runtime
{
/// <summary>
/// Implements reflected generic types. Note that the Python behavior
/// is the same for both generic type definitions and constructed open
/// generic types. Both are essentially factories for creating closed
/// types based on the required generic type parameters.
/// </summary>
internal class GenericType : ClassBase
{
internal GenericType(Type tp) : base(tp)
{
}
/// <summary>
/// Implements __new__ for reflected generic types.
/// </summary>
public static IntPtr tp_new(IntPtr tp, IntPtr args, IntPtr kw)
{
Exceptions.SetError(Exceptions.TypeError, "cannot instantiate an open generic type");
return IntPtr.Zero;
}
/// <summary>
/// Implements __call__ for reflected generic types.
/// </summary>
public static IntPtr tp_call(IntPtr ob, IntPtr args, IntPtr kw)
{
Exceptions.SetError(Exceptions.TypeError, "object is not callable");
return IntPtr.Zero;
}
}
}