예제 #1
0
파일: Set.cs 프로젝트: zzkongfu/ironpython3
        public PythonTuple __reduce__()
        {
            var type = GetType() != typeof(SetCollection) ? DynamicHelpers.GetPythonType(this) : TypeCache.Set;

            return(SetStorage.Reduce(_items, type));
        }