Latest release:
KDevelop 4.5.0
Apr 26, 2013 (KDE 4.5 or higher)
Legacy release:
KDevelop 4.1.2
Jan 14, 2011 (KDE 4.4)
More:
Half a year after the first stable release, I'm happy to announce the release of kdev-python 1.5 today, which brings Python support to KDevelop 1.5. Together with 1.5, I release the second (and last) update for the 1.4 series which contains two backported crash fixes. Please refer to announcement on my blog for more information. Download links are in the full view of this article.
On the left of this image, you can see the class browser; it gives you a quick overview of all classes in your project, and their methods and attributes. By clicking on them you can easily jump to the declaration or find all occurences of a particular item.
In the code view, the tooltip shows an example of KDevelop's list content type support: by analyzing your code, it is found that the highlighted variable is a dictionary which has integers as keys and further dictionaries as values.
You can right-click any declaration and select "rename" to easily rename all (recognized) occurences of that declaration project-wide. This works for local variables, as well as for class members, member functions, classes, ...
When defining a new function in a class, you're presented a list of possible "magic functions" to implement.
As for the other languages supported by KDevelop, you can use the quickopen plugin to search any function or class declaration in your whole project as-you-type.
This screenshots shows that KDevelop can guess the type of an object accurately even in a complex scenario.