[pypy-commit] pypy default: cpyext: add PyFrozenSet_Type

amauryfa noreply at buildbot.pypy.org
Thu Feb 23 21:19:48 CET 2012


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: 
Changeset: r52816:7bf5725d49fd
Date: 2012-02-23 00:20 +0100
http://bitbucket.org/pypy/pypy/changeset/7bf5725d49fd/

Log:	cpyext: add PyFrozenSet_Type

diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py
--- a/pypy/module/cpyext/api.py
+++ b/pypy/module/cpyext/api.py
@@ -385,6 +385,7 @@
         "Tuple": "space.w_tuple",
         "List": "space.w_list",
         "Set": "space.w_set",
+        "FrozenSet": "space.w_frozenset",
         "Int": "space.w_int",
         "Bool": "space.w_bool",
         "Float": "space.w_float",


More information about the pypy-commit mailing list