unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
From: Gaute Hope <eg@gaute.vetsj.com>
To: notmuch@notmuchmail.org
Subject: python bindings memory management
Date: Sun, 19 Nov 2017 16:42:17 +0100	[thread overview]
Message-ID: <1511105729.sleqpkzaf0.astroid@strange.none> (raw)

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


             reply	other threads:[~2017-11-19 15:42 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-19 15:42 Gaute Hope [this message]
2017-11-19 23:11 ` python bindings memory management David Bremner
2017-11-20 10:56   ` Gaute Hope

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://notmuchmail.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1511105729.sleqpkzaf0.astroid@strange.none \
    --to=eg@gaute.vetsj.com \
    --cc=notmuch@notmuchmail.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).