1. 5a23bd0 inspect: Update docstrings; Rename _signature_internal to _signature_from_callable. by Yury Selivanov · 10 years ago
  2. dccfa13 inspect: Fix getcallargs() to fail correctly if more than 3 args are missing. by Yury Selivanov · 10 years ago
  3. 875df20 inspect: Fix getcallargs() to raise correct TypeError by Yury Selivanov · 10 years ago
  4. 374375d inspect.signature: Improve repr of Signature and Parameter. Closes #20378 by Yury Selivanov · 10 years ago
  5. da39645 inspect.Signature: Add 'Signature.from_callable' classmethod. Closes #17373 by Yury Selivanov · 10 years ago
  6. a5d63dd inspect.signature: Make Signature and Parameter picklable. Closes #20726 by Yury Selivanov · 10 years ago
  7. 21e83a5 inspect.signature: Use enum for parameter kind constants. Closes #19573 by Yury Selivanov · 10 years ago
  8. a773de0 inspect.signature: Check for function-like objects before builtins. Issue #17159 by Yury Selivanov · 10 years ago
  9. 8c185ee inspect: Fix getfullargspec to support builtin module-level functions. Issue #20711 by Yury Selivanov · 10 years ago
  10. 57d240e inspect: Fix getfullargspec() to not to follow __wrapped__ chains by Yury Selivanov · 10 years ago
  11. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 10 years ago
  12. 7d2bfed inspect.signature: Add (restore) support for builtin classes #20473 by Yury Selivanov · 10 years ago
  13. 1d24183 inspect.signature: Use 'inspect.isbuiltin' in 'Signature.from_builtin' by Yury Selivanov · 10 years ago
  14. 0ba5f0d inspect: Add some comments in Parameter.__eq__ method by Yury Selivanov · 10 years ago
  15. 5334bcd inspect.Signauture.from_function: validate duck functions in Signature constructor #17159 by Yury Selivanov · 10 years ago
  16. 63da7c7 inspect.signature: Support duck-types of Python functions (Cython, for instance) #17159 by Yury Selivanov · 10 years ago
  17. 0860a0b inspect.classify_class_attrs: Classify object.__new__ and __init__ correctly #18801 by Yury Selivanov · 10 years ago
  18. 89ca85c inspect.Signature.from_function: Use CO_VARARGS & CO_VARKEYWORDS constants by Yury Selivanov · 10 years ago
  19. 0486f81 inspect.signature: Make sure that if a callable object has '_patialmethod' by Yury Selivanov · 10 years ago
  20. c45873e inspect.Signature.bind: Update method signature to rule out possiblity by Yury Selivanov · 10 years ago
  21. 421f0c7 inspect: Rename private helper function by Yury Selivanov · 10 years ago
  22. d82eddc inspect.getfullargspec: Use inspect.signature API behind the scenes #17481 by Yury Selivanov · 10 years ago
  23. 07a9e45 inspect.Signature: ensure that non-default params don't follow default ones #20427 by Yury Selivanov · 10 years ago
  24. 76c6c59 inspect.signature: Add support for decorated (wrapped) builtins #20425 by Yury Selivanov · 10 years ago
  25. b77511d inspect.Signature: Make from_builtin to raise an exception if no signature can by Yury Selivanov · 10 years ago
  26. 9b9ac95 inspect.Signature.bind: Add **kwargs/positional-only check back by Yury Selivanov · 10 years ago
  27. 38b0d5a inspect.Signature.bind: Fix pos-only params with defaults; fix *args in named args #19140 by Yury Selivanov · 10 years ago
  28. 8757ead inspect: Fix docstrings for Parameter & Signature classes by Yury Selivanov · 10 years ago
  29. 62560fb inspect.signature: Handle bound methods with '(*args)' signature correctly #20401 by Yury Selivanov · 10 years ago
  30. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 10 years ago
  31. e7dcc5e inspect.signature: Support classes without user-defined __init__/__new__ #20308 by Yury Selivanov · 10 years ago
  32. da5fe4f inspect.signature: Add support for 'functools.partialmethod' #20223 by Yury Selivanov · 10 years ago
  33. 2393dca inspect.signature: Use '/' to separate positional-only parameters from by Yury Selivanov · 10 years ago
  34. 2eed8b7 inspect.getfile: Don't crash on classes without '__module__' attribute #20372 by Yury Selivanov · 10 years ago
  35. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 10 years ago
  36. 2a72791 Issue #20226: Major improvements to Argument Clinic. by Larry Hastings · 10 years ago
  37. 16c5191 Issue #20144: Argument Clinic now supports simple constants as parameter by Larry Hastings · 10 years ago
  38. c22eaec merge 3.3 (closes #20108) by Benjamin Peterson · 10 years ago
  39. 3e6ab17 avoid parameter name clash (closes #20108) by Benjamin Peterson · 10 years ago
  40. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  41. b0c84cd Issue #19030: final pieces for proper location of various class attributes located in the metaclass. by Ethan Furman · 11 years ago
  42. a8b0707 Issue #19030: special-cased __dict__ as the actual dict is not returned, a proxy is. by Ethan Furman · 11 years ago
  43. 63c141c Close #19030: inspect.getmembers and inspect.classify_class_attrs by Ethan Furman · 11 years ago
  44. e03ea37 Close #19030: improvements to inspect and Enum. by Ethan Furman · 11 years ago
  45. f94a16b Close #18626: add a basic CLI for the inspect module by Nick Coghlan · 11 years ago
  46. 668dede Close #18929: inspect.classify_class_attrs will now search the metaclasses (last) to find where an attr was defined. by Ethan Furman · 11 years ago
  47. 1e0d82c Issue #18830: inspect.getclasstree() no more produces duplicated entries even by Serhiy Storchaka · 11 years ago
  48. 362c1b5 Issue #18830: inspect.getclasstree() no more produces duplicated entries even by Serhiy Storchaka · 11 years ago
  49. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  50. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  51. e8c45d6 Close #13266: Add inspect.unwrap by Nick Coghlan · 11 years ago
  52. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  53. e4f41de Issue #17177: The imp module is pending deprecation. by Brett Cannon · 11 years ago
  54. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  55. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 11 years ago
  56. 0503de9 #17526: merge with 3.3. by Ezio Melotti · 11 years ago
  57. 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
  58. 64a5562 Issue #17071: Signature.bind() now works when one of the keyword arguments is named self. by Antoine Pitrou · 11 years ago
  59. bd41d1b Issue #17071: Signature.bind() now works when one of the keyword arguments is named ``self``. by Antoine Pitrou · 11 years ago
  60. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  61. 8fda359 Issue #15401: Fix typo in inspect.getclosurevars docstring. by Meador Inge · 12 years ago
  62. 76e0770 Close #15387: inspect.getmodulename() now uses a new importlib.machinery.all_suffixes() API rather than the deprecated inspect.getmoduleinfo() by Nick Coghlan · 12 years ago
  63. 04e2e3f Close #15153: Added inspect.getgeneratorlocals to simplify whitebox testing of generator state updates by Nick Coghlan · 12 years ago
  64. 2f92e54 Close #13062: Add inspect.getclosurevars to simplify testing stateful closures by Nick Coghlan · 12 years ago
  65. 7c7cbfc Issue #15008: Implement PEP 362 "Signature Objects". Patch by Yury Selivanov. by Larry Hastings · 12 years ago
  66. 2b88fcf Issue #14987: Add a missing import statement by Brett Cannon · 12 years ago
  67. cb66eb0 Issue #13959: Deprecate imp.get_suffixes() for new attributes on by Brett Cannon · 12 years ago
  68. 85530aa Merge by Michael Foord · 13 years ago
  69. 3ba95f8 Metaclasses with metaclasses with a __dict__ descriptor can no longer trigger code execution with inspect.getattr_static. by Michael Foord · 13 years ago
  70. 12f65d1 Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 13 years ago
  71. 86a8a9a Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 13 years ago
  72. a699a2d Merge 3.2 by Michael Foord · 13 years ago
  73. a51623b Fix inspect.getattr_static to work on modules (again). Closes issue 11813. by Michael Foord · 13 years ago
  74. c8e0320 Merge 3.2 by Éric Araujo · 13 years ago
  75. a74f8ef Fix inspect.getmodule to use a copy of sys.modules for iteration (#13487). by Éric Araujo · 13 years ago
  76. 274271d remove unused imports (closes #12432) by Benjamin Peterson · 13 years ago
  77. e109c70 give the names of missing positional or keyword-only arguments (closes #12356) by Benjamin Peterson · 13 years ago
  78. 703f7c4 merge 3.2 (#9284) by Benjamin Peterson · 13 years ago
  79. 9620cc0 allow "fake" filenames in findsource (closes #9284) by Benjamin Peterson · 13 years ago
  80. b204a42 greatly improve argument parsing error messages (closes #12265) by Benjamin Peterson · 13 years ago
  81. 6a2638b Correct handling of functions with only kwarg args in getcallargs (closes #11256) by Benjamin Peterson · 13 years ago
  82. dcebe0f Closes issue 11133. Fixes two cases where inspect.getattr_static could trigger code execution by Michael Foord · 13 years ago
  83. 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
  84. e0f0465 Issue #10220: Add inspect.getgeneratorstate(). Initial patch by Rodolpho Eckhardt by Nick Coghlan · 14 years ago
  85. 35184ed Issue 9732: __class__ no longer checked on objects by getattr_static by Michael Foord · 14 years ago
  86. e516265 Issue 9732: fetch the method resolution order from the type metaclass directly in getattr_static by Michael Foord · 14 years ago
  87. 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
  88. 95fc51d Issue 9732: addition of getattr_static to the inspect module by Michael Foord · 14 years ago
  89. b82c8e5 classic classes are gone; whoppie! by Benjamin Peterson · 14 years ago
  90. e8f5832 Issue #9308: Removed redundant coding cookies. Added tests for by Alexander Belopolsky · 14 years ago
  91. c1c4bf8 #9683: remove broken dead code dealing with nested arguments removed from Py3k, and update the docs and docstrings accordingly. by Georg Brandl · 14 years ago
  92. 09c8123 Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py compiler flag values before resorting to defining its own by Nick Coghlan · 14 years ago
  93. 977a684 Issue #8983: Corrected docstrings. by Alexander Belopolsky · 14 years ago
  94. a3a3fc6 typo by Benjamin Peterson · 14 years ago
  95. 42ac475 don't alias directly, so that extra arguments don't appear #6678 by Benjamin Peterson · 14 years ago
  96. 88968ad only take into account positional arguments count in related error messages by Benjamin Peterson · 14 years ago
  97. a1b3740 Merged revisions 82039 via svnmerge from by R. David Murray · 14 years ago
  98. 28a691b PEP 3147 by Barry Warsaw · 14 years ago
  99. 25cd7eb Merged revisions 79500 via svnmerge from by Benjamin Peterson · 14 years ago
  100. 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