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
/
test
/
test_inspect.py
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
Issue #24400: Resurrect inspect.isawaitable()
Yury Selivanov
2015-07-03
1
-0/+23
*
|
Issue #24541: Drop test_inspect.test_eightteen unittest; update docs
Yury Selivanov
2015-07-01
1
-8/+0
*
|
Issue #24541: Update comment in test_inspect.test_eightteen
Yury Selivanov
2015-07-01
1
-1/+1
*
|
Issue #24400: Fix failing unittest
Yury Selivanov
2015-07-01
1
-1/+1
*
|
Issue #24400: Remove inspect.isawaitable().
Yury Selivanov
2015-06-30
1
-25/+0
*
|
Issue #24400: Introduce a distinct type for 'async def' coroutines.
Yury Selivanov
2015-06-22
1
-3/+68
*
|
Issue #23934: Fix inspect.signature to fail correctly for builtin types.
Yury Selivanov
2015-05-30
1
-1/+6
*
|
Issue 24298: Fix signature() to properly unwrap wrappers around bound methods
Yury Selivanov
2015-05-28
1
-0/+13
|
\
\
|
|
/
|
*
Issue 24298: Fix signature() to properly unwrap wrappers around bound methods
Yury Selivanov
2015-05-28
1
-0/+13
*
|
Issue 20438: Deprecate inspect.getargspec() and friends.
Yury Selivanov
2015-05-22
1
-1/+2
*
|
Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__
Yury Selivanov
2015-05-21
1
-0/+15
|
\
\
|
|
/
|
*
Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__
Yury Selivanov
2015-05-21
1
-0/+15
*
|
Issue 24248: Deprecate inspect.Signature.from_function and .from_builtin
Yury Selivanov
2015-05-21
1
-12/+2
*
|
Issue 20691: Add follow_wrapped arg to inspect.signature/from_callable.
Yury Selivanov
2015-05-20
1
-2/+14
*
|
Issue 24205: Improve inspect.Signature.bind() error messages.
Yury Selivanov
2015-05-19
1
-11/+19
*
|
Issue 24190: Add inspect.BoundArguments.apply_defaults() method.
Yury Selivanov
2015-05-16
1
-0/+35
*
|
Issue 24208: Fix tests -- don't create a tempdir in __init__.
Yury Selivanov
2015-05-16
1
-5/+3
*
|
Issue 24200: Fix broken unittest.
Yury Selivanov
2015-05-15
1
-1/+1
*
|
inspect: Remove "0x..." IDs from Signature objects' __repr__
Yury Selivanov
2015-05-15
1
-2/+1
*
|
Issue 22547: Implement informative __repr__ for inspect.BoundArguments
Yury Selivanov
2015-05-14
1
-0/+7
*
|
inspect: Test that BoundArguments.__eq__ repects the order of params
Yury Selivanov
2015-05-14
1
-0/+6
*
|
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-12
1
-4/+68
*
|
Issue #9517: Move script_helper to the support package.
Berker Peksag
2015-05-06
1
-1/+1
*
|
Issue #21217: inspect.getsourcelines() now tries to compute the start and
Antoine Pitrou
2015-04-14
1
-1/+10
*
|
Issue #20586: Argument Clinic now ensures signatures on functions without doc...
Zachary Ware
2015-04-13
1
-0/+3
*
|
Actually run the builtins Argument Clinic test
Nick Coghlan
2015-04-13
1
-53/+58
*
|
Issue #15582: inspect.getdoc() now follows inheritance chains.
Serhiy Storchaka
2015-04-03
1
-1/+22
*
|
Issue #23641: Cleaned out legacy dunder names from tests and docs.
Serhiy Storchaka
2015-03-12
1
-1/+1
|
\
\
|
|
/
|
*
Issue #23641: Cleaned out legacy dunder names from tests and docs.
Serhiy Storchaka
2015-03-12
1
-1/+1
|
*
inspect: Fix getsource() to load updated source of reloaded module
Yury Selivanov
2014-12-08
1
-1/+32
*
|
inspect: Fix getsource() to load updated source of reloaded module
Yury Selivanov
2014-12-08
1
-1/+32
*
|
Merge: #12780: update inspect test skipIf for PEP 3147.
R David Murray
2014-10-03
1
-4/+5
|
\
\
|
|
/
|
*
#12780: update inspect test skipIf for PEP 3147.
R David Murray
2014-10-03
1
-4/+5
|
*
inspect: Validate that __signature__ is None or an instance of Signature.
Yury Selivanov
2014-06-23
1
-0/+7
|
*
inspect.signautre: Fix functools.partial support. Issue #21117
Yury Selivanov
2014-04-08
1
-20/+79
|
*
inspect: Fix getcallargs() to fail correctly if more than 3 args are missing.
Yury Selivanov
2014-03-27
1
-0/+6
|
*
inspect: Fix getcallargs() to raise correct TypeError
Yury Selivanov
2014-03-27
1
-0/+8
|
*
Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__
Yury Selivanov
2014-03-02
1
-0/+5
|
*
inspect.signature: Check for function-like objects before builtins. Issue #17159
Yury Selivanov
2014-02-21
1
-0/+16
|
*
inspect: Fix getfullargspec to support builtin module-level functions. Issue ...
Yury Selivanov
2014-02-21
1
-0/+7
|
*
inspect: Fix getfullargspec() to not to follow __wrapped__ chains
Yury Selivanov
2014-02-19
1
-0/+40
|
*
Mangle __parameters in __annotations__ dict properly. Issue #20625.
Yury Selivanov
2014-02-18
1
-0/+16
*
|
inspect: Fix getsource() to support decorated functions.
Yury Selivanov
2014-09-26
1
-0/+3
*
|
inspect.Signature: Fix discrepancy between __eq__ and __hash__.
Yury Selivanov
2014-09-12
1
-0/+24
*
|
Issue #16808: inspect.stack() now returns a named tuple instead of a tuple.
Antoine Pitrou
2014-08-24
1
-0/+8
*
|
Issue #20184: Add signature introspection for 30 of the builtins
Nick Coghlan
2014-08-17
1
-1/+53
*
|
inspect: Validate that __signature__ is None or an instance of Signature.
Yury Selivanov
2014-06-23
1
-0/+7
*
|
inspect: Make Signature and Parameter hashable. Issue #20334.
Yury Selivanov
2014-04-08
1
-10/+30
*
|
inspect.signautre: Fix functools.partial support. Issue #21117
Yury Selivanov
2014-04-08
1
-22/+79
*
|
inspect: Fix getcallargs() to fail correctly if more than 3 args are missing.
Yury Selivanov
2014-03-27
1
-0/+6
[prev]
[next]