1. 9b9ac95 inspect.Signature.bind: Add **kwargs/positional-only check back by Yury Selivanov · 11 years ago
  2. 38b0d5a inspect.Signature.bind: Fix pos-only params with defaults; fix *args in named args #19140 by Yury Selivanov · 11 years ago
  3. 8757ead inspect: Fix docstrings for Parameter & Signature classes by Yury Selivanov · 11 years ago
  4. 62560fb inspect.signature: Handle bound methods with '(*args)' signature correctly #20401 by Yury Selivanov · 11 years ago
  5. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
  6. e7dcc5e inspect.signature: Support classes without user-defined __init__/__new__ #20308 by Yury Selivanov · 11 years ago
  7. da5fe4f inspect.signature: Add support for 'functools.partialmethod' #20223 by Yury Selivanov · 11 years ago
  8. 2393dca inspect.signature: Use '/' to separate positional-only parameters from by Yury Selivanov · 11 years ago
  9. 2eed8b7 inspect.getfile: Don't crash on classes without '__module__' attribute #20372 by Yury Selivanov · 11 years ago
  10. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
  11. 2a72791 Issue #20226: Major improvements to Argument Clinic. by Larry Hastings · 11 years ago
  12. 16c5191 Issue #20144: Argument Clinic now supports simple constants as parameter by Larry Hastings · 11 years ago
  13. c22eaec merge 3.3 (closes #20108) by Benjamin Peterson · 11 years ago
  14. 3e6ab17 avoid parameter name clash (closes #20108) by Benjamin Peterson · 11 years ago
  15. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  16. b0c84cd Issue #19030: final pieces for proper location of various class attributes located in the metaclass. by Ethan Furman · 11 years ago
  17. a8b0707 Issue #19030: special-cased __dict__ as the actual dict is not returned, a proxy is. by Ethan Furman · 11 years ago
  18. 63c141c Close #19030: inspect.getmembers and inspect.classify_class_attrs by Ethan Furman · 11 years ago
  19. e03ea37 Close #19030: improvements to inspect and Enum. by Ethan Furman · 11 years ago
  20. f94a16b Close #18626: add a basic CLI for the inspect module by Nick Coghlan · 11 years ago
  21. 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
  22. 1e0d82c Issue #18830: inspect.getclasstree() no more produces duplicated entries even by Serhiy Storchaka · 11 years ago
  23. 362c1b5 Issue #18830: inspect.getclasstree() no more produces duplicated entries even by Serhiy Storchaka · 11 years ago
  24. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  25. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  26. e8c45d6 Close #13266: Add inspect.unwrap by Nick Coghlan · 11 years ago
  27. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  28. e4f41de Issue #17177: The imp module is pending deprecation. by Brett Cannon · 11 years ago
  29. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  30. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 11 years ago
  31. 0503de9 #17526: merge with 3.3. by Ezio Melotti · 11 years ago
  32. 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
  33. 64a5562 Issue #17071: Signature.bind() now works when one of the keyword arguments is named self. by Antoine Pitrou · 12 years ago
  34. bd41d1b Issue #17071: Signature.bind() now works when one of the keyword arguments is named ``self``. by Antoine Pitrou · 12 years ago
  35. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  36. 8fda359 Issue #15401: Fix typo in inspect.getclosurevars docstring. by Meador Inge · 12 years ago
  37. 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
  38. 04e2e3f Close #15153: Added inspect.getgeneratorlocals to simplify whitebox testing of generator state updates by Nick Coghlan · 12 years ago
  39. 2f92e54 Close #13062: Add inspect.getclosurevars to simplify testing stateful closures by Nick Coghlan · 12 years ago
  40. 7c7cbfc Issue #15008: Implement PEP 362 "Signature Objects". Patch by Yury Selivanov. by Larry Hastings · 12 years ago
  41. 2b88fcf Issue #14987: Add a missing import statement by Brett Cannon · 12 years ago
  42. cb66eb0 Issue #13959: Deprecate imp.get_suffixes() for new attributes on by Brett Cannon · 12 years ago
  43. 85530aa Merge by Michael Foord · 13 years ago
  44. 3ba95f8 Metaclasses with metaclasses with a __dict__ descriptor can no longer trigger code execution with inspect.getattr_static. by Michael Foord · 13 years ago
  45. 12f65d1 Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 13 years ago
  46. 86a8a9a Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 13 years ago
  47. a699a2d Merge 3.2 by Michael Foord · 13 years ago
  48. a51623b Fix inspect.getattr_static to work on modules (again). Closes issue 11813. by Michael Foord · 13 years ago
  49. c8e0320 Merge 3.2 by Éric Araujo · 13 years ago
  50. a74f8ef Fix inspect.getmodule to use a copy of sys.modules for iteration (#13487). by Éric Araujo · 13 years ago
  51. 274271d remove unused imports (closes #12432) by Benjamin Peterson · 13 years ago
  52. e109c70 give the names of missing positional or keyword-only arguments (closes #12356) by Benjamin Peterson · 13 years ago
  53. 703f7c4 merge 3.2 (#9284) by Benjamin Peterson · 13 years ago
  54. 9620cc0 allow "fake" filenames in findsource (closes #9284) by Benjamin Peterson · 13 years ago
  55. b204a42 greatly improve argument parsing error messages (closes #12265) by Benjamin Peterson · 13 years ago
  56. 6a2638b Correct handling of functions with only kwarg args in getcallargs (closes #11256) by Benjamin Peterson · 13 years ago
  57. dcebe0f Closes issue 11133. Fixes two cases where inspect.getattr_static could trigger code execution by Michael Foord · 14 years ago
  58. 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
  59. e0f0465 Issue #10220: Add inspect.getgeneratorstate(). Initial patch by Rodolpho Eckhardt by Nick Coghlan · 14 years ago
  60. 35184ed Issue 9732: __class__ no longer checked on objects by getattr_static by Michael Foord · 14 years ago
  61. e516265 Issue 9732: fetch the method resolution order from the type metaclass directly in getattr_static by Michael Foord · 14 years ago
  62. 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
  63. 95fc51d Issue 9732: addition of getattr_static to the inspect module by Michael Foord · 14 years ago
  64. b82c8e5 classic classes are gone; whoppie! by Benjamin Peterson · 14 years ago
  65. e8f5832 Issue #9308: Removed redundant coding cookies. Added tests for by Alexander Belopolsky · 14 years ago
  66. 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
  67. 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
  68. 977a684 Issue #8983: Corrected docstrings. by Alexander Belopolsky · 14 years ago
  69. a3a3fc6 typo by Benjamin Peterson · 14 years ago
  70. 42ac475 don't alias directly, so that extra arguments don't appear #6678 by Benjamin Peterson · 14 years ago
  71. 88968ad only take into account positional arguments count in related error messages by Benjamin Peterson · 14 years ago
  72. a1b3740 Merged revisions 82039 via svnmerge from by R. David Murray · 14 years ago
  73. 28a691b PEP 3147 by Barry Warsaw · 14 years ago
  74. 25cd7eb Merged revisions 79500 via svnmerge from by Benjamin Peterson · 14 years ago
  75. 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
  76. 4ac9ce4 Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from by Benjamin Peterson · 15 years ago
  77. a1a54bc Merged revisions 74285 via svnmerge from by Mark Dickinson · 15 years ago
  78. e223eb8 Merged revisions 74075,74187,74197,74201,74216,74225 via svnmerge from by Alexandre Vassalotti · 15 years ago
  79. 5ce83a0 Use true boolean for flag argument. by Georg Brandl · 15 years ago
  80. 74b8924 This fix makes, eg, 'pydoc time' work again. by R. David Murray · 15 years ago
  81. b58dda7 Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 via svnmerge from by Benjamin Peterson · 16 years ago
  82. c465600 Merged revisions 68676 via svnmerge from by Benjamin Peterson · 16 years ago
  83. 9953a8d fix inspect.formatargspec on functions with keyword-only arguments without defaults #4959 by Benjamin Peterson · 16 years ago
  84. 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
  85. b1441c7 Merged revisions 68112,68115,68120,68133,68141-68142,68145-68146,68148-68149 via svnmerge from by Georg Brandl · 16 years ago
  86. 3d4ca74 change the named tuple returned by inspect.getfullargspec to have a 'kwonlydefaults' (as claimed by the docs) attribute instead of 'kwdefaults' by Benjamin Peterson · 16 years ago
  87. 1a6e0d0 Merged revisions 66974,66977,66984,66989,66992,66994-66996,66998-67000,67007,67015 via svnmerge from by Benjamin Peterson · 16 years ago
  88. 2f5cb34 Merged revisions 65793 via svnmerge from by Brett Cannon · 16 years ago
  89. eec3d71 #3021: Antoine Pitrou's Lexical exception handlers by Benjamin Peterson · 16 years ago
  90. 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
  91. 5e69685 Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-62231,62233-62235,62237-62239 via svnmerge from by Christian Heimes · 16 years ago
  92. 428de65 - Issue #719888: Updated tokenize to use a bytes API. generate_tokens has been by Trent Nelson · 17 years ago
  93. be5b30b Merged revisions 61203-61204 via svnmerge from by Christian Heimes · 17 years ago
  94. 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
  95. 25bb783 Merged revisions 59883-59920 via svnmerge from by Christian Heimes · 17 years ago
  96. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  97. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  98. ff73795 Removed the API to create unbound methods and simplified the API for bound methods. The signature is PyMethod_New(func, instance). by Christian Heimes · 17 years ago
  99. 4a22b5d Patch from Georg Brandl and me for #1493 Remove unbound method objects by Christian Heimes · 17 years ago
  100. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago