mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
Change plugin config file format (from ini to json)
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -384,7 +384,6 @@ namespace Python.Runtime {
|
||||
/// </remarks>
|
||||
|
||||
public static PythonException GetException() {
|
||||
// TODO: implement this.
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -88,7 +88,6 @@ namespace Python.Runtime {
|
||||
);
|
||||
}
|
||||
|
||||
// hack for now... fix for 1.0
|
||||
//return TypeManager.CreateSubType(args);
|
||||
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -37,11 +37,6 @@ namespace Python.Runtime {
|
||||
}
|
||||
|
||||
|
||||
// TODO: add all of the PyNumber_XXX methods.
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user