mirror of
https://github.com/boostorg/python.git
synced 2026-01-19 16:32:16 +00:00
Compare commits
3 Commits
boost-1.88
...
python313
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b7a8ccc85 | ||
|
|
3e7be69e1e | ||
|
|
cbdf1ce2a1 |
2
.github/workflows/test-osx.yml
vendored
2
.github/workflows/test-osx.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: [3.8.10]
|
||||
python-version: ['3.8.10', '3.12']
|
||||
cxx: [clang++]
|
||||
std: [c++11, c++14] # TODO: c++17 is failing !
|
||||
|
||||
|
||||
@@ -222,7 +222,13 @@ namespace
|
||||
, char const* ref_type)
|
||||
{
|
||||
handle<> holder(source);
|
||||
if (source->ob_refcnt <= 1)
|
||||
if (
|
||||
#if PY_VERSION_HEX < 0x03090000
|
||||
source->ob_refcnt
|
||||
#else
|
||||
Py_REFCNT(source)
|
||||
#endif
|
||||
<= 1)
|
||||
{
|
||||
handle<> msg(
|
||||
#if PY_VERSION_HEX >= 0x3000000
|
||||
|
||||
Reference in New Issue
Block a user