[pypy-commit] pypy default: Add missing method to fake objspace

rlamy pypy.commits at gmail.com
Mon Sep 30 09:54:59 EDT 2019


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: 
Changeset: r97678:50925e571213
Date: 2019-09-30 14:53 +0100
http://bitbucket.org/pypy/pypy/changeset/50925e571213/

Log:	Add missing method to fake objspace

diff --git a/pypy/objspace/fake/objspace.py b/pypy/objspace/fake/objspace.py
--- a/pypy/objspace/fake/objspace.py
+++ b/pypy/objspace/fake/objspace.py
@@ -167,6 +167,7 @@
             for w_x in list_w:
                 is_root(w_x)
         return w_some_obj()
+    newfrozenset = newset
 
     def newlist(self, list_w):
         for w_x in list_w:


More information about the pypy-commit mailing list