Skip to content

Commit

Permalink
Stackless issue python#70: stackless specific handling of C-return va…
Browse files Browse the repository at this point in the history
…lues

Fix building with STACKLESS_OFF

https://bitbucket.org/stackless-dev/stackless/issues/70
(grafted from 224fa4eb27504dfdb396d901d6d1623e7f441f22)
  • Loading branch information
Anselm Kruis committed Nov 20, 2016
1 parent cc52455 commit ed7a02f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Stackless/core/stackless_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ PyObject * slp_get_channel_callback(void);
#define STACKLESS_ASSERT() assert(1)

#define STACKLESS_RETVAL(obj) (obj)
#define STACKLESS_ASSERT_UNWINDING_VALUE_IS_NOT(val) assert(1)
#define STACKLESS_ASSERT_UNWINDING_VALUE_IS_NOT(obj, val) assert(1)

#define STACKLESS_DECLARE_METHOD(type, meth)

Expand Down

0 comments on commit ed7a02f

Please sign in to comment.