[prev in list] [next in list] [prev in thread] [next in thread] 

List:       pypy-svn
Subject:    [pypy-commit] [Git][pypy/pypy][branch/py3.8] 13 commits: small simplification
From:       "Carl Friedrich Bolz-Tereick ( () cfbolz)" <foss () heptapod ! net>
Date:       2022-10-25 20:48:01
Message-ID: 63584b8153524_1be47734833e () heptapod-foss ! mail
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Carl Friedrich Bolz-Tereick pushed to branch branch/py3.8 at PyPy / pypy


Commits:
b172139f by Carl Friedrich Bolz-Tereick at 2022-10-11T10:29:44+02:00
small simplification

- - - - -
216ff70e by Carl Friedrich Bolz-Tereick at 2022-10-12T22:05:00+02:00
ouch, the logic is inverted here:

these should wait till timeout, not stop waiting immediately

- - - - -
d81440e9 by Carl Friedrich Bolz-Tereick at 2022-10-21T11:58:38+02:00
this test was broken by trace segmenting, the new behaviour is fine

- - - - -
8446dfa2 by Carl Friedrich Bolz-Tereick at 2022-10-21T12:02:43+02:00
merge

- - - - -
6e69759d by Matti Picus at 2022-10-21T16:22:48+03:00
add missing documentation of pypyjit module

- - - - -
077dd15b by Matti Picus at 2022-10-22T21:56:48+03:00
move links from bitbucket to heptapod and from morepypy to pypy.org/blog

- - - - -
8f36af76 by Matti Picus at 2022-10-22T22:10:14+03:00
expose a little explaination about the JIT decay parameter

taken from decay_all_counters() in metainterp/counter.py

- - - - -
91173edd by Matti Picus at 2022-10-22T22:22:44+03:00
fix sphinx formatting

- - - - -
d137501b by Carl Friedrich Bolz-Tereick at 2022-10-25T14:24:33+02:00
make it possible to change the REMEMBER_LIMIT

- - - - -
67e60b38 by Carl Friedrich Bolz-Tereick at 2022-10-25T16:01:31+02:00
move max trace length checking to warmspot so we can make the limit dependent
on the model

- - - - -
92f1f683 by Carl Friedrich Bolz-Tereick at 2022-10-25T16:55:23+02:00
fix

- - - - -
59dfc01f by Carl Friedrich Bolz-Tereick at 2022-10-25T22:08:40+02:00
make locals use an instance dict to be able to remove them commpletely/make the
access efficient

add a test_pypy_c test

- - - - -
465d64f3 by Carl Friedrich Bolz-Tereick at 2022-10-25T22:10:07+02:00
merge default

--HG--
branch : py3.8

- - - - -


30 changed files:

- pypy/doc/contributing.rst
- pypy/doc/cpython_differences.rst
- pypy/doc/eventhistory.rst
- pypy/doc/extradoc.rst
- pypy/doc/faq.rst
- pypy/doc/jit-hooks.rst
- pypy/doc/jit_help.rst
- pypy/doc/objspace-proxies.rst
- pypy/doc/project-ideas.rst
- pypy/doc/sandbox.rst
- pypy/interpreter/pyframe.py
- pypy/module/pypyjit/test_pypy_c/test_misc.py
- pypy/module/thread/test/test_thread.py
- rpython/doc/architecture.rst
- rpython/doc/faq.rst
- rpython/doc/garbage_collection.rst
- rpython/doc/getting-started.rst
- rpython/doc/jit/pyjitpl5.rst
- rpython/doc/translation.rst
- rpython/jit/backend/test/support.py
- rpython/jit/metainterp/opencoder.py
- rpython/jit/metainterp/optimizeopt/pure.py
- rpython/jit/metainterp/optimizeopt/test/test_optimizebasic.py
- rpython/jit/metainterp/optimizeopt/test/test_optimizebridge.py
- rpython/jit/metainterp/optimizeopt/test/test_unroll.py
- rpython/jit/metainterp/optimizeopt/test/test_util.py
- rpython/jit/metainterp/optimizeopt/test/test_virtualstate.py
- rpython/jit/metainterp/test/support.py
- rpython/jit/metainterp/test/test_ajit.py
- rpython/jit/metainterp/test/test_compile.py


View it on Heptapod: \
https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fdec89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0


-- 
View it on Heptapod: \
https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fdec89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0
 You're receiving this email because of your account on foss.heptapod.net.


[Attachment #5 (text/html)]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" \
"http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en">
<head>
<meta content="text/html; charset=US-ASCII" http-equiv="Content-Type">
<title>
Heptapod
</title>



<style>img {
max-width: 100%; height: auto;
}
body {
font-size: 0.875rem;
}
body {
-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", \
Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI \
Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-size: inherit; }
</style>
</head>
<body style='font-size: inherit; -webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; \
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", \
Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI \
Emoji", "Segoe UI Symbol", "Noto Color Emoji";'> <div class="content">

<h3 style="margin-top: 20px; margin-bottom: 10px;">
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.8
at <a href="https://foss.heptapod.net/pypy/pypy" style="color: #1068bf; \
text-decoration: none;">PyPy / pypy</a> </h3>
<h4 style="margin-top: 10px; margin-bottom: 10px;">
Commits:
</h4>
<ul>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/b172139f8f4996dacd59180c0f5eccf4918fe58b" \
style="color: #1068bf; text-decoration: none;">b172139f</a></strong> <div>
<span>by Carl Friedrich Bolz-Tereick</span>
<i>at 2022-10-11T10:29:44+02:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>small simplification </pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/216ff70efc7e1fac5691aa824017bd6286b73996" \
style="color: #1068bf; text-decoration: none;">216ff70e</a></strong> <div>
<span>by Carl Friedrich Bolz-Tereick</span>
<i>at 2022-10-12T22:05:00+02:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>ouch, the logic is inverted here:

these should wait till timeout, not stop waiting immediately
</pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/d81440e98e07bb784a0f7f6e5f50c98b35527493" \
style="color: #1068bf; text-decoration: none;">d81440e9</a></strong> <div>
<span>by Carl Friedrich Bolz-Tereick</span>
<i>at 2022-10-21T11:58:38+02:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>this test was broken by trace segmenting, the new behaviour is \
fine </pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/8446dfa2b4ab0f65f59691e39679189b27e4e5ea" \
style="color: #1068bf; text-decoration: none;">8446dfa2</a></strong> <div>
<span>by Carl Friedrich Bolz-Tereick</span>
<i>at 2022-10-21T12:02:43+02:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>merge </pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/6e69759d16e419e0b438afb004cc88b5cbc798e3" \
style="color: #1068bf; text-decoration: none;">6e69759d</a></strong> <div>
<span>by Matti Picus</span>
<i>at 2022-10-21T16:22:48+03:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>add missing documentation of pypyjit module </pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/077dd15b555ee709a2f0928abe2d9db71e73f820" \
style="color: #1068bf; text-decoration: none;">077dd15b</a></strong> <div>
<span>by Matti Picus</span>
<i>at 2022-10-22T21:56:48+03:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>move links from bitbucket to heptapod and from morepypy to \
pypy.org/blog </pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/8f36af768ba4a830bbf85dab4141efb60c0420b6" \
style="color: #1068bf; text-decoration: none;">8f36af76</a></strong> <div>
<span>by Matti Picus</span>
<i>at 2022-10-22T22:10:14+03:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>expose a little explaination about the JIT decay parameter

taken from decay_all_counters() in metainterp/counter.py
</pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/91173edd34f9d054f486360f9b249643250adbb2" \
style="color: #1068bf; text-decoration: none;">91173edd</a></strong> <div>
<span>by Matti Picus</span>
<i>at 2022-10-22T22:22:44+03:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>fix sphinx formatting </pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/d137501b153a0dd42c26980846df28b04911097b" \
style="color: #1068bf; text-decoration: none;">d137501b</a></strong> <div>
<span>by Carl Friedrich Bolz-Tereick</span>
<i>at 2022-10-25T14:24:33+02:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>make it possible to change the REMEMBER_LIMIT </pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/67e60b38a5752d23c3d942191b7c87e3af704fc7" \
style="color: #1068bf; text-decoration: none;">67e60b38</a></strong> <div>
<span>by Carl Friedrich Bolz-Tereick</span>
<i>at 2022-10-25T16:01:31+02:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>move max trace length checking to warmspot so we can make the \
limit dependent on the model
</pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/92f1f68388f83c9ff150277dc73492c97485ff56" \
style="color: #1068bf; text-decoration: none;">92f1f683</a></strong> <div>
<span>by Carl Friedrich Bolz-Tereick</span>
<i>at 2022-10-25T16:55:23+02:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>fix </pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/59dfc01facb4e75786aece35abc71fed15cc33d7" \
style="color: #1068bf; text-decoration: none;">59dfc01f</a></strong> <div>
<span>by Carl Friedrich Bolz-Tereick</span>
<i>at 2022-10-25T22:08:40+02:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>make locals use an instance dict to be able to remove them \
commpletely/make the access efficient

add a test_pypy_c test
</pre>
</li>
<li>
<strong style="font-weight: bold;"><a \
href="https://foss.heptapod.net/pypy/pypy/-/commit/465d64f3c8bd8cb535f1928b3f1a8201f01088c0" \
style="color: #1068bf; text-decoration: none;">465d64f3</a></strong> <div>
<span>by Carl Friedrich Bolz-Tereick</span>
<i>at 2022-10-25T22:10:07+02:00</i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: \
0.8125rem; color: #303030; position: relative; font-family: "Menlo", "DejaVu Sans \
Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", \
"lucida console", monospace; word-break: break-all; word-wrap: break-word; \
background-color: #fafafa; border-radius: 2px; margin: 0; padding: 8px 12px; border: \
1px solid #dbdbdb;'>merge default

--HG--
branch : py3.8
</pre>
</li>
</ul>
<h4 style="margin-top: 10px; margin-bottom: 10px;">30 changed files:</h4>
<ul>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#3fc1387301be086f248a9bd5885e7b32c70b5be9" \
style="color: #1068bf; text-decoration: none;"> pypy/doc/contributing.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#f054245cae7763e1eba84229fa3da3c296102f13" \
style="color: #1068bf; text-decoration: none;"> pypy/doc/cpython_differences.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#8874ff21ea51996ab7f976549b244b2e941e51b3" \
style="color: #1068bf; text-decoration: none;"> pypy/doc/eventhistory.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#b8de6f6ad5958daa17ac1b749c3f81be221991ff" \
style="color: #1068bf; text-decoration: none;"> pypy/doc/extradoc.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#dde2151657ce605e38e43ac4ecaff64195bb4c24" \
style="color: #1068bf; text-decoration: none;"> pypy/doc/faq.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#e22b44164a47afa569655d495597e0b0c80e747a" \
style="color: #1068bf; text-decoration: none;"> pypy/doc/jit-hooks.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#5f55689bd3eb6914ea148d2716f8bd7be3df3fa1" \
style="color: #1068bf; text-decoration: none;"> pypy/doc/jit_help.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#7e8f1dd1fc42abc93ce15f1eb9d7e7ab94f6c43e" \
style="color: #1068bf; text-decoration: none;"> pypy/doc/objspace-proxies.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#82b6e4f5c2273c8f479513fea5fb9b89096a3bdb" \
style="color: #1068bf; text-decoration: none;"> pypy/doc/project-ideas.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#e5005cefef1f25164430ab60b952699fd8255e32" \
style="color: #1068bf; text-decoration: none;"> pypy/doc/sandbox.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#7cb36ebcef16e207f7ca60ae0398ccae5081e097" \
style="color: #1068bf; text-decoration: none;"> pypy/interpreter/pyframe.py
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#7780dfb40f4bdef95397479a406ad8131bce5e8e" \
style="color: #1068bf; text-decoration: none;"> \
pypy/module/pypyjit/test_pypy_c/test_misc.py </a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#ebafc5910990fb0446c6e763f0b3db25372e193b" \
style="color: #1068bf; text-decoration: none;"> \
pypy/module/thread/test/test_thread.py </a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#c5dafa05eb416eee77c536864f6235d4bec08bcf" \
style="color: #1068bf; text-decoration: none;"> rpython/doc/architecture.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#7b5f4f123f1f40b85441b39987824345bc19aac4" \
style="color: #1068bf; text-decoration: none;"> rpython/doc/faq.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#32f2ff7fe711a98256772722fd667bfdabd90d65" \
style="color: #1068bf; text-decoration: none;"> rpython/doc/garbage_collection.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#98360de7ec01a8030c4fc6cd5723a154c4d5c2ec" \
style="color: #1068bf; text-decoration: none;"> rpython/doc/getting-started.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#45cf08dac676d85716bed7e799d94d1ca772b66b" \
style="color: #1068bf; text-decoration: none;"> rpython/doc/jit/pyjitpl5.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#97f84dc28a0a0278e9d4a7b93885440a5be17625" \
style="color: #1068bf; text-decoration: none;"> rpython/doc/translation.rst
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#4ec26248f9d28a70ad1f3e14b98805ffb78f9321" \
style="color: #1068bf; text-decoration: none;"> rpython/jit/backend/test/support.py
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#2df355311c2af2acc13b442ac1438425e8f32b60" \
style="color: #1068bf; text-decoration: none;"> rpython/jit/metainterp/opencoder.py
</a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#daaa6de80e901c21dd23bb0c0433007cee37f8ac" \
style="color: #1068bf; text-decoration: none;"> \
rpython/jit/metainterp/optimizeopt/pure.py </a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#8ff6368e903a907c962b7c01d56ac09f9acd9e40" \
style="color: #1068bf; text-decoration: none;"> \
rpython/jit/metainterp/optimizeopt/test/test_optimizebasic.py </a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#9d2dd8b91ed67c706281a5a100a5ff14f2c0f506" \
style="color: #1068bf; text-decoration: none;"> \
rpython/jit/metainterp/optimizeopt/test/test_optimizebridge.py </a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#93e25a10ee3956b5b88fb38d65c6d18ee01fc8e6" \
style="color: #1068bf; text-decoration: none;"> \
rpython/jit/metainterp/optimizeopt/test/test_unroll.py </a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#e83cfca4b60d65d2a1d3ee0bf62ff94e67fd4e8a" \
style="color: #1068bf; text-decoration: none;"> \
rpython/jit/metainterp/optimizeopt/test/test_util.py </a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#c303f430d1250fcbeefaa7ee3ec97ec1fc664cea" \
style="color: #1068bf; text-decoration: none;"> \
rpython/jit/metainterp/optimizeopt/test/test_virtualstate.py </a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#415569d37863703f5bdd5722ae8a3a2c405ba5cc" \
style="color: #1068bf; text-decoration: none;"> \
rpython/jit/metainterp/test/support.py </a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#8ee89ad084f970db8c1f516668dd885da0c3e82c" \
style="color: #1068bf; text-decoration: none;"> \
rpython/jit/metainterp/test/test_ajit.py </a>
</li>
<li class="file-stats">
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fde \
c89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0#f57df0695517292374bd84177fe8d1c6c596270d" \
style="color: #1068bf; text-decoration: none;"> \
rpython/jit/metainterp/test/test_compile.py </a>
</li>
</ul>

</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #666;">
&#8212;
<br>
<a href="https://foss.heptapod.net/pypy/pypy/-/compare/860b897b2611a4099ef9c63ce848fdec89c74b31...465d64f3c8bd8cb535f1928b3f1a8201f01088c0" \
style="color: #1068bf; text-decoration: none;">View it on Heptapod</a>. <br>
You're receiving this email because of your account on foss.heptapod.net.
If you'd like to receive fewer emails, you can
adjust your notification settings.



</p>
</div>
</body>
</html>



_______________________________________________
pypy-commit mailing list -- pypy-commit@python.org
To unsubscribe send an email to pypy-commit-leave@python.org
https://mail.python.org/mailman3/lists/pypy-commit.python.org/
Member address: pypy-svn@progressive-comp.com


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic