Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ac23c9ea
Commit
ac23c9ea
authored
Aug 13, 2012
by
Andrew Svetlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mention PEP 362: Function Signature Object in whatsnew.
parent
eed1808d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
Doc/whatsnew/3.3.rst
Doc/whatsnew/3.3.rst
+17
-0
No files found.
Doc/whatsnew/3.3.rst
View file @
ac23c9ea
...
@@ -501,6 +501,23 @@ which stores the keys and their respective hashes). This reduces the memory
...
@@ -501,6 +501,23 @@ which stores the keys and their respective hashes). This reduces the memory
consumption of programs creating many instances of non-builtin types.
consumption of programs creating many instances of non-builtin types.
PEP 362: Function Signature Object
==================================
:pep:`362`: - Function Signature Object
PEP written by Brett Cannon, Yury Selivanov, Larry Hastings, Jiwon Seo.
Implemented by Yury Selivanov.
A new function :func:`inspect.signature` makes introspection of python
callables easy and straightforward. A broad range of callables is supported:
python functions, decorated or not, classes, and :func:`functools.partial`
objects. New classes :class:`inspect.Signature`, :class:`inspect.Parameter`
and :class:`inspect.BoundArguments` hold information about the call signatures,
such as, annotations, default values, parameters kinds, and bound arguments,
which considerably simplifies writing decorators and any code that validates
or amends calling signatures or arguments.
Using importlib as the Implementation of Import
Using importlib as the Implementation of Import
===============================================
===============================================
:issue:`2377` - Replace __import__ w/ importlib.__import__
:issue:`2377` - Replace __import__ w/ importlib.__import__
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment