Example #1
0
 public BuiltinNamespace(PythonType pythonType, ProjectState projectState)
 {
     // TODO: Complete member initialization
     _type = pythonType;
     _dict = new LazyDotNetDict(_type, projectState, true);
 }
Example #2
0
 public BuiltinNamespace(LazyDotNetDict dict)
 {
     _dict = dict;
 }