Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #8319

Re: performance critical Python features

References <BANLkTimZk6C4PECy6KNrQ91fWNQG37Mgjw@mail.gmail.com>
Date 2011-06-24 04:00 +1000
Subject Re: performance critical Python features
From Chris Angelico <rosuav@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.337.1308852020.1164.python-list@python.org> (permalink)

Show all headers | View raw


On Fri, Jun 24, 2011 at 2:58 AM, Eric Snow <ericsnowcurrently@gmail.com> wrote:
> So, which are the other pieces of Python that really need the heavy
> optimization and which are those that don't?  Thanks.
>

Things that are executed once (imports, class/func definitions) and
things that primarily wait for user input don't need to be optimized.
Things that get executed millions of times a second MAY need to be
optimized.

ChrisA
(The keyword MAY is to be interpreted as per RFC 2119.)

Back to comp.lang.python | Previous | NextNext in thread | Find similar | Unroll thread


Thread

Re: performance critical Python features Chris Angelico <rosuav@gmail.com> - 2011-06-24 04:00 +1000
  Re: performance critical Python features Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2011-06-24 00:07 +0000
    Re: performance critical Python features Chris Angelico <rosuav@gmail.com> - 2011-06-24 12:08 +1000

csiph-web