10000 gh-134309: Fix premature cancellation of CI tests when multiple PRs have the same branch name by abstractedfox · Pull Request #134310 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-134309: Fix premature cancellation of CI tests when multiple PRs have the same branch name #134310

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

Merged
merged 12 commits into from
May 22, 2025
Merged
Prev Previous commit
Next Next commit
Fix trailing whitespace
  • Loading branch information
abstractedfox committed May 19, 2025
commit 33e688ac5a7d14d97fd96aa017a5d5b81789c2b4
4 changes: 2 additions & 2 deletions Lib/test/test_capi/test_bytes.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_check(self):
self.assertFalse(check(object()))
self.assertTrue(check(b''))

# CRASHES check(NULL) #PyBytes_Check() expects PyObject*
# CRASHES check(NULL)

def test_checkexact(self):
# Test PyBytes_CheckExact()
Expand All @@ -46,7 +46,7 @@ def test_checkexact(self):
self.assertFalse(check(object()))
self.assertTrue(check(b''))

# CRASHES check(NULL) #PyBytes_CheckExact() expects PyObject*
# CRASHES check(NULL)

def test_fromstringandsize(self):
# Test PyBytes_FromStringAndSize()
Expand Down
Loading
0