Skip to content

Commit

Permalink
Merge pull request #263 from mattip/pypy3.10-2
Browse files Browse the repository at this point in the history
Another fix for PyPy
  • Loading branch information
mattip authored Sep 26, 2024
2 parents c97035b + a5e57a3 commit d0760c2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/_vmprof.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@
#include "vmprof_common.h"


#if PY_VERSION_HEX >= 0x030b00f0 /* >= 3.11 */
#include "internal/pycore_frame.h"
#include "populate_frames.h"
#ifndef RPYTHON_VMPROF
#if PY_VERSION_HEX >= 0x030b00f0 /* >= 3.11 */
#include "internal/pycore_frame.h"
#include "populate_frames.h"
#endif
#endif

static destructor Original_code_dealloc = 0;
Expand Down

0 comments on commit d0760c2

Please sign in to comment.