... I completely missed that one. Thanks for the heads up. But this bring an issue with IronPython 2.7 as I just tried it out. And It seems I missed a line update in the rpyc\core\__init__.py There is code specific for IronPython there. With this last version these lines are useless and in fact returns an error. We can drop those all together.
The rest of the changes I made are still valid. https://github.com/delattj/rpyc/commit/71cbede0143cbfe2f60c8f4a7ef36fdaf894e092 On Mar 23, 10:31 am, David Moss <[email protected]> wrote: > Or recommend the 2.7.x release which now has it built in. > > On 23 Mar 2011, at 13:24, delattj <[email protected]> wrote: > > > > > > > > > About IronPython, it would help people to get rpyc running properly if > > we add somewhere in the doc/readme/changelog (I don't know what's > > best) that they need a zlib module compliant to the standard Python > > distribution which is not included in IronPython. > > I tested rpyc with this one:https://bitbucket.org/jdhardy/ironpythonzlib > > Which require to add this line at the beginning of the script: > > import clr > > clr.AddReference("IronPython.Zlib") > > > (this is very standard for IronPython, it's a way to load Managed code > > libraries) > > > You may add my last name to the contributors list.
