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
37 lines (33 loc) · 1.19 KB
/
GenericType.cs
File metadata and controls
37 lines (33 loc) · 1.19 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
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>
[Serializable]
internal class GenericType : ClassBase
{
internal GenericType(Type tp) : base(tp)
{
}
/// <summary>
/// Implements __new__ for reflected generic types.
/// </summary>
public static NewReference tp_new(BorrowedReference tp, BorrowedReference args, BorrowedReference kw)
{
Exceptions.SetError(Exceptions.TypeError, "cannot instantiate an open generic type");
return default;
}
/// <summary>
/// Implements __call__ for reflected generic types.
/// </summary>
public static NewReference tp_call(BorrowedReference ob, BorrowedReference args, BorrowedReference kw)
{
Exceptions.SetError(Exceptions.TypeError, "object is not callable");
return default;
}
}
}