Giter Site home page Giter Site logo

Comments (4)

ximion avatar ximion commented on June 30, 2024

This is a really weird issue... Apparently, the token_cache hash table is dead. This can only happen though, if the AsComponent which owns it is also dead.
And that should never happen, unless Python manually kills the objects inside the result array, which it shouldn't do (the result array is marked as transfer full, which means that the array itself should be freed, not its contents).

from appstream.

ximion avatar ximion commented on June 30, 2024

Oh crap! Apparently Python3 treats a GPtrArray as a full-blown container type, meaning that it will free its contents... So, the annotation there is wrong, it should only mark the container as transferred.

from appstream.

ximion avatar ximion commented on June 30, 2024

The following code works now with Git master:

#!/usr/bin/env python3

import gi
gi.require_version('AppStream', '1.0')
from gi.repository import AppStream

pool = AppStream.Pool()
pool.load()

pool.search("gedit")
res = pool.search("gedit") # No more crashes!

for cpt in res:
    print(cpt.get_id())

I will probably backport this patch to the AppStream version in Debian Unstable / Ubuntu Yakkety, but both should ship with AppStream 0.10 or higher anyway :)

Thank you for reporting this issue!
(and I wonder whether it would be possible to have a testsuite for Python stuff as well)

from appstream.

ximion avatar ximion commented on June 30, 2024

Fixed package is uploaded to Debian and will hopefully also land in Ubuntu soonish :-)

from appstream.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.