forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxxsubtype.cs
More file actions
97 lines (80 loc) · 2.81 KB
/
xxsubtype.cs
File metadata and controls
97 lines (80 loc) · 2.81 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
// 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 System;
using System.Collections.Generic;
using Microsoft.Scripting;
using IronPython.Runtime;
using IronPython.Runtime.Operations;
using IronPython.Runtime.Types;
[assembly: PythonModule("xxsubtype", typeof(IronPython.Modules.xxsubtype))]
namespace IronPython.Modules {
/// <summary>
/// Samples on how to subtype built-in types from C#
/// </summary>
public static class xxsubtype {
public const string __doc__ = "Provides samples on how to subtype built-in types from .NET.";
[PythonType]
public class spamlist : PythonList {
public spamlist()
: base() {
}
public spamlist(object sequence)
: base(sequence) {
}
private int _state;
/// <summary>
/// an int variable for demonstration purposes
/// </summary>
public int state {
get {
return _state;
}
set {
_state = value;
}
}
public int getstate() {
return state;
}
public void setstate(int value) {
state = value;
}
public static object staticmeth([ParamDictionary]IDictionary<object, object> dict, params object[] args) {
return PythonTuple.MakeTuple(null, PythonTuple.MakeTuple(args), dict);
}
[ClassMethod]
public static object classmeth(PythonType cls, [ParamDictionary]IDictionary<object, object> dict, params object[] args) {
return PythonTuple.MakeTuple(cls, PythonTuple.MakeTuple(args), dict);
}
}
[PythonType]
public class spamdict : PythonDictionary {
private int _state;
/// <summary>
/// an int variable for demonstration purposes
/// </summary>
public int state {
get {
return _state;
}
set {
_state = value;
}
}
public int getstate() {
return state;
}
public void setstate(int value) {
state = value;
}
}
public static double bench(CodeContext context, object x, string name) {
double start = PythonTime.clock();
for (int i = 0; i < 1001; i++) {
PythonOps.GetBoundAttr(context, x, name);
}
return PythonTime.clock() - start;
}
}
}