forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIPythonObject.cs
More file actions
41 lines (35 loc) · 1.34 KB
/
IPythonObject.cs
File metadata and controls
41 lines (35 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
using System;
using Microsoft.Scripting;
namespace IronPython.Runtime.Types {
/// <summary>
/// This interface is used for implementing parts of the IronPython type system. It
/// is not intended for consumption from user programs.
/// </summary>
public interface IPythonObject {
PythonDictionary Dict {
get;
}
/// <summary>
/// Thread-safe dictionary set. Returns the dictionary set or the previous value if already set or
/// null if the dictionary set isn't supported.
/// </summary>
/// <param name="dict"></param>
/// <returns></returns>
PythonDictionary SetDict(PythonDictionary dict);
/// <summary>
/// Dictionary replacement. Returns true if replaced, false if the dictionary set isn't supported.
/// </summary>
/// <param name="dict"></param>
/// <returns></returns>
bool ReplaceDict(PythonDictionary dict);
PythonType PythonType {
get;
}
void SetPythonType(PythonType newType);
object[] GetSlots();
object[] GetSlotsCreate();
}
}