File tree 2 files changed +0
-8
lines changed 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ public PyInt(int value) : base(FromInt(value))
69
69
/// <remarks>
70
70
/// Creates a new Python int from a uint32 value.
71
71
/// </remarks>
72
- [ CLSCompliant ( false ) ]
73
72
public PyInt ( uint value ) : base ( FromLong ( value ) )
74
73
{
75
74
}
@@ -99,7 +98,6 @@ private static IntPtr FromLong(long value)
99
98
/// <remarks>
100
99
/// Creates a new Python int from a uint64 value.
101
100
/// </remarks>
102
- [ CLSCompliant ( false ) ]
103
101
public PyInt ( ulong value ) : base ( FromLong ( ( long ) value ) )
104
102
{
105
103
}
@@ -122,7 +120,6 @@ public PyInt(short value) : this((int)value)
122
120
/// <remarks>
123
121
/// Creates a new Python int from a uint16 value.
124
122
/// </remarks>
125
- [ CLSCompliant ( false ) ]
126
123
public PyInt ( ushort value ) : this ( ( int ) value )
127
124
{
128
125
}
@@ -145,7 +142,6 @@ public PyInt(byte value) : this((int)value)
145
142
/// <remarks>
146
143
/// Creates a new Python int from an sbyte value.
147
144
/// </remarks>
148
- [ CLSCompliant ( false ) ]
149
145
public PyInt ( sbyte value ) : this ( ( int ) value )
150
146
{
151
147
}
Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ public PyLong(int value) : base(FromInt(value))
69
69
/// <remarks>
70
70
/// Creates a new PyLong from a uint32 value.
71
71
/// </remarks>
72
- [ CLSCompliant ( false ) ]
73
72
public PyLong ( uint value ) : base ( FromInt ( ( int ) value ) )
74
73
{
75
74
}
@@ -105,7 +104,6 @@ private static IntPtr FromULong(ulong value)
105
104
/// <remarks>
106
105
/// Creates a new PyLong from a uint64 value.
107
106
/// </remarks>
108
- [ CLSCompliant ( false ) ]
109
107
public PyLong ( ulong value ) : base ( FromULong ( value ) )
110
108
{
111
109
}
@@ -128,7 +126,6 @@ public PyLong(short value) : base(FromInt((int)value))
128
126
/// <remarks>
129
127
/// Creates a new PyLong from an uint16 value.
130
128
/// </remarks>
131
- [ CLSCompliant ( false ) ]
132
129
public PyLong ( ushort value ) : base ( FromInt ( ( int ) value ) )
133
130
{
134
131
}
@@ -151,7 +148,6 @@ public PyLong(byte value) : base(FromInt((int)value))
151
148
/// <remarks>
152
149
/// Creates a new PyLong from an sbyte value.
153
150
/// </remarks>
154
- [ CLSCompliant ( false ) ]
155
151
public PyLong ( sbyte value ) : base ( FromInt ( ( int ) value ) )
156
152
{
157
153
}
You can’t perform that action at this time.
0 commit comments