milibopp / obsub

Small python module that implements the observer pattern via a decorator.
Other
12 stars 3 forks source link

Fix manual garbage collection in tests for Python 2.5 and 2.6 #10

Closed milibopp closed 11 years ago

milibopp commented 11 years ago

The Travis CI build for Python 2.5 and 2.6 fail because the return value of gc.collect is not correct. This probably has to do something with a change in implementation. The return value should be ignored, since it does not have any effect on the execution.