Lines Matching +full:pypy +full:- +full:c
1 # -*- coding: utf-8 -*-
81 get_value(self: m.UserType) -> int
91 new_instance() -> m.class_.NoConstructor
99 """Tests that a properly qualified name is set in __qualname__ (even in pre-3.3, where we
107 __init__(self: m.class_.NestBase) -> None
113 g(self: m.class_.NestBase, arg0: m.class_.NestBase.Nested) -> None
119 __init__(self: m.class_.NestBase.Nested) -> None
125 …class_.NestBase.Nested, arg0: int, arg1: m.class_.NestBase, arg2: m.class_.NestBase.Nested) -> None
131 …(self: m.class_.NestBase.Nested, a: int, b: m.class_.NestBase, c: m.class_.NestBase.Nested) -> None
162 1. (arg0: m.class_.Dog) -> str
222 'generic_type: type ".*MismatchDerived1" does not have a non-default '
230 'generic_type: type ".*MismatchDerived2" has a non-default holder type '
256 """Tests that class-specific operator new/delete functions are invoked"""
276 c = m.AliasedHasOpNewDelSize()
278 assert capture == ("C new " + sz_noalias + "\n" + "C new " + sz_alias + "\n")
297 del c
301 assert capture == ("C delete " + sz_noalias + "\n" + "C delete " + sz_alias + "\n")
312 class C(m.ProtectedB): class
319 c = C()
320 assert c.foo() == 0
324 """ Tests that simple POD classes can be constructed using C++11 brace initialization """
329 # Tests that a non-simple class doesn't get brace initialization (if the
336 @pytest.mark.xfail("env.PYPY")
386 # https://foss.heptapod.net/pypy/pypy/-/issues/2742
387 @pytest.mark.xfail("env.PYPY")
397 # https://foss.heptapod.net/pypy/pypy/-/issues/2742
398 @pytest.mark.xfail("env.PYPY")
421 # `Py_TYPE(self) == Py_TYPE(it->second)` will still succeed, even though