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
537d7607
Commit
537d7607
authored
Jan 18, 2014
by
Larry Hastings
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc improvements for Clinic howto "Goals" section.
parent
4903e001
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
Doc/howto/clinic.rst
Doc/howto/clinic.rst
+9
-9
No files found.
Doc/howto/clinic.rst
View file @
537d7607
...
...
@@ -44,16 +44,16 @@ redundant information in a surprising number of places.
When you use Argument Clinic, you don't have to repeat yourself.
Obviously, no one would want to use Argument Clinic unless
it's solving
a their problem without creating
problems of
it's solving
their problem--and without creating new
problems of
its own.
So
Argument Clinic should generate correct code, and its
code should preferably be slower, and definitely should
not introduce a major speed regression. (Eventually Argument
Clinic
should enable a major speedup--we should be able
to rewrite its code generator so it produces tailor-made
parsing code, rather than
using the general-purpose functions
from the CPython code base, which
would make for the fastest
argument parsing possible
.
)
So
it's paramount that Argument Clinic generate correct code.
It'd be nice if the code was faster, too, but at the very least
it should
not introduce a major speed regression. (Eventually Argument
Clinic
*should* make a major speedup possible--we could
rewrite its code generator to produce tailor-made argument
parsing code, rather than
calling the general-purpose CPython
argument parsing library. That
would make for the fastest
argument parsing possible
!
)
Additionally, Argument Clinic must be flexible enough to
work with any approach to argument parsing. Python has
...
...
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