1. 19 May, 2015 1 commit
  2. 18 May, 2015 1 commit
    • Kevin Modzelewski's avatar
      Makefile fixes · 7009ec5d
      Kevin Modzelewski authored
      Mostly related to handling of building shared-library dependencies.
      The current system is getting pretty messy, of which libraries (test extension
      built for pyston/cpython, sharedmods) are pulled from which builds
      (source directory vs cmake directory) in which modes (check_ vs run_).
      
      This commit doesn't change the actual functionality but tries to just
      make it clearer what is getting built when.
      
      (also fixes a missing dependency)
      7009ec5d
  3. 17 May, 2015 4 commits
    • Kevin Modzelewski's avatar
      Merge pull request #533 from kmod/pycurl · c9590e09
      Kevin Modzelewski authored
      Add pycurl as an 'extra' test
      c9590e09
    • Kevin Modzelewski's avatar
      Add pycurl as an 'extra' test · c4618bce
      Kevin Modzelewski authored
      I don't feel like it's worth adding libcurl to our dependencies
      just so that we can test pycurl.  Let's try adding it as a
      Travis-CI-only test; I'm slightly worried that that will confuse people,
      but I think we're already pretty used to travis-ci being a more
      comprehensive test suite.
      c4618bce
    • Kevin Modzelewski's avatar
      Merge pull request #531 from kmod/multiprocessing · 4ab1cfe6
      Kevin Modzelewski authored
      Multiprocessing
      4ab1cfe6
    • Kevin Modzelewski's avatar
      Build _multiprocessing as a shared library · 46117869
      Kevin Modzelewski authored
      by adding from_cpython/setup.py.
      
      This way we can build _multiprocessing as a shared module to be
      loaded on-demand, since it's quite expensive right now for us to
      import it.
      
      CPython has a similar setup.py, but theirs is pretty large (2kloc)
      so I don't feel like we need to try copying yet.
      
      We could/should move other modules to use this strategy.
      
      I'm not 100% happy with the build system support, but we can iterate
      on that.
      46117869
  4. 16 May, 2015 2 commits
    • Kevin Modzelewski's avatar
      Fix some statchecks · 7f758ddb
      Kevin Modzelewski authored
      7f758ddb
    • Kevin Modzelewski's avatar
      Change our GC handling of weakrefs · 930a382e
      Kevin Modzelewski authored
      For weakly-referenced objects that are garbage, we end up freeing their
      attributes within that collection (assuming they are garbage as well).
      This means that these objects are in a state that is not quite dead (we
      don't want to allocate anything else in that space and clobber their
      weakreflist), and not quite alive (their attributes point to garbage
      memory).
      
      So, change the handling to finish looking at those objects in the collection
      that they become garbage, and then free them to make them properly dead.
      
      weakrefs-handling is unavoidably reentrant, but now we only have to worry
      about fully-dead (the referents) or fully-alive (the weakrefs) objects.
      930a382e
  5. 15 May, 2015 5 commits
  6. 14 May, 2015 6 commits
  7. 13 May, 2015 19 commits
  8. 12 May, 2015 2 commits