Files
codeql/python/ql/test/2/library-tests/classes/mro/C3.expected
Rasmus Wriedt Larsen 6c259e5608 Python: Temporarily accept changes in Python 2 specific MRO tests
Due to internal PR#35123 we now actually run the tests under
`python/ql/test/2/...`

These seems like a regression, since the tests state that N is ok, but A and J
should not be allowed.

For now we can accept them, so we don't block all other Python PRs
2019-11-08 13:48:21 +01:00

18 lines
651 B
Plaintext

| class A | [A, BaseException, object] |
| class B | [B, X, object] |
| class C | [C, BaseException, object] |
| class D | [D, X, object] |
| class Meta | [Meta, type, object] |
| class NewStyle | [NewStyle, object] |
| class NewStyleDerived | [NewStyleDerived, NewStyle, object] |
| class O | [O] |
| class Oddities | [Oddities, object] |
| class OldStyle | [OldStyle] |
| class OldStyleDerived | [OldStyleDerived, OldStyle] |
| class Sub | [Sub, Oddities, Unhashable, object] |
| class Unhashable | [Unhashable, object] |
| class W | [W, Y, X, object] |
| class WithMeta | [WithMeta, object] |
| class X | [X, object] |
| class Y | [Y, X, object] |