1. 04 Apr, 2016 3 commits
  2. 02 Apr, 2016 3 commits
  3. 01 Apr, 2016 4 commits
  4. 31 Mar, 2016 1 commit
  5. 29 Mar, 2016 8 commits
  6. 28 Mar, 2016 4 commits
  7. 27 Mar, 2016 3 commits
    • Jason Madden's avatar
      fix thread creation on py27 · c51a2fc5
      Jason Madden authored
      c51a2fc5
    • Jason Madden's avatar
    • Jason Madden's avatar
      Parrellize cythoncpp.py. · 82e3709a
      Jason Madden authored
      On my machine, this cuts the build time by a fourth to a third.
      
      Not ready to merge, submitting for testing on CI (esp Windows).
      
      Cython calls are threaded because they release the GIL.
      
      The most expensive part was merging results, which holds the GIL, so use
      multiprocessing for that. Pre-combine the identical results that we
      expect to get for two sets of defines to reduce the number of merges.
      
      Change internal data structures to be immutable to make debugging this
      easier (and substantially faster when pickling through multiprocessing.)
      82e3709a
  8. 25 Mar, 2016 2 commits
  9. 24 Mar, 2016 1 commit
    • Jason Madden's avatar
      Use subclass of dict for WSGI environ. · f689004a
      Jason Madden authored
      Right now, this is only used for suppressing the printing of potentially
      sensitive information, but in the future there could be other uses.
      
      This is technically not compliant with PEP3333 which specifies that the
      type(environ) must be dict, but it's not clear if that practically
      matters anymore (it looks like it might be a holdover from supporting
      Python 1.5.2 before one could subclass the builtin dict; see https://mail.python.org/pipermail/web-sig/2003-December/000394.html).
      
      Fixes #779.
      f689004a
  10. 23 Mar, 2016 6 commits
  11. 22 Mar, 2016 5 commits