1. 11 Feb, 2015 4 commits
  2. 10 Feb, 2015 3 commits
    • Kevin Modzelewski's avatar
      Call fclose after parsing a file · 528c0268
      Kevin Modzelewski authored
      528c0268
    • Kevin Modzelewski's avatar
      Let object.__new__ take kwargs · 1427169a
      Kevin Modzelewski authored
      Also, improve rewriting to still be able to rewrite object construction.
      For now, be able to rewrite the case that a function takes kwargs but
      the kwargs is empty.
      
      Also, add an even faster path to typeCallInternal.  This is partially
      obviated by the improved rewriting, but we might as well keep it.
      1427169a
    • Kevin Modzelewski's avatar
      Fix some type annotations · 23266a66
      Kevin Modzelewski authored
      And add a test that would have caught this specific case.
      Would be nice if we had some way of verifying these more generally...
      23266a66
  3. 09 Feb, 2015 7 commits
  4. 08 Feb, 2015 1 commit
  5. 07 Feb, 2015 14 commits
  6. 06 Feb, 2015 11 commits
    • Travis Hance's avatar
      moved array.py to array_test.py · 2b4dc9ba
      Travis Hance authored
      2b4dc9ba
    • Kevin Modzelewski's avatar
      Basic 'traceback' object support · e22da6f3
      Kevin Modzelewski authored
      Previously we were just passing around a vector<> of LineInfos; now, they
      get encapsulated in a BoxedTraceback object.  This has a couple benefits:
      1) they can participate in the existing sys.exc_info passing+handling
      2) we can enable a basic form of the traceback module.
      
      2 means that we can finally test our tracebacks support, since I was constantly
      fixing one issue only to break it in another place.
      
      1 means that we now generate the right traceback for the current exception!
      Before this change, the traceback we would generate was determined using a different
      system than the exc_info-based exception raising, so sometimes they would diverge
      and be horribly confusing.
      
      There's a pretty big limitation with the current implementation: our tracebacks
      don't span the right stack frames.  In CPython, a traceback spans the stack frames
      between the raise and the catch, but in Pyston the traceback includes all stack frames.
      It's not easy to provide this behavior, since the tracebacks are supposed to get updated
      as they get rethrown through each stack frame.
      
      We could do some complicated stuff in irgen to make sure this happens.  I think the better
      but more complicated approach is for us to create the custom exception unwinder we've been
      wanting.  This would let us add custom traceback-handling support as we unwound the stack.
      
      Another limitation is that tracebacks are supposed to automatically include a reference
      to the entire frame stack (tb.tb_frame.f_back.f_back.f_back....).  In Pyston, we're not
      automatically generating those frame objects, so we would either need to do that and take
      a perf hit, or (more likely?) generate the frame objects on-demand when they're needed.
      
      It's not really clear that they're actually needed for traceback objects, so I implemented
      a different traceback object API and changed the traceback.py library, under the assumption
      that almost-noone actually deals with the traceback object internals.
      e22da6f3
    • Kevin Modzelewski's avatar
      Merge pull request #285 from tjhance/builtin-functions · ee448c5f
      Kevin Modzelewski authored
      builtin functions
      ee448c5f
    • Kevin Modzelewski's avatar
      Merge pull request #286 from undingen/remove_pic · 5cc8ea87
      Kevin Modzelewski authored
      Remove -fPIC
      5cc8ea87
    • Travis Hance's avatar
      builtin functions · 128cb7c7
      Travis Hance authored
      128cb7c7
    • Kevin Modzelewski's avatar
      Merge pull request #281 from undingen/array · 2781d28c
      Kevin Modzelewski authored
      add the array module
      2781d28c
    • Marius Wachtler's avatar
      Remove -fPIC · 032be99e
      Marius Wachtler authored
      032be99e
    • Marius Wachtler's avatar
      add array module · f17535bc
      Marius Wachtler authored
      f17535bc
    • Kevin Modzelewski's avatar
      Fix a codegen bug · 4a7bcfbb
      Kevin Modzelewski authored
      If we could statically determine that an object doesn't have a __nonzero__ method,
      we would previously say that it had an undefined truth value (and then crash).
      4a7bcfbb
    • Kevin Modzelewski's avatar
      Merge pull request #284 from toshok/benchmarks · ba5d093c
      Kevin Modzelewski authored
      add richards.py and deltablue.py minibenchmarks
      ba5d093c
    • Kevin Modzelewski's avatar
      Merge branch 'file' · 77746e34
      Kevin Modzelewski authored
      Migrate to (a subset of) CPython's file implementation instead of our own.
      77746e34