Skip to content
Snippets Groups Projects
  1. Jul 02, 2017
  2. Jul 01, 2017
  3. Jun 30, 2017
  4. Jun 29, 2017
    • Damien George's avatar
    • Damien George's avatar
      py/objnamedtuple: Simplify and remove use of alloca building namedtuple. · 265500c5
      Damien George authored
      Prior to this patch there were 2 paths for creating the namedtuple, one for
      when no keyword args were passed, and one when there were keyword args.
      And alloca was used in the keyword-arg path to temporarily create the array
      of elements for the namedtuple, which would then be copied to a
      heap-allocated object (the namedtuple itself).
      
      This patch simplifies the code by combining the no-keyword and keyword
      paths, and removing the need for the alloca by constructing the namedtuple
      on the heap before populating it.
      
      Heap usage in unchanged, stack usage is reduced, use of alloca is removed,
      and code size is not increased and is actually reduced by between 20-30
      bytes for most ports.
      265500c5
  5. Jun 28, 2017
  6. Jun 27, 2017
  7. Jun 26, 2017
    • Paul Sokolovsky's avatar
    • Paul Sokolovsky's avatar
      docs: Move all ports docs to the single ToC. · 748f493f
      Paul Sokolovsky authored
      Previously, only "selected chapters" were shown in left-pane ToC (of
      Read The Docs theme). These chapters were selected out of order. The
      rest of chapters were hidden beyond "Documentation Contents" pseudo-
      chapter. This arguably led only to confusion, as many people probably
      never tried to open that pseudo-chapter, and those who did, were
      confused. Such organization is even worse for PDF output, causing
      chapters go in mix-mashed order.
      
      So, instead move to single clean ToC. This will allow readers of HTML
      to have access to any doc content at their fingertips (and straight
      before their eyes), and will allow to finally have clean PDF docs.
      748f493f
Loading