Change plugin config file format (from ini to json)

This commit is contained in:
qianlifeng
2014-03-01 15:42:33 +08:00
parent 1dde832e31
commit fce020f4dd
40 changed files with 159 additions and 145 deletions

View File

@@ -82,7 +82,6 @@ namespace Python.Runtime {
//====================================================================
public static IntPtr tp_call(IntPtr ob, IntPtr args, IntPtr kw) {
// todo: add fast type check!
IntPtr pytype = Runtime.PyObject_TYPE(ob);
DelegateObject self = (DelegateObject)GetManagedObject(pytype);
CLRObject o = GetManagedObject(ob) as CLRObject;

View File

@@ -384,7 +384,6 @@ namespace Python.Runtime {
/// </remarks>
public static PythonException GetException() {
// TODO: implement this.
return null;
}

View File

@@ -330,7 +330,6 @@ namespace Python.Runtime {
public static int ValidVersionTag = (1 << 19);
public static int IsAbstract = (1 << 20);
public static int HaveNewBuffer = (1 << 21);
// TODO: Implement FastSubclass functions
public static int IntSubclass = (1 << 23);
public static int LongSubclass = (1 << 24);
public static int ListSubclass = (1 << 25);

View File

@@ -88,7 +88,6 @@ namespace Python.Runtime {
);
}
// hack for now... fix for 1.0
//return TypeManager.CreateSubType(args);

View File

@@ -17,7 +17,6 @@ namespace Python.Runtime {
// Implements a Python type that represents a CLR method. Method objects
// support a subscript syntax [] to allow explicit overload selection.
//========================================================================
// TODO: ForbidPythonThreadsAttribute per method info
internal class MethodObject : ExtensionType {

View File

@@ -37,11 +37,6 @@ namespace Python.Runtime {
}
// TODO: add all of the PyNumber_XXX methods.
}
}