We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01157ba commit 9d0bd9cCopy full SHA for 9d0bd9c
src/runtime/propertyobject.cs
@@ -1,6 +1,5 @@
1
using System;
2
using System.Reflection;
3
-using System.Security.Permissions;
4
5
namespace Python.Runtime
6
{
@@ -15,7 +14,6 @@ internal class PropertyObject : ExtensionType
15
14
private MaybeMethodInfo getter;
16
private MaybeMethodInfo setter;
17
18
- [StrongNameIdentityPermission(SecurityAction.Assert)]
19
public PropertyObject(PropertyInfo md)
20
21
getter = md.GetGetMethod(true);
0 commit comments