Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pypy.org
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PyPy
pypy.org
Commits
4b480b28
Commit
4b480b28
authored
11 years ago
by
Alex Gaynor
Browse files
Options
Downloads
Patches
Plain Diff
Fixed #1555 -- fixed format(**locals()) example
parent
10f43ab2
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
performance.html
+1
-1
1 addition, 1 deletion
performance.html
source/people.txt
+4
-4
4 additions, 4 deletions
source/people.txt
source/performance.txt
+1
-1
1 addition, 1 deletion
source/performance.txt
with
6 additions
and
6 deletions
performance.html
+
1
−
1
View file @
4b480b28
...
...
@@ -198,7 +198,7 @@
</pre>
<p>
or even:
</p>
<pre
class=
"literal-block"
>
s =
"
{head}{body}{maybe}{tail}
"
.format(locals())
s =
"
{head}{body}{maybe}{tail}
"
.format(
**
locals())
</pre>
<p>
Both of the latter forms avoid multiple-allocation overhead.
But PyPy's JIT makes the overhead of intermediate concatenations
...
...
This diff is collapsed.
Click to expand it.
source/people.txt
+
4
−
4
View file @
4b480b28
...
...
@@ -14,7 +14,7 @@
Theory at the Free University of Brussels (Belgium) in 2002, and
worked at the University of Southampton (UK) until 2005. He is
the author of Psyco, the first just-in-time compiler for Python.
He is one of the founders and lead developers of the PyPy project
He is one of the founders and lead developers of the PyPy project
which began in 2003. He has taken part in all areas, from the Python
language definition to the RPython translation framework,
including the garbage collector and the tracing just-in-time
...
...
@@ -91,7 +91,7 @@
Håkan Ardö
==========
.. image:: image/people/hakanardo.jpg
.. image:: image/people/hakanardo.jpg
Håkan Ardö received his master of science degree in electrical
engineering from Lund University in 2002. He specialized in
...
...
@@ -104,7 +104,7 @@
intersection or road segment. He is currently working part time as a
postdoc at the Centre for Mathematical Sciences of Lund University
continuing this work and part time as CTO with a spinoff company
Cognimatics. His contributions to PyPy started 2010 and consists of
Cognimatics. His contributions to PyPy started 2010 and consists of
the array module as well as work on the JIT compiler's trace optimizers.
Holger Krekel
...
...
@@ -122,7 +122,7 @@
holds a summa cum laude degree in computer science with a thesis about
artificial intelligence applied to the game of Go. As of 2011 he is on
another sabbatical-ish leave, caring for his newborn son, travelling
and pondering what comes next. Other than that he continues to care
and pondering what comes next. Other than that he continues to care
for testing and some PyPy co-ordination bits behind the scene.
.. _`py.test`: http://pytest.org
...
...
This diff is collapsed.
Click to expand it.
source/performance.txt
+
1
−
1
View file @
4b480b28
...
...
@@ -183,7 +183,7 @@
or even::
s = "{head}{body}{maybe}{tail}".format(locals())
s = "{head}{body}{maybe}{tail}".format(
**
locals())
Both of the latter forms avoid multiple-allocation overhead.
But PyPy's JIT makes the overhead of intermediate concatenations
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment