[3.6] bpo-30854: Fix compile error when --without-threads (GH-2581) (… · python/cpython@e3a0ff0 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit e3a0ff0
authored and
committed
File tree
2 files changed
lines changed
2 files changed
lines changed
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
1 | +Fix compile error when compiling --without-threads. | |
2 | +Patch by Masayuki Yamamoto. |
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -621,7 +621,7 @@ Py_MakePendingCalls(void) | ||
621 | 621 | arg = pendingcalls[i].arg; |
622 | 622 | pendingfirst = (i + 1) % NPENDINGCALLS; |
623 | 623 | if (func(arg) < 0) { |
624 | - goto error: | |
624 | + goto error; | |
625 | 625 | } |
626 | 626 | } |
627 | 627 | busy = 0; |