1. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  2. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  3. 813b0e5 Make test_inspect pass once again. by Guido van Rossum · 17 years ago
  4. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  5. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  6. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  7. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 17 years ago
  8. 2e65f89 Final part of SF# 1607548 by Tony Lownds: fix pydoc and inspect. by Guido van Rossum · 17 years ago
  9. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  10. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  11. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  12. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  13. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  14. dd5c023 some more fixes and tests for inspect.getsource(), triggered by crashes by Armin Rigo · 19 years ago
  15. a5855d5 Patch #1159931/bug #1143895: inspect.getsource failed when functions, by Johannes Gijsbers · 19 years ago
  16. a1a992c Apply itemgetter() instead of lambda. by Raymond Hettinger · 19 years ago
  17. dbecd93 Replace list of constants with tuples of constants. by Raymond Hettinger · 20 years ago
  18. 1542f34 Patch #1011890: fix inspect.getsource breaking with line-continuation & by Johannes Gijsbers · 20 years ago
  19. 6165620 Import no longer needed. by Raymond Hettinger · 20 years ago
  20. 13dea5a Raymond reminded me to use DSU key by Skip Montanaro · 20 years ago
  21. 41f89a4 Sort classes by fully qualified name. In the common case where you are by Skip Montanaro · 20 years ago
  22. 9324526 Use __module__ attribute when available instead of using isclass() predicate by Johannes Gijsbers · 20 years ago
  23. c473c99 Patch #1006219: let inspect.getsource show '@' decorators and add tests for by Johannes Gijsbers · 20 years ago
  24. 2e829c0 - Bug #891637, patch #1005466: fix inspect.getargs() crash on def foo((bar)). by Matthias Klose · 20 years ago
  25. b3de2e1 'inspect' was not listing the functions in a module properly if the module was by Brett Cannon · 20 years ago
  26. a050171 SF bug #973092: inspect.getframeinfo bug if 'context' is to big by Raymond Hettinger · 20 years ago
  27. 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 · 20 years ago
  28. 3375fc5 Apply extract functions instead of lambda. by Raymond Hettinger · 21 years ago
  29. 6b59f5f Let library modules use the new keyword arguments for list.sort(). by Raymond Hettinger · 21 years ago
  30. 478c105 Whitespace normalization. by Tim Peters · 21 years ago
  31. ab91902 A bit o' reformatting and removal of non-_getframe currentframe(). by Jeremy Hylton · 21 years ago
  32. 6496788 Fix for SF bug 620190: getargspec() doesn't work with methods. by Jeremy Hylton · 21 years ago
  33. 4a671fe Return None to signal that the module the object was defined in was not found when object has no __name__ attr but is needed to figure out location of object. by Brett Cannon · 21 years ago
  34. e59e2ba Patch #711902: Cause pydoc to show data descriptor __doc__ strings. by Martin v. Löwis · 21 years ago
  35. b38bbbd Make module lookup a little more robust (certain kinds of fiddling to by Ka-Ping Yee · 21 years ago
  36. 2e7b748 SF patch #634557: inspect.BlockFinder didn't do a good enough job finding by Raymond Hettinger · 22 years ago
  37. 2d375f7 SF bug #661184: inspect.getsource bug by Raymond Hettinger · 22 years ago
  38. a59ef7b getdoc(): by Ka-Ping Yee · 22 years ago
  39. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  40. 09776b7 Add encoding declaration. by Martin v. Löwis · 22 years ago
  41. e0d4972 Replaced .keys() with dictionary iterators by Raymond Hettinger · 22 years ago
  42. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  43. 936654b Replaced boolean test with is None by Raymond Hettinger · 22 years ago
  44. 755f75e Use types.StringTypes instead of explicit (str, unicode) list by Michael W. Hudson · 22 years ago
  45. d451ec1 Clean up uses of some deprecated features. by Fred Drake · 22 years ago
  46. b4c17c8 Fix getcomments() so that it doesn't fail with TypeErrors. by Jeremy Hylton · 22 years ago
  47. a959a36 tighten up unqualified except in currentframe() see bug 411881 by Skip Montanaro · 22 years ago
  48. f06f853 Use linecache for loading source code. Closes SF patch 490374. by Neil Schemenauer · 22 years ago
  49. 2400831 SF patch 530070: pydoc regression, from Martin and Guido. by Tim Peters · 22 years ago
  50. 8a11f5d SF #515015, raise exception if code not found in findsource() by Neal Norwitz · 22 years ago
  51. 687ae00 Get rid of __defined__ and tp_defined -- there's no need to by Guido van Rossum · 23 years ago
  52. 13b49d3 New function classify_class_attrs(). As a number of SF bug reports by Tim Peters · 23 years ago
  53. e0b2d7a Add a function to compute a class's method resolution order. This is by Tim Peters · 23 years ago
  54. f1d90b9 Ensure that isfunction(obj) and (the new) ismethoddescriptor(obj) never by Tim Peters · 23 years ago
  55. 536d226 After much thrashing, I believe this is a truly minimal patch to teach by Tim Peters · 23 years ago
  56. 28bc59f In a world with a growing number of subclassable types, replace by Tim Peters · 23 years ago
  57. 54e54c6 The first batch of changes recommended by the fixdiv tool. These are by Guido van Rossum · 23 years ago
  58. b09f7ed Preliminary support for "from __future__ import generators" to enable by Guido van Rossum · 23 years ago
  59. 4efb6e9 Turns out Neil didn't intend for *all* of his gen-branch work to get committed. by Tim Peters · 23 years ago
  60. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  61. 022171f Clean up isroutine(). by Ka-Ping Yee · 23 years ago
  62. c99e0f1 Robustify getfile() against classes that lie about their __module__s by Ka-Ping Yee · 23 years ago
  63. 202c99b Remove duplicate type objects from isroutine() and isbuiltin(). by Ka-Ping Yee · 23 years ago
  64. b910efe Robustify getcomments() so it doesn't crash on empty files. by Ka-Ping Yee · 23 years ago
  65. 4d6fc7f Add getmodulename() and getmoduleinfo() routines to inspect filenames. by Ka-Ping Yee · 23 years ago
  66. a9c6c8d Extend isclass() to work for extension classes (by looking for __bases__). by Ka-Ping Yee · 23 years ago
  67. f170d7f Don't have trace() skip the top frame; return them all. by Ka-Ping Yee · 23 years ago
  68. 30edd23 Whitespace normalization. by Tim Peters · 23 years ago
  69. a6e5971 Fix findsource() to work for derived classes. by Ka-Ping Yee · 23 years ago
  70. 4eb0c00 Make getsourcefile() succeed even if the filename doesn't end in '.py' -- by Ka-Ping Yee · 23 years ago
  71. c113c24 Clarify the purpose of getsourcefile(). by Ka-Ping Yee · 23 years ago
  72. 7a25765 When seeking the module for an object, compare absolute (not relative) paths. by Ka-Ping Yee · 23 years ago
  73. 8b58b84 Add __author__ variable. by Ka-Ping Yee · 23 years ago
  74. 59ade08 Add getlineno() routine to account for LINENO optimization. by Ka-Ping Yee · 23 years ago
  75. 85ba673 Whitespace normalization. by Tim Peters · 23 years ago
  76. 6397c7c inspect: a module for getting information out of live Python objects by Ka-Ping Yee · 23 years ago