1. 6db9e88 Issue #18830: inspect.getclasstree() no more produces duplicated entries even by Serhiy Storchaka · 12 years ago
  2. e66e7de #17526: fix an IndexError raised while passing code without filename to inspect.findsource(). Initial patch by Tyler Doyle. by Ezio Melotti · 12 years ago
  3. e09bc1e Revert part of 13f56cd8dec1 (issue #1785) to avoid breaking getmembers() with unbound methods. by Antoine Pitrou · 14 years ago
  4. b8572a1 Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 14 years ago
  5. 0eb4ac4 allow "fake" filenames in findsource (closes #9284) by Benjamin Peterson · 14 years ago
  6. 77d4660 Correct handling of functions with only kwarg args in getcallargs (closes #11256) by Benjamin Peterson · 14 years ago
  7. 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 15 years ago
  8. df1cf30 #8720: fix inspect regression by teaching getsourcefile about linecache. by R. David Murray · 15 years ago
  9. b60ee46 Refactor a couple inspect module tests to remove duplicate code by Jean-Paul Calderone · 15 years ago
  10. fcc500e Silence a py3k warning. by Ezio Melotti · 15 years ago
  11. 7e21325 add inspect.getcallargs, which binds function arguments like a normal call #3135 by Benjamin Peterson · 15 years ago
  12. 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
  13. f28fd24 Issue 6292: for the moment at least, the test suite passes if run by R. David Murray · 15 years ago
  14. a4f46e1 Remove unused imports in test modules. by Georg Brandl · 15 years ago
  15. c68e9f0 Fix test_inspect.py data to match recent change to inspect_fodder.py (r77942). by Mark Dickinson · 16 years ago
  16. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  17. ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 16 years ago
  18. 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 16 years ago
  19. c63457b make inspect.isabstract() always return a boolean; add a test for it, too #7069 by Benjamin Peterson · 16 years ago
  20. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  21. 6a11102 explicitly close files by Philip Jenvey · 16 years ago
  22. 8785554 Fix test failure on Windows, and add skip check if even unicodedata by R. David Murray · 16 years ago
  23. 996ba02 Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source' by R. David Murray · 16 years ago
  24. 5e5fbb6 fix inspect.isclass() on instances with a custom __getattr__ #1225107 by Benjamin Peterson · 17 years ago
  25. b54447f #1162154: inspect.getmembers() now skips attributes that raise AttributeError, by Amaury Forgeot d'Arc · 17 years ago
  26. a205347 Fix several issues relating to access to source code inside zipfiles. Initial work by Alexander Belopolsky. See Misc/NEWS in this checkin for details. by Nick Coghlan · 17 years ago
  27. 7be19aa Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc() by Georg Brandl · 17 years ago
  28. 26bc177 15 -> 16, the 2nd by Georg Brandl · 17 years ago
  29. 728bee8 15 -> 16 by Christian Heimes · 17 years ago
  30. 759bfc6 Issue #1916. Added isgenerator() and isgeneratorfunction() to by Facundo Batista · 17 years ago
  31. c756d00 Replaced import of the 'new' module with 'types' module and added a deprecation warning to the 'new' module. by Christian Heimes · 18 years ago
  32. c495c66 Fix the speed regression in inspect.py by adding another cache to speed up getmodule(). Patch #1553314 by Nick Coghlan · 19 years ago
  33. 2463f8f Make tabnanny recognize IndentationErrors raised by tokenize. by Georg Brandl · 19 years ago
  34. df80af7 Ensure the actual number matches the expected count by Neal Norwitz · 19 years ago
  35. 00decd7 Patch #1520294: Support for getset and member descriptors in types.py, by Barry Warsaw · 19 years ago
  36. 1a2959c Fix SF#1516184 (again) and add a test to prevent regression. by Phillip J. Eby · 19 years ago
  37. 722b883 Whitespace normalization. by Tim Peters · 19 years ago
  38. 5d86bdb Fix SF#1516184 and add a test to prevent regression. by Phillip J. Eby · 19 years ago
  39. b2afe85 Make use of new str.startswith/endswith semantics. by Georg Brandl · 19 years ago
  40. 33b730e Fix SF bug #1458903 with AST compiler. by Neal Norwitz · 19 years ago
  41. dd5c023 some more fixes and tests for inspect.getsource(), triggered by crashes by Armin Rigo · 20 years ago
  42. a5855d5 Patch #1159931/bug #1143895: inspect.getsource failed when functions, by Johannes Gijsbers · 20 years ago
  43. 5a9fb3c Whitespace normalization. by Tim Peters · 21 years ago
  44. 1542f34 Patch #1011890: fix inspect.getsource breaking with line-continuation & by Johannes Gijsbers · 21 years ago
  45. cb9015d Patch #736962: port test_inspect to unittest. As part of this, move out by Johannes Gijsbers · 21 years ago
  46. c473c99 Patch #1006219: let inspect.getsource show '@' decorators and add tests for by Johannes Gijsbers · 21 years ago
  47. 2e829c0 - Bug #891637, patch #1005466: fix inspect.getargs() crash on def foo((bar)). by Matthias Klose · 21 years ago
  48. ba8b6bc [Bug #954364] inspect.getframeinfo() sometimes produces incorrect traceback line #s; fix is to look at tb.tb_lineno, not tb.frame.f_lineno. Patch from Robin Becker and me. by Andrew M. Kuchling · 21 years ago
  49. 893ffa4 Patch #830858: Correct the number of is-functions. Backported to 2.3 and 2.2. by Martin v. Löwis · 22 years ago
  50. c4bf5ed Add a trivial test of getargspec() with a method. by Jeremy Hylton · 22 years ago
  51. 4d28d96 Refer to __builtin__.file, not __builtins__.file by Martin v. Löwis · 22 years ago
  52. e59e2ba Patch #711902: Cause pydoc to show data descriptor __doc__ strings. by Martin v. Löwis · 22 years ago
  53. a59ef7b getdoc(): by Ka-Ping Yee · 23 years ago
  54. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 23 years ago
  55. 6006629 Remove obsolete __dynamic__ distinction. by Tim Peters · 24 years ago
  56. 13b49d3 New function classify_class_attrs(). As a number of SF bug reports by Tim Peters · 24 years ago
  57. e0b2d7a Add a function to compute a class's method resolution order. This is by Tim Peters · 24 years ago
  58. f170d7f Don't have trace() skip the top frame; return them all. by Ka-Ping Yee · 24 years ago
  59. 243bff4 Clean up junk files left behind by imp.load_source(). by Tim Peters · 24 years ago
  60. 9054344 Replace literal '@test' with TESTFN. by Ka-Ping Yee · 24 years ago
  61. 6397c7c inspect: a module for getting information out of live Python objects by Ka-Ping Yee · 24 years ago