[pypy-svn] r14604 - pypy/dist/pypy/translator/goal

arigo at codespeak.net arigo at codespeak.net
Wed Jul 13 01:30:13 CEST 2005


Author: arigo
Date: Wed Jul 13 01:30:09 2005
New Revision: 14604

Added:
   pypy/dist/pypy/translator/goal/ISSUES.txt   (contents, props changed)
Log:
Adding a text file to log the known issues of running translate_pypy.py.
It's useful to track them because we have seen most of them in the past; then
they go away because it crashes somewhere else first, and some time later they
show up again.



Added: pypy/dist/pypy/translator/goal/ISSUES.txt
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/translator/goal/ISSUES.txt	Wed Jul 13 01:30:09 2005
@@ -0,0 +1,20 @@
+Known RTyper issues
+-------------------
+
+Let's list and update here the issues that will show up, or have shown up
+already sometime ago, while running translate_pypy::
+
+  * we need slicing of the form [:-1].
+
+  * the PBCReprs generally lack a convert_from_to() to convert from a small PBC
+    set to a larger one.
+
+  * 'call_args' needs to be implemented in rpbc.py.
+
+  * how to implement the three overrides of translator/ann_override.py ?
+
+  * we get tons of warnings about attributes like 'co_code' that seem to be
+    erroneously attached to the base 'Code' class, instead of staying on
+    'PyCode'.
+
+  * the pypy trunk is still not annotable.



More information about the Pypy-commit mailing list