1. 10 Apr, 2005 3 commits
  2. 09 Apr, 2005 8 commits
  3. 08 Apr, 2005 7 commits
  4. 07 Apr, 2005 3 commits
  5. 06 Apr, 2005 3 commits
  6. 05 Apr, 2005 2 commits
  7. 04 Apr, 2005 5 commits
  8. 31 Mar, 2005 4 commits
  9. 30 Mar, 2005 5 commits
    • Michael W. Hudson's avatar
      I suppose a bug report or even a fix would be a better response, but · 5253c307
      Michael W. Hudson authored
      commit a yelp about a noted flaw the error messages for METH_KEYWORDS
      functions under some circumstances.
      5253c307
    • Michael W. Hudson's avatar
      Fix for rather inaccurately titled bug · e2749cb2
      Michael W. Hudson authored
      [ 1165306 ] Property access with decorator makes interpreter crash
      
      Don't allow the creation of unbound methods with NULL im_class, because
      attempting to call such crashes.
      
      Backport candidate.
      e2749cb2
    • Michael W. Hudson's avatar
      Minor wording fix. · 5c473559
      Michael W. Hudson authored
      5c473559
    • Michael W. Hudson's avatar
      Fixes for · da6242c8
      Michael W. Hudson authored
      [ 1166660 ] The readline module can cause python to segfault
      
      It seems to me that the code I'm rewriting here attempted to call any
      user-supplied hook functions using the thread state of the thread that
      called the hook-setting function, as opposed to that of the thread
      that is currently executing.  This doesn't work, in general.
      
      Fix this by using the PyGILState API (It wouldn't be that hard to
      define a dummy version of said API when #ifndef WITH_THREAD, would
      it?).
      
      Also, check the conversion to integer of the return value of a hook
      function for errors (this problem was mentioned in the ipython bug
      report linked to in the above bug).
      da6242c8
    • Michael W. Hudson's avatar
      Be a bit more accurate. · 9a8c3142
      Michael W. Hudson authored
      9a8c3142