Пример #1
0
            public override PythonDictionary copy(CodeContext /*!*/ context)
            {
                defaultdict res = new defaultdict(context);

                res.default_factory = this.default_factory;
                res.update(context, this);
                return(res);
            }
Пример #2
0
 public override PythonDictionary copy(CodeContext/*!*/ context) {
     defaultdict res = new defaultdict(context);
     res.default_factory = this.default_factory;
     res.update(context, this);
     return res;
 }