| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #22186: Fix typos in Lib/. | Berker Peksag | 2014-10-19 | 1 | -1/+1 |
|
|
* | inspect: Validate that __signature__ is None or an instance of Signature. | Yury Selivanov | 2014-06-23 | 1 | -0/+4 |
|
|
* | inspect.signautre: Fix functools.partial support. Issue #21117 | Yury Selivanov | 2014-04-08 | 1 | -73/+62 |
|
|
* | inspect: Fix getcallargs() to fail correctly if more than 3 args are missing. | Yury Selivanov | 2014-03-27 | 1 | -1/+1 |
|
|
* | inspect: Fix getcallargs() to raise correct TypeError | Yury Selivanov | 2014-03-27 | 1 | -1/+1 |
|
|
* | inspect.signature: Check for function-like objects before builtins. Issue #17159 | Yury Selivanov | 2014-02-21 | 1 | -4/+4 |
|
|
* | inspect: Fix getfullargspec to support builtin module-level functions. Issue ... | Yury Selivanov | 2014-02-21 | 1 | -2/+9 |
|
|
* | inspect: Fix getfullargspec() to not to follow __wrapped__ chains | Yury Selivanov | 2014-02-19 | 1 | -46/+65 |
|
|
* | Issue #20530: Argument Clinic's signature format has been revised again. | Larry Hastings | 2014-02-09 | 1 | -23/+92 |
|
|
* | inspect.signature: Add (restore) support for builtin classes #20473 | Yury Selivanov | 2014-02-03 | 1 | -131/+164 |
|
|
* | inspect.signature: Use 'inspect.isbuiltin' in 'Signature.from_builtin' | Yury Selivanov | 2014-02-02 | 1 | -1/+2 |
|
|
* | inspect: Add some comments in Parameter.__eq__ method | Yury Selivanov | 2014-01-31 | 1 | -0/+11 |
|
|
* | inspect.Signauture.from_function: validate duck functions in Signature constr... | Yury Selivanov | 2014-01-31 | 1 | -5/+11 |
|
|
* | inspect.signature: Support duck-types of Python functions (Cython, for instan... | Yury Selivanov | 2014-01-31 | 1 | -2/+30 |
|
|
* | inspect.classify_class_attrs: Classify object.__new__ and __init__ correctly ... | Yury Selivanov | 2014-01-31 | 1 | -1/+1 |
|
|
* | inspect.Signature.from_function: Use CO_VARARGS & CO_VARKEYWORDS constants | Yury Selivanov | 2014-01-29 | 1 | -3/+3 |
|
|
* | inspect.signature: Make sure that if a callable object has '_patialmethod' | Yury Selivanov | 2014-01-29 | 1 | -11/+12 |
|
|
* | inspect.Signature.bind: Update method signature to rule out possiblity | Yury Selivanov | 2014-01-29 | 1 | -4/+4 |
|
|
* | inspect: Rename private helper function | Yury Selivanov | 2014-01-29 | 1 | -5/+5 |
|
|
* | inspect.getfullargspec: Use inspect.signature API behind the scenes #17481 | Yury Selivanov | 2014-01-29 | 1 | -6/+105 |
|
|
* | inspect.Signature: ensure that non-default params don't follow default ones #... | Yury Selivanov | 2014-01-29 | 1 | -1/+20 |
|
|
* | inspect.signature: Add support for decorated (wrapped) builtins #20425 | Yury Selivanov | 2014-01-29 | 1 | -3/+3 |
|
|
* | inspect.Signature: Make from_builtin to raise an exception if no signature can | Yury Selivanov | 2014-01-29 | 1 | -10/+20 |
|
|
* | inspect.Signature.bind: Add **kwargs/positional-only check back | Yury Selivanov | 2014-01-29 | 1 | -0/+8 |
|
|
* | inspect.Signature.bind: Fix pos-only params with defaults; fix *args in named... | Yury Selivanov | 2014-01-28 | 1 | -8/+8 |
|
|
* | inspect: Fix docstrings for Parameter & Signature classes | Yury Selivanov | 2014-01-28 | 1 | -3/+5 |
|
|
* | inspect.signature: Handle bound methods with '(*args)' signature correctly #2... | Yury Selivanov | 2014-01-28 | 1 | -5/+34 |
|
|
* | Issue #20326: Argument Clinic now uses a simple, unique signature to | Larry Hastings | 2014-01-28 | 1 | -12/+9 |
|
|
* | inspect.signature: Support classes without user-defined __init__/__new__ #20308 | Yury Selivanov | 2014-01-28 | 1 | -0/+11 |
|
|
* | inspect.signature: Add support for 'functools.partialmethod' #20223 | Yury Selivanov | 2014-01-27 | 1 | -40/+67 |
|
|
* | inspect.signature: Use '/' to separate positional-only parameters from | Yury Selivanov | 2014-01-27 | 1 | -23/+30 |
|
|
* | inspect.getfile: Don't crash on classes without '__module__' attribute #20372 | Yury Selivanov | 2014-01-27 | 1 | -3/+4 |
|
|
* | Issue #20189: Four additional builtin types (PyTypeObject, | Larry Hastings | 2014-01-24 | 1 | -5/+27 |
|
|
* | Issue #20226: Major improvements to Argument Clinic. | Larry Hastings | 2014-01-16 | 1 | -37/+58 |
|
|
* | Issue #20144: Argument Clinic now supports simple constants as parameter | Larry Hastings | 2014-01-07 | 1 | -7/+49 |
|
|
* | merge 3.3 (closes #20108) | Benjamin Peterson | 2014-01-02 | 1 | -1/+3 |
|\ |
|
| * | avoid parameter name clash (closes #20108) | Benjamin Peterson | 2014-01-02 | 1 | -1/+3 |
|
|
* | | Issue #19674: inspect.signature() now produces a correct signature | Larry Hastings | 2013-11-23 | 1 | -0/+62 |
|
|
* | | Issue #19030: final pieces for proper location of various class attributes lo... | Ethan Furman | 2013-10-21 | 1 | -23/+32 |
|
|
* | | Issue #19030: special-cased __dict__ as the actual dict is not returned, a p... | Ethan Furman | 2013-10-18 | 1 | -0/+2 |
|
|
* | | Close #19030: inspect.getmembers and inspect.classify_class_attrs | Ethan Furman | 2013-10-18 | 1 | -24/+33 |
|
|
* | | Close #19030: improvements to inspect and Enum. | Ethan Furman | 2013-09-25 | 1 | -29/+69 |
|
|
* | | Close #18626: add a basic CLI for the inspect module | Nick Coghlan | 2013-09-22 | 1 | -0/+61 |
|
|
* | | Close #18929: inspect.classify_class_attrs will now search the metaclasses (l... | Ethan Furman | 2013-09-15 | 1 | -1/+6 |
|
|
* | | Issue #18830: inspect.getclasstree() no more produces duplicated entries even | Serhiy Storchaka | 2013-09-05 | 1 | -1/+2 |
|\ \
| |/ |
|
| * | Issue #18830: inspect.getclasstree() no more produces duplicated entries even | Serhiy Storchaka | 2013-09-05 | 1 | -1/+2 |
|
|
* | | #18705: merge with 3.3. | Ezio Melotti | 2013-08-17 | 1 | -2/+2 |
|\ \
| |/ |
|
| * | #18705: fix a number of typos. Patch by FĂ©vry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -2/+2 |
|
|
* | | Close #13266: Add inspect.unwrap | Nick Coghlan | 2013-07-28 | 1 | -7/+37 |
|
|
* | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) | Brett Cannon | 2013-07-04 | 1 | -1/+1 |
|
|