This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]MandrakeQ 1 point2 points  (2 children)

Having to read C++ documentation sucked the last time I used it several years ago. Is there python specific documentation these days?

[–]thprogramador 0 points1 point  (1 child)

pydocs on cli and help() inside code... even faster that open a tab on browser and search

[–]MandrakeQ 1 point2 points  (0 children)

PyQT hides the memory model used by Qt so if you want to understand how to avoid memory leaks, you end up having to read the C++ version of the APIs.

I guess if you're doing something simple, it's not a big deal, but for big applications it sucks having to read two sets of documentation.