1. 11 Haz, 2011 1 kayıt (commit)
  2. 28 Mar, 2011 1 kayıt (commit)
  3. 21 Kas, 2010 1 kayıt (commit)
  4. 02 Agu, 2010 2 kayıt (commit)
  5. 17 Haz, 2010 1 kayıt (commit)
    • R. David Murray's avatar
      #8720: fix inspect regression by teaching getsourcefile about linecache. · df1cf301
      R. David Murray yazdı
      The fix for issue 4050 caused a regression:  before that fix, source
      lines in the linecache would eventually be found by inspect.  After the
      fix inspect reports an error earlier, and the source isn't found.
      The fix for the fix is to have getsourcefile look in the linecache for
      the file and return the psuedo-filename if the source is there, just as
      it already returns it if there is a PEP 302 loader.
      df1cf301
  6. 10 Nis, 2010 1 kayıt (commit)
  7. 31 Mar, 2010 1 kayıt (commit)
  8. 30 Mar, 2010 1 kayıt (commit)
  9. 21 Mar, 2010 1 kayıt (commit)
  10. 23 Şub, 2010 1 kayıt (commit)
  11. 07 Şub, 2010 1 kayıt (commit)
  12. 03 Şub, 2010 1 kayıt (commit)
  13. 23 Ock, 2010 1 kayıt (commit)
  14. 08 Ock, 2010 2 kayıt (commit)
  15. 15 Eki, 2009 1 kayıt (commit)
  16. 30 Haz, 2009 1 kayıt (commit)
  17. 28 May, 2009 1 kayıt (commit)
  18. 14 May, 2009 1 kayıt (commit)
  19. 13 May, 2009 1 kayıt (commit)
  20. 17 Ock, 2009 1 kayıt (commit)
  21. 13 Ock, 2009 1 kayıt (commit)
  22. 14 Ara, 2008 2 kayıt (commit)
  23. 07 Haz, 2008 1 kayıt (commit)
  24. 03 Mar, 2008 2 kayıt (commit)
  25. 18 Şub, 2008 1 kayıt (commit)
  26. 27 Kas, 2007 1 kayıt (commit)
  27. 08 Eyl, 2006 1 kayıt (commit)
  28. 07 Eyl, 2006 1 kayıt (commit)
  29. 14 Agu, 2006 1 kayıt (commit)
  30. 28 Tem, 2006 1 kayıt (commit)
  31. 27 Tem, 2006 1 kayıt (commit)
    • Barry Warsaw's avatar
      Patch #1520294: Support for getset and member descriptors in types.py, · 00decd78
      Barry Warsaw yazdı
      inspect.py, and pydoc.py.  Specifically, this allows for querying the type of
      an object against these built-in C types and more importantly, for getting
      their docstrings printed in the interactive interpreter's help() function.
      
      This patch includes a new built-in module called _types which provides
      definitions of getset and member descriptors for use by the types.py module.
      These types are exposed as types.GetSetDescriptorType and
      types.MemberDescriptorType.  Query functions are provided as
      inspect.isgetsetdescriptor() and inspect.ismemberdescriptor().  The
      implementations of these are robust enough to work with Python implementations
      other than CPython, which may not have these fundamental types.
      
      The patch also includes documentation and test suite updates.
      
      I commit these changes now under these guiding principles:
      
      1. Silence is assent.  The release manager has not said "no", and of the few
         people that cared enough to respond to the thread, the worst vote was "0".
      
      2. It's easier to ask for forgiveness than permission.
      
      3. It's so dang easy to revert stuff in svn, that you could view this as a
         forcing function. :)
      
      Windows build patches will follow.
      00decd78
  32. 20 Tem, 2006 1 kayıt (commit)
  33. 10 Tem, 2006 2 kayıt (commit)
  34. 09 Haz, 2006 1 kayıt (commit)
  35. 27 Mar, 2006 1 kayıt (commit)
    • Neal Norwitz's avatar
      Fix SF bug #1458903 with AST compiler. · 33b730e3
      Neal Norwitz yazdı
      def foo((x)): was getting recognized as requiring tuple unpacking
      which is not correct.
      
      Add tests for this case and the proper way to unpack a tuple of one:
      	def foo((x,)):
      
      test_inpsect was incorrect before.  I'm not sure why it was passing,
      but that has been corrected with a test for both functions above.
      This means the test (and therefore inspect.getargspec()) are broken in 2.4.
      33b730e3