1. c7decc2 bpo-40275: Use new test.support helper submodules in tests (GH-21727) by Hai Shi · 5 years ago
  2. 08b47c3 bpo-40257: Revert changes to inspect.getdoc() (GH-20073) by Serhiy Storchaka · 5 years ago
  3. 696136b bpo-35113: Fix inspect.getsource to return correct source for inner classes (#10307) by Karthikeyan Singaravelan · 5 years ago
  4. fbf2786 bpo-40257: Output object's own docstring in pydoc (GH-19479) by Serhiy Storchaka · 5 years ago
  5. 611836a bpo-39957: Change Signature.parameters to OrderedDict (GH-18988) by Jens Reidel · 5 years ago
  6. 2cca8ef bpo-36350: inspect: Replace OrderedDict with dict. (GH-12412) by Rémi Lapeyre · 6 years ago
  7. f3ef06a bpo-38478: Correctly handle keyword argument with same name as positional-only parameter (GH-16800) by Pablo Galindo · 6 years ago
  8. 279f446 bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933) by Serhiy Storchaka · 6 years ago
  9. 5b9ff7a bpo-34706: Preserve subclassing in inspect.Signature.from_callable (GH-16108) by Gregory P. Smith · 6 years ago
  10. 7d44e7a bpo-37685: Use singletons ALWAYS_EQ and NEVER_EQ in more tests. (GH-15167) by Serhiy Storchaka · 6 years ago
  11. d407d2a bpo-37173: Show passed class in inspect.getfile error (GH-13861) by Philipp A · 6 years ago
  12. 6d0b747 bpo-37099: Silence DeprecationWarning in test_inspect (GH-13679) by Xtreak · 6 years ago
  13. 91f4380 bpo-36785: PEP 574 implementation (GH-7076) by Antoine Pitrou · 6 years ago
  14. aee19f5 bpo-36751: Undeprecate getfullargspec (GH-13245) by Pablo Galindo · 6 years ago
  15. d53cf99 bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705) by Serhiy Storchaka · 6 years ago
  16. d5d2b45 bpo-36751: Deprecate getfullargspec and report positional-only args as regular args (GH-13016) by Pablo Galindo · 6 years ago
  17. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 6 years ago
  18. fcef60f bpo-33261: guard access to __code__ attribute in inspect (GH-6448) by Jeroen Demeyer · 6 years ago
  19. d1e768a bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498) by Raymond Hettinger · 6 years ago
  20. 7cd2543 bpo-34890: Make iscoroutinefunction, isgeneratorfunction and isasyncgenfunction work with functools.partial (GH-9903) by Pablo Galindo · 7 years ago
  21. c57eb9a bpo-34871: Fix two typos in test_inspect.py (GH-9698) by Chih-Hsuan Yen · 7 years ago
  22. 91cb298 bpo-6700: Fix inspect.getsourcelines for module level frames/tracebacks (GH-8864) by Vladimir Matveev · 7 years ago
  23. 46c5cd0 bpo-33582: Emit deprecation warning for `formatargspec` (GH-6994) by Matthias Bussonnier · 7 years ago
  24. a9cab43 bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636) by Dong-hee Na · 7 years ago
  25. 4054b17 bpo-26103: Fix inspect.isdatadescriptor() and a data descriptor definition. (GH-1959) by Aaron Hall, MBA · 7 years ago
  26. 8a38721 bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6004) by Yury Selivanov · 7 years ago
  27. f36ba12 bpo-32697: Definition order of kwonly params is now guaranteed preserved. (#5391) by larryhastings · 8 years ago
  28. d8ac4d1 bpo-31778: Make ast.literal_eval() more strict. (#4035) by Serhiy Storchaka · 8 years ago
  29. 3327a2d bpo-32265: Classify class and static methods of builtin types. (#4776) by Serhiy Storchaka · 8 years ago
  30. 53f7a7c bpo-32297: Few misspellings found in Python source code comments. (#4803) by Mike · 8 years ago
  31. 762b957 bpo-32018: Fix inspect.signature repr to follow PEP 8 (#4408) by Dong-hee Na · 8 years ago
  32. e968bc73 bpo-30639: Lazily compute repr for error (#2132) by Thomas Kluyver · 8 years ago
  33. 36c1d1f PEP 553 built-in breakpoint() function (bpo-31353) (#3355) by Barry Warsaw · 8 years ago
  34. 13ad3b7 bpo-31462: Remove trailing whitespaces. (#3564) by Serhiy Storchaka · 8 years ago
  35. f9169ce bpo-25532: Protect against infinite loops in inspect.unwrap() (#1717) by Thomas Kluyver · 8 years ago
  36. 378d706 bpo-30149: Fix partialmethod without explicit self parameter (#1308) by Dong-hee Na · 8 years ago
  37. fcfe80e bpo-29822: Make inspect.isabstract() work during __init_subclass__. (#678) by Nate · 8 years ago
  38. 3f2155f bpo-16355: Clarify when inspect.getcomments() returns None (#428) by Marco Buttu · 8 years ago
  39. 6215e52 Issue #15812: Merge from 3.6 by Berker Peksag · 9 years ago
  40. 01debac Issue #15812: Merge from 3.5 by Berker Peksag · 9 years ago
  41. ff0e3b7 Issue #15812: inspect.getframeinfo() now correctly shows the first line of a context by Berker Peksag · 9 years ago
  42. 70d28a1 Remove unused imports. by Serhiy Storchaka · 9 years ago
  43. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 9 years ago
  44. b4b966e Issue #19611: handle implicit parameters in inspect.signature by Nick Coghlan · 9 years ago
  45. 06495ff Merge 3.5 (issue #26347) by Yury Selivanov · 9 years ago
  46. f9e1f2b inspect: Fix BoundArguments.apply_defaults to handle empty arguments by Yury Selivanov · 9 years ago
  47. 51d8c52 Replace noop constant statement with expression by Victor Stinner · 9 years ago
  48. 9def284 subprocess._optim_args_from_interpreter_flags() by Victor Stinner · 10 years ago
  49. 37dc2b2 Issue #25486: Resurrect inspect.getargspec in 3.6. Backout a565aad5d6e1. by Yury Selivanov · 10 years ago
  50. 6230235 Issue #25503: Fixed inspect.getdoc() for inherited docstrings of properties. by Serhiy Storchaka · 10 years ago
  51. ac4bdcc Issue #25503: Fixed inspect.getdoc() for inherited docstrings of properties. by Serhiy Storchaka · 10 years ago
  52. fa3922c Issue #13248: Delete remaining references of inspect.getargspec(). by Berker Peksag · 10 years ago
  53. f98c35a Issue #24485: Function source inspection fails on closures. by Meador Inge · 10 years ago
  54. 5b718d7 Issue #24485: Function source inspection fails on closures. by Meador Inge · 10 years ago
  55. f1b5ccb Issue #13248: Remove inspect.getargspec from 3.6 (deprecated from 3.0) by Yury Selivanov · 10 years ago
  56. 4f4913b Issue #24485: Revert backwards compatibility breaking changes of #21217. by Yury Selivanov · 10 years ago
  57. e4e811d Issue #24669: Fix inspect.getsource() for 'async def' functions. by Yury Selivanov · 10 years ago
  58. 2489bd5 Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes. by Serhiy Storchaka · 10 years ago
  59. 3018cc4 Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes. by Serhiy Storchaka · 10 years ago
  60. fdbeb2b Issue #24400: Resurrect inspect.isawaitable() by Yury Selivanov · 10 years ago
  61. 59a3b67 Issue #24541: Drop test_inspect.test_eightteen unittest; update docs by Yury Selivanov · 10 years ago
  62. 22f68d5 Issue #24541: Update comment in test_inspect.test_eightteen by Yury Selivanov · 10 years ago
  63. 8a8f453 Issue #24400: Fix failing unittest by Yury Selivanov · 10 years ago
  64. a74b5e5 Issue #24400: Remove inspect.isawaitable(). by Yury Selivanov · 10 years ago
  65. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 10 years ago
  66. bf304fc Issue #23934: Fix inspect.signature to fail correctly for builtin types. by Yury Selivanov · 10 years ago
  67. 507cd3c Issue 24298: Fix signature() to properly unwrap wrappers around bound methods by Yury Selivanov · 10 years ago
  68. 46c759d Issue 24298: Fix signature() to properly unwrap wrappers around bound methods by Yury Selivanov · 10 years ago
  69. 3cfec2e Issue 20438: Deprecate inspect.getargspec() and friends. by Yury Selivanov · 10 years ago
  70. 095fb84 Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__ by Yury Selivanov · 10 years ago
  71. bf341fb Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__ by Yury Selivanov · 10 years ago
  72. 57c74fc Issue 24248: Deprecate inspect.Signature.from_function and .from_builtin by Yury Selivanov · 10 years ago
  73. bcd4fc1 Issue 20691: Add follow_wrapped arg to inspect.signature/from_callable. by Yury Selivanov · 10 years ago
  74. 8687275 Issue 24205: Improve inspect.Signature.bind() error messages. by Yury Selivanov · 10 years ago
  75. b907a51 Issue 24190: Add inspect.BoundArguments.apply_defaults() method. by Yury Selivanov · 10 years ago
  76. 6738b11 Issue 24208: Fix tests -- don't create a tempdir in __init__. by Yury Selivanov · 10 years ago
  77. 0cd2bf4 Issue 24200: Fix broken unittest. by Yury Selivanov · 10 years ago
  78. f229bc5 inspect: Remove "0x..." IDs from Signature objects' __repr__ by Yury Selivanov · 10 years ago
  79. 3f6538f Issue 22547: Implement informative __repr__ for inspect.BoundArguments by Yury Selivanov · 10 years ago
  80. 4cfd4ea inspect: Test that BoundArguments.__eq__ repects the order of params by Yury Selivanov · 10 years ago
  81. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 10 years ago
  82. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 10 years ago
  83. a8723a0 Issue #21217: inspect.getsourcelines() now tries to compute the start and by Antoine Pitrou · 10 years ago
  84. 8ef887c Issue #20586: Argument Clinic now ensures signatures on functions without docstrings. by Zachary Ware · 10 years ago
  85. 9c680b0 Actually run the builtins Argument Clinic test by Nick Coghlan · 10 years ago
  86. 5cf2b725 Issue #15582: inspect.getdoc() now follows inheritance chains. by Serhiy Storchaka · 10 years ago
  87. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  88. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  89. 7de2968 inspect: Fix getsource() to load updated source of reloaded module by Yury Selivanov · 11 years ago
  90. ef1e750 inspect: Fix getsource() to load updated source of reloaded module by Yury Selivanov · 11 years ago
  91. b55f944 Merge: #12780: update inspect test skipIf for PEP 3147. by R David Murray · 11 years ago
  92. 32562d7 #12780: update inspect test skipIf for PEP 3147. by R David Murray · 11 years ago
  93. 081bbf6 inspect: Fix getsource() to support decorated functions. by Yury Selivanov · 11 years ago
  94. 08d4a4f inspect.Signature: Fix discrepancy between __eq__ and __hash__. by Yury Selivanov · 11 years ago
  95. cdcafb7 Issue #16808: inspect.stack() now returns a named tuple instead of a tuple. by Antoine Pitrou · 11 years ago
  96. f9e227e Issue #20184: Add signature introspection for 30 of the builtins by Nick Coghlan · 11 years ago
  97. 42407ab inspect: Validate that __signature__ is None or an instance of Signature. by Yury Selivanov · 11 years ago
  98. c0f964f inspect: Validate that __signature__ is None or an instance of Signature. by Yury Selivanov · 11 years ago
  99. 67ae50e inspect: Make Signature and Parameter hashable. Issue #20334. by Yury Selivanov · 11 years ago
  100. 3f73ca2 inspect.signautre: Fix functools.partial support. Issue #21117 by Yury Selivanov · 11 years ago