Re: About Understanding of source code

2013-01-07 Thread Rohan Jain
I would suggest you to start by looking into the contrib apps. This would give you great insights onto writing Django apps. Now that you are already in the source code, you can stumble into the rest of it or even the core. This way has been particularly helpful to me. Also, you might want to look

Re: About Understanding of source code

2013-01-07 Thread Diederik van der Boor
Hi, What I find really valuable is using a editor/tool that allows you to jump to class/method/function definitions. I'm using PyCharm for Django development and it really helps me to dive into Django code (Cmd+Click on a symbol). Greetings, Diederik Op 7 jan. 2013, om 05:57 heeft Mayur Patil

Possible memory leak with CBV's ?

2013-01-07 Thread Andrey Antukh
I've been experimenting, and I found a strange behavior. In the View class if I define the __ del__ method, and is never executed. In instances of other classes, which are members of View, feel the same behavior (eg HttpRequest is not removed by a garbage collector). The fault lies primarily in th

Re: Possible memory leak with CBV's ?

2013-01-07 Thread Anssi Kääriäinen
On 7 tammi, 16:06, Andrey Antukh wrote: > I've been experimenting, and I found a strange behavior. In the View class > if I define the __ del__ method, and is never executed. In instances of > other classes, which are members of View, feel the same behavior (eg > HttpRequest is not removed by a ga

Re: Possible memory leak with CBV's ?

2013-01-07 Thread Andrey Antukh
Thank you very much for the great explanation. I'll try to avoid using __del__ methods whenever possible. Andrey 2013/1/7 Anssi Kääriäinen > Avoid __del__ if possible, -- Andrey Antukh - Андрей Антух - http://www.niwi.be/about.html http://www.kaleidos.net/A5694F/ "Linux is for people who

Re: Tutorials

2013-01-07 Thread Tim Graham
Hi Daniele, I think additional tutorials would be welcome. My suggestion, before you dive in and start writing, would be to create a ticket with an outline of the proposed tutorial. That will give the community a chance to take a look and provide feedback and suggestions before you spend time

#14633 - organization of settings docs

2013-01-07 Thread Tim Graham
I'd appreciate feedback on #14633- "Organize settings reference docs". So far I've broken out the settings for each contrib app into their own sections. The one comment on the pull request suggests further breaking up the settings listed in the "Core