コード例 #1
0
ファイル: test_debug.py プロジェクト: Darriall/pypy
 def f():
     d = {"ac": "bx"}
     mark_dict_non_null(d)
     return d
コード例 #2
0
 def f():
     d = {"ac": "bx"}
     mark_dict_non_null(d)
     return d
コード例 #3
0
ファイル: identitydict.py プロジェクト: Darriall/pypy
 def get_empty_storage(self):
     d = {}
     mark_dict_non_null(d)
     return self.erase(d)
コード例 #4
0
ファイル: dictmultiobject.py プロジェクト: charred/pypy
 def get_empty_storage(self):
     res = {}
     mark_dict_non_null(res)
     return self.erase(res)
コード例 #5
0
ファイル: identitydict.py プロジェクト: sota/pypy-old
 def get_empty_storage(self):
     d = {}
     mark_dict_non_null(d)
     return self.erase(d)