8000 gh-97588: Failing tests to demonstrate the issue by matthiasgoergens · Pull Request #97589 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-97588: Failing tests to demonstrate the issue #97589

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 18 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Mention the issue
  • Loading branch information
matthiasgoergens committed Sep 30, 2022
commit 3a03cb8183200417b56ae4fd31ab9fd9b68c4a2f
4 changes: 2 additions & 2 deletions Lib/test/test_ctypes/test_bitfields.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ class X(Structure):
else:
self.assertEqual(sizeof(X), sizeof(c_int) * 2)

@unittest.expectedFailure
@unittest.expectedFailure # gh-97588
def test_mixed_5(self):
class X(Structure):
_fields_ = [
Expand All @@ -247,7 +247,7 @@ class X(Structure):
a.B = 1
self.assertEqual(1, a.B)

@unittest.expectedFailure
@unittest.expectedFailure # gh-97588
def test_mixed_6(self):
class X(Structure):
_fields_ = [
Expand Down
0