8000 Stackless issue #70: stackless specific handling of C-return values · akruis/cpython@ed7a02f · GitHub
[go: up one dir, main page]

Skip to content

Commit ed7a02f

Browse files
author
Anselm Kruis
committed
Stackless issue python#70: stackless specific handling of C-return values
Fix building with STACKLESS_OFF https://bitbucket.org/stackless-dev/stackless/issues/70 (grafted from 224fa4eb27504dfdb396d901d6d1623e7f441f22)
1 parent cc52455 commit ed7a02f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Stackless/core/stackless_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ PyObject * slp_get_channel_callback(void);
558558
#define STACKLESS_ASSERT() assert(1)
559559

560560
#define STACKLESS_RETVAL(obj) (obj)
561-
#define STACKLESS_ASSERT_UNWINDING_VALUE_IS_NOT(val) assert(1)
561+
#define STACKLESS_ASSERT_UNWINDING_VALUE_IS_NOT(obj, val) assert(1)
562562

563563
#define STACKLESS_DECLARE_METHOD(type, meth)
564564

0 commit comments

Comments
 (0)
0