8000 gh-106529: Cleanups split off gh-112134 by gvanrossum · Pull Request #112214 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-106529: Cleanups split off gh-112134 #112214

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 6 commits into from
Nov 17, 2023
Merged
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
Double max trace length to 256
  • Loading branch information
gvanrossum committed Nov 17, 2023
commit 31d815f29d670bdf8696a5917ecfd28d33a7ee2c
2 changes: 1 addition & 1 deletion Include/internal/pycore_uops.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extern "C" {

#include "pycore_frame.h" // _PyInterpreterFrame

#define _Py_UOP_MAX_TRACE_LENGTH 128
#define _Py_UOP_MAX_TRACE_LENGTH 256

typedef struct {
uint16_t opcode;
Expand Down
0