Re: [Python-Dev] Investigating Python memory footprint of one real Web application

2017-01-23 Thread INADA Naoki
On Fri, Jan 20, 2017 at 8:52 PM, Ivan Levkivskyi wrote: > On 20 January 2017 at 11:49, INADA Naoki wrote: >> >> * typing may increase memory footprint, through functions >> __attributes__ and abc. >>* Can we add option to remove or lazy evaluate __attributes__ ? > > > This idea already appear

Re: [Python-Dev] Investigating Python memory footprint of one real Web application

2017-01-23 Thread Victor Stinner
2017-01-23 12:25 GMT+01:00 INADA Naoki : > I gave advice to use 'List[User]' instead of List[User] to the team of > the project, > if the team think RAM usage or boot speed is important. I would prefer a Python option (ex: "-o noannotation" command line option) to opt-out annotations rather than h

Re: [Python-Dev] Investigating Python memory footprint of one real Web application

2017-01-23 Thread INADA Naoki
On Mon, Jan 23, 2017 at 8:33 PM, Victor Stinner wrote: > 2017-01-23 12:25 GMT+01:00 INADA Naoki : >> I gave advice to use 'List[User]' instead of List[User] to the team of >> the project, >> if the team think RAM usage or boot speed is important. > > I would prefer a Python option (ex: "-o noannot

Re: [Python-Dev] Hello World

2017-01-23 Thread Brett Cannon
In case you haven't already done so, Ramsey, please consider reading https://cpython-devguide.readthedocs.io if you want to contribute to the project. You can also subscribe to the core-mentorship mailing list which is specifically for people who want to help out but haven't done to previously. On

Re: [Python-Dev] Investigating Python memory footprint of one real Web application

2017-01-23 Thread Brett Cannon
On Mon, 23 Jan 2017 at 04:27 INADA Naoki wrote: > On Mon, Jan 23, 2017 at 8:33 PM, Victor Stinner > wrote: > > 2017-01-23 12:25 GMT+01:00 INADA Naoki : > >> I gave advice to use 'List[User]' instead of List[User] to the team of > >> the project, > >> if the team think RAM usage or boot speed is

Re: [Python-Dev] Investigating Python memory footprint of one real Web application

2017-01-23 Thread Lukasz Langa
> On Jan 23, 2017, at 12:10 PM, Brett Cannon wrote: > > > > On Mon, 23 Jan 2017 at 04:27 INADA Naoki > wrote: > On Mon, Jan 23, 2017 at 8:33 PM, Victor Stinner > mailto:victor.stin...@gmail.com>> wrote: > > 2017-01-23 12:25 GMT+01:00 INADA Naoki >

Re: [Python-Dev] Hello World

2017-01-23 Thread Raymond Hettinger
> On Jan 22, 2017, at 6:31 PM, Ramsey D'silva wrote: > > Nice to meet all of you'll. I'm excited to learn and hopefully contribute > someday. Welcome aboard. Raymond ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/

Re: [Python-Dev] Hello World

2017-01-23 Thread Ramsey D'silva
Thank you Brett. I will be doing as much reading as I can before seeking a mentor. I have also subscribed to that mailing list. On Mon, Jan 23, 2017 at 2:59 PM, Brett Cannon wrote: > In case you haven't already done so, Ramsey, please consider reading > https://cpython-devguide.readthedocs.io if

Re: [Python-Dev] Hello World

2017-01-23 Thread Ramsey D'silva
Thank you! On Mon, Jan 23, 2017 at 4:12 PM, Raymond Hettinger < raymond.hettin...@gmail.com> wrote: > > > On Jan 22, 2017, at 6:31 PM, Ramsey D'silva > wrote: > > > > Nice to meet all of you'll. I'm excited to learn and hopefully > contribute someday. > > Welcome aboard. > > > Raymond __

Re: [Python-Dev] Investigating Python memory footprint of one real Web application

2017-01-23 Thread INADA Naoki
>> So basically the equivalent of -OO for docstrings? Maybe this can be the >> final motivator for some of us to come up with a design to generalize -O or >> something as it keeps coming up. > Yes, please. We've talked about generalizing this for years now. FWIW, I know > of projects that run wi