8000 gh-117139: Add header for tagged pointers by Fidget-Spinner · Pull Request #118330 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-117139: Add header for tagged pointers #118330

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 19 commits into from
Apr 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

8000
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
try fix Windows for real this time
Co-Authored-By: Sam Gross <655866+colesbury@users.noreply.github.com>
  • Loading branch information
Fidget-Spinner and colesbury committed Apr 30, 2024
commit 6bf6d440142b8226d92d2a4b71dc748cc3ab4bb6
8F4A
2 changes: 1 addition & 1 deletion Include/internal/pycore_stackref.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ typedef union {
uintptr_t bits;
} _PyStackRef;

static const _PyStackRef Py_STACKREF_NULL = ((_PyStackRef) { .bits = 0 });
static const _PyStackRef Py_STACKREF_NULL = { .bits = 0 };

#ifdef Py_GIL_DISABLED
#define Py_TAG_DEFERRED (1)
Expand Down
0