Skip to content

Commit 1df75ea

Browse files
committed
remove remoting
1 parent ec424bb commit 1df75ea

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ This version improves performance on benchmarks significantly compared to 2.3.
5757
`Obsolete`, should never have been `public` in the first place. They also
5858
don't necessarily return a result that matches the `platform` module's.
5959
- Unconditionally depend on `pycparser` for the interop module generation
60+
- Removed .NET remoting support
6061

6162
### Fixed
6263

src/runtime/converter.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -162,15 +162,7 @@ internal static IntPtr ToPython(object value, Type type)
162162
var pyderived = value as IPythonDerivedType;
163163
if (null != pyderived)
164164
{
165-
#if NETSTANDARD
166165
return ClassDerivedObject.ToPython(pyderived);
167-
#else
168-
// if object is remote don't do this
169-
if (!System.Runtime.Remoting.RemotingServices.IsTransparentProxy(pyderived))
170-
{
171-
return ClassDerivedObject.ToPython(pyderived);
172-
}
173-
#endif
174166
}
175167

176168
// hmm - from Python, we almost never care what the declared

0 commit comments

Comments
 (0)