index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
inspect.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #24485: Function source inspection fails on closures.
Meador Inge
2015-07-24
1
-4/+22
*
Issue #24485: Revert backwards compatibility breaking changes of #21217.
Yury Selivanov
2015-07-23
1
-18/+2
*
Issue #24669: Fix inspect.getsource() for 'async def' functions.
Yury Selivanov
2015-07-21
1
-1/+1
*
Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes.
Serhiy Storchaka
2015-07-18
1
-22/+19
|
\
|
*
Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes.
Serhiy Storchaka
2015-07-18
1
-16/+10
*
|
Issue #24400: Resurrect inspect.isawaitable()
Yury Selivanov
2015-07-03
1
-0/+7
*
|
Issue #24400: Remove inspect.isawaitable().
Yury Selivanov
2015-06-30
1
-4/+0
*
|
Issue #24400: Introduce a distinct type for 'async def' coroutines.
Yury Selivanov
2015-06-22
1
-7/+43
*
|
Issue #23934: Fix inspect.signature to fail correctly for builtin types.
Yury Selivanov
2015-05-30
1
-1/+5
*
|
Issue 24298: Fix signature() to properly unwrap wrappers around bound methods
Yury Selivanov
2015-05-28
1
-0/+9
|
\
\
|
|
/
|
*
Issue 24298: Fix signature() to properly unwrap wrappers around bound methods
Yury Selivanov
2015-05-28
1
-0/+8
*
|
Issue 20438: Adjust stacklevel of inspect.getargspec() warning.
Yury Selivanov
2015-05-22
1
-1/+2
*
|
Issue 20438: Deprecate inspect.getargspec() and friends.
Yury Selivanov
2015-05-22
1
-1/+4
*
|
Set stacklevel to 2 to get more accurate warning messages from deprecated fun...
Berker Peksag
2015-05-21
1
-2/+4
*
|
Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__
Yury Selivanov
2015-05-21
1
-3/+3
|
\
\
|
|
/
|
*
Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__
Yury Selivanov
2015-05-21
1
-3/+3
|
*
inspect: Fix getsource() to load updated source of reloaded module
Yury Selivanov
2014-12-08
1
-5/+11
*
|
Issue 24017: Use abc.Coroutine in inspect.iscoroutine() function
Yury Selivanov
2015-05-21
1
-2/+1
*
|
Issue 24248: Deprecate inspect.Signature.from_function and .from_builtin
Yury Selivanov
2015-05-21
1
-0/+6
*
|
inspect.Signature: Factor out Signature.from_function to a private helper
Yury Selivanov
2015-05-20
1
-78/+83
*
|
Issue 20691: Add follow_wrapped arg to inspect.signature/from_callable.
Yury Selivanov
2015-05-20
1
-4/+5
*
|
Issue 24205: Improve inspect.Signature.bind() error messages.
Yury Selivanov
2015-05-19
1
-6/+10
*
|
Issue 24190: Add inspect.BoundArguments.apply_defaults() method.
Yury Selivanov
2015-05-16
1
-0/+30
*
|
inspect: Remove "0x..." IDs from Signature objects' __repr__
Yury Selivanov
2015-05-15
1
-6/+3
*
|
Issue 22547: Implement informative __repr__ for inspect.BoundArguments
Yury Selivanov
2015-05-14
1
-0/+7
*
|
inspect: Micro-optimize __eq__ for Signature, Parameter and BoundArguments
Yury Selivanov
2015-05-14
1
-10/+22
*
|
inspect: Add __slots__ to BoundArguments.
Yury Selivanov
2015-05-13
1
-0/+9
*
|
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-12
1
-2/+24
*
|
Issue #21217: inspect.getsourcelines() now tries to compute the start and
Antoine Pitrou
2015-04-14
1
-14/+23
*
|
Issue #15582: inspect.getdoc() now follows inheritance chains.
Serhiy Storchaka
2015-04-03
1
-0/+73
*
|
Issue #23326: Removed __ne__ implementations. Since fixing default __ne__
Serhiy Storchaka
2015-01-31
1
-9/+0
*
|
inspect: Fix getsource() to load updated source of reloaded module
Yury Selivanov
2014-12-08
1
-5/+11
*
|
Issue #22186: Fix typos in Lib/.
Berker Peksag
2014-10-19
1
-1/+1
|
\
\
|
|
/
|
*
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
*
|
inspect: Fix getsource() to support decorated functions.
Yury Selivanov
2014-09-26
1
-0/+1
*
|
inspect.Signature: Fix discrepancy between __eq__ and __hash__.
Yury Selivanov
2014-09-12
1
-39/+14
*
|
Issue #16808: inspect.stack() now returns a named tuple instead of a tuple.
Antoine Pitrou
2014-08-24
1
-2/+6
*
|
Issue #22032: __qualname__ instead of __name__ is now always used to format
Serhiy Storchaka
2014-07-22
1
-2/+2
*
|
Fix getargspec() doctring (varkw -> keywords).
Guido van Rossum
2014-07-15
1
-4/+3
*
|
inspect: Validate that __signature__ is None or an instance of Signature.
Yury Selivanov
2014-06-23
1
-0/+4
*
|
inspect: Make Signature and Parameter hashable. Issue #20334.
Yury Selivanov
2014-04-08
1
-0/+16
*
|
inspect.signautre: Fix functools.partial support. Issue #21117
Yury Selivanov
2014-04-08
1
-76/+63
*
|
inspect: Remove references to Python-3000
Yury Selivanov
2014-04-01
1
-2/+2
[next]