Changes between Initial Version and Version 1 of Ticket #13447, comment 22
- Timestamp:
- 09/16/12 16:39:22 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13447, comment 22
initial v1 34 34 sig_on_count() 35 35 }}} 36 so it happens when doctesting line 1923. These are probably errors encountered during a dealloc, so it might be happening in a garbage collection. It could also be a `WeakValueDict` deletion callback that's trying to do a comparison that fails. Googling shows that you've asked about that exact error message on `cython-users` on 27 January, 2012, so if you solved the bug that led to that question then, perhaps you can also solve this one. It could also be a straight memory corruption. 36 so it happens when doctesting line 1923. These are probably errors encountered during a dealloc, so it might be happening in a garbage collection. It could also be a `WeakValueDict` deletion callback that's trying to do a comparison that fails. Googling shows that you've asked about that exact error message on `cython-users` on 27 January, 2012, so if you solved the bug that led to that question then, perhaps you can also solve this one. It could also be a straight memory corruption. ['''edit''':] OK that was on #11521. You didn't really find that error. You just made it go away by inserting a garbage collection. The good news is that this makes it not so likely that the patch here is causing a new memory corruption. It's more likely a lingering issue that once again gets triggered.