1. 362c1b5 Issue #18830: inspect.getclasstree() no more produces duplicated entries even by Serhiy Storchaka · 11 years ago
  2. 1b14592 #17526: fix an IndexError raised while passing code without filename to inspect.findsource(). Initial patch by Tyler Doyle. by Ezio Melotti · 11 years ago
  3. bd41d1b Issue #17071: Signature.bind() now works when one of the keyword arguments is named ``self``. by Antoine Pitrou · 12 years ago
  4. 5d62a61 Fix test_inspect messing up with linecache.cache. by Antoine Pitrou · 12 years ago
  5. 6c6e254 Properly test the various builtins lookup cases in inspect.getclosurevars by Nick Coghlan · 12 years ago
  6. 46cb1ef Use non-deprecated speling. by Antoine Pitrou · 12 years ago
  7. 04e2e3f Close #15153: Added inspect.getgeneratorlocals to simplify whitebox testing of generator state updates by Nick Coghlan · 12 years ago
  8. 2f92e54 Close #13062: Add inspect.getclosurevars to simplify testing stateful closures by Nick Coghlan · 12 years ago
  9. 7c7cbfc Issue #15008: Implement PEP 362 "Signature Objects". Patch by Yury Selivanov. by Larry Hastings · 12 years ago
  10. d5a1a21 Prevent test_inspect from keeping alive a ton of frames and local variables by way of a global variable keeping a reference to a traceback. by Antoine Pitrou · 12 years ago
  11. 802505d Merge more test vs hashing-order fixes from 3.2. by Georg Brandl · 13 years ago
  12. 178e5ea Disable an inspect test: it depends on dict ordering which parameter is reported as duplicate. by Georg Brandl · 13 years ago
  13. af5facc Add part of test_inspect test from 2.7 by Antoine Pitrou · 13 years ago
  14. 0c60381 Add part of test_inspect test from 2.7 by Antoine Pitrou · 13 years ago
  15. 3ba95f8 Metaclasses with metaclasses with a __dict__ descriptor can no longer trigger code execution with inspect.getattr_static. by Michael Foord · 13 years ago
  16. 86a8a9a Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 13 years ago
  17. a51623b Fix inspect.getattr_static to work on modules (again). Closes issue 11813. by Michael Foord · 13 years ago
  18. 85530aa Merge by Michael Foord · 13 years ago
  19. 12f65d1 Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 13 years ago
  20. a699a2d Merge 3.2 by Michael Foord · 13 years ago
  21. d8b509b #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). by Ezio Melotti · 13 years ago
  22. 9620cc0 allow "fake" filenames in findsource (closes #9284) by Benjamin Peterson · 13 years ago
  23. 75cbd73 #11938: Fix duplicated test name in test_inspect. Patch by Andreas Stührk. by Ezio Melotti · 13 years ago
  24. 6a2638b Correct handling of functions with only kwarg args in getcallargs (closes #11256) by Benjamin Peterson · 13 years ago
  25. dcebe0f Closes issue 11133. Fixes two cases where inspect.getattr_static could trigger code execution by Michael Foord · 13 years ago
  26. f546e70 Issue4335: Added a test for inspect.getsourcelines with a module without EOL at EOF. by Alexander Belopolsky · 14 years ago
  27. 2f9a77a Reverted unintended change from r86916 by Alexander Belopolsky · 14 years ago
  28. 41e422a Issue #4113: Added custom __repr__ method to functools.partial. by Alexander Belopolsky · 14 years ago
  29. 7921b9f Issue 10220: switch to using string constants rather than integers for inspect.getgeneratorstate() return values and make debugging friendly str() and repr() for generator states a requirement in the test suite by Nick Coghlan · 14 years ago
  30. e0f0465 Issue #10220: Add inspect.getgeneratorstate(). Initial patch by Rodolpho Eckhardt by Nick Coghlan · 14 years ago
  31. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  32. 35184ed Issue 9732: __class__ no longer checked on objects by getattr_static by Michael Foord · 14 years ago
  33. e516265 Issue 9732: fetch the method resolution order from the type metaclass directly in getattr_static by Michael Foord · 14 years ago
  34. cc7ebb8 Issue 9732: remove use of __class__ in inspect.getattr_static and note the mro exception to code execution by Michael Foord · 14 years ago
  35. 95fc51d Issue 9732: addition of getattr_static to the inspect module by Michael Foord · 14 years ago
  36. 4155f97 Don't use os.normcase when the result we are expecting is None. by R. David Murray · 14 years ago
  37. a1b3740 Merged revisions 82039 via svnmerge from by R. David Murray · 14 years ago
  38. 25cd7eb Merged revisions 79500 via svnmerge from by Benjamin Peterson · 14 years ago
  39. c857592 Revert improper merge in test_inspect (r79251). by Florent Xicluna · 14 years ago
  40. 21896a3 Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,78331-78332,78336,78339,78343,78378-78379,78415,78559,78717,78791 via svnmerge from by Benjamin Peterson · 14 years ago
  41. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  42. 378c0cf Merged revisions 78351 via svnmerge from by R. David Murray · 15 years ago
  43. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  44. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  45. a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 15 years ago
  46. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  47. a27c5bd Merged revisions 72979 via svnmerge from by Philip Jenvey · 15 years ago
  48. b565577 Merged revisions 72630 via svnmerge from by R. David Murray · 15 years ago
  49. 74b8924 This fix makes, eg, 'pydoc time' work again. by R. David Murray · 15 years ago
  50. c465600 Merged revisions 68676 via svnmerge from by Benjamin Peterson · 16 years ago
  51. 9953a8d fix inspect.formatargspec on functions with keyword-only arguments without defaults #4959 by Benjamin Peterson · 16 years ago
  52. 058e31e Merged revisions 68450,68480-68481,68493,68495,68501,68512,68514-68515,68534-68536,68552,68563,68570-68572,68575,68582,68596,68623-68624,68628 via svnmerge from by Benjamin Peterson · 16 years ago
  53. f088e5e Merged revisions 67750-67751 via svnmerge from by Nick Coghlan · 16 years ago
  54. 0c77a82 Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from by Georg Brandl · 16 years ago
  55. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  56. 7864476 Merged revisions 61209-61214,61217-61222,61224-61226,61233-61237 via svnmerge from by Christian Heimes · 16 years ago
  57. 227c800 Merged revisions 61207 via svnmerge from by Christian Heimes · 16 years ago
  58. 09aaa88 Patch from Georg Brandl: Fix co_lineno of decorated function and class objects. If you see an error in test_inspect please delete all pyc files. by Christian Heimes · 17 years ago
  59. 7131fd9 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60878,60880-60892,60894-60898 via svnmerge from by Christian Heimes · 17 years ago
  60. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  61. c9543e4 Removed the new module by Christian Heimes · 17 years ago
  62. 45f9af3 Merged revisions 59193-59201 via svnmerge from by Christian Heimes · 17 years ago
  63. 4a22b5d Patch from Georg Brandl and me for #1493 Remove unbound method objects by Christian Heimes · 17 years ago
  64. 3795b53 Applied patch #1127 from Quentin Gallet Gilles: No tests for inspect.getfullargspec() by Christian Heimes · 17 years ago
  65. a3538eb Fixed bug #1384 Windows fix for inspect tests by Christian Heimes · 17 years ago
  66. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  67. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  68. c126e8a Merged revisions 55514-55544 via svnmerge from by Guido van Rossum · 17 years ago
  69. 813b0e5 Make test_inspect pass once again. by Guido van Rossum · 17 years ago
  70. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  71. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 18 years ago
  72. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 18 years ago
  73. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  74. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  75. 01c77c6 Anna Ravenscroft identified many occurrences of "file" used to open a file by Alex Martelli · 18 years ago
  76. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  77. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  78. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  79. 725af87 - Remove tests for classic class behaviour by Thomas Wouters · 18 years ago
  80. dd5c023 some more fixes and tests for inspect.getsource(), triggered by crashes by Armin Rigo · 19 years ago
  81. a5855d5 Patch #1159931/bug #1143895: inspect.getsource failed when functions, by Johannes Gijsbers · 19 years ago
  82. 5a9fb3c Whitespace normalization. by Tim Peters · 20 years ago
  83. 1542f34 Patch #1011890: fix inspect.getsource breaking with line-continuation & by Johannes Gijsbers · 20 years ago
  84. cb9015d Patch #736962: port test_inspect to unittest. As part of this, move out by Johannes Gijsbers · 20 years ago
  85. c473c99 Patch #1006219: let inspect.getsource show '@' decorators and add tests for by Johannes Gijsbers · 20 years ago
  86. 2e829c0 - Bug #891637, patch #1005466: fix inspect.getargs() crash on def foo((bar)). by Matthias Klose · 20 years ago
  87. 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
  88. 893ffa4 Patch #830858: Correct the number of is-functions. Backported to 2.3 and 2.2. by Martin v. Löwis · 21 years ago
  89. c4bf5ed Add a trivial test of getargspec() with a method. by Jeremy Hylton · 21 years ago
  90. 4d28d96 Refer to __builtin__.file, not __builtins__.file by Martin v. Löwis · 21 years ago
  91. e59e2ba Patch #711902: Cause pydoc to show data descriptor __doc__ strings. by Martin v. Löwis · 21 years ago
  92. a59ef7b getdoc(): by Ka-Ping Yee · 22 years ago
  93. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  94. 6006629 Remove obsolete __dynamic__ distinction. by Tim Peters · 23 years ago
  95. 13b49d3 New function classify_class_attrs(). As a number of SF bug reports by Tim Peters · 23 years ago
  96. e0b2d7a Add a function to compute a class's method resolution order. This is by Tim Peters · 23 years ago
  97. f170d7f Don't have trace() skip the top frame; return them all. by Ka-Ping Yee · 23 years ago
  98. 243bff4 Clean up junk files left behind by imp.load_source(). by Tim Peters · 24 years ago
  99. 9054344 Replace literal '@test' with TESTFN. by Ka-Ping Yee · 24 years ago
  100. 6397c7c inspect: a module for getting information out of live Python objects by Ka-Ping Yee · 24 years ago