unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* python bindings memory management
@ 2017-11-19 15:42 Gaute Hope
  2017-11-19 23:11 ` David Bremner
  0 siblings, 1 reply; 3+ messages in thread
From: Gaute Hope @ 2017-11-19 15:42 UTC (permalink / raw)
  To: notmuch

Hi,

when writing this small script [0][1] using the notmuch python bindings I 
had to manually delete the python objects in the right order. Otherwise 
it segfaults when exiting, presumably because memory dependencies / 
cleanup isn't done correctly when the Python GC gets going. Essentially 
I have to delete the objects in the order of their dependency:

```
  db = notmuch.Database()
  q = db.create_query ("some query")
  q.set_sort (notmuch.Query.SORT.OLDEST_FIRST) # probably not necessary
  msgs = q.search_messages ()


  for m in msgs:
    pass

  # remove these to get segfault
  del m
  del msgs
  del q

```

Regards, Gaute

[0] https://gist.github.com/gauteh/de546cb143ebae4a489a482a05ab4beb
[1] id:1507537566.y6qjbg4xoq.astroid@strange.none


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-11-20 10:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-19 15:42 python bindings memory management Gaute Hope
2017-11-19 23:11 ` David Bremner
2017-11-20 10:56   ` Gaute Hope

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).