Browse Source

add python.lib.Object

Simon Krajewski 11 years ago
parent
commit
04ad5b31dd
1 changed files with 8 additions and 0 deletions
  1. 8 0
      std/python/lib/Object.hx

+ 8 - 0
std/python/lib/Object.hx

@@ -0,0 +1,8 @@
+package python.lib;
+
+import python.lib.Dict;
+
+@:native("object")
+extern class Object {
+	public var __dict__:Dict<String, Dynamic>;
+}