[pypy-svn] r77033 - pypy/extradoc/planning

arigo at codespeak.net arigo at codespeak.net
Mon Sep 13 09:39:04 CEST 2010


Author: arigo
Date: Mon Sep 13 09:39:03 2010
New Revision: 77033

Modified:
   pypy/extradoc/planning/jit.txt
Log:
Mention string manipulation examples.


Modified: pypy/extradoc/planning/jit.txt
==============================================================================
--- pypy/extradoc/planning/jit.txt	(original)
+++ pypy/extradoc/planning/jit.txt	Mon Sep 13 09:39:03 2010
@@ -60,6 +60,10 @@
 Extracted from some real-life Python programs, examples that don't give
 nice code at all so far:
 
+- string manipulation: s[n], s[-n], s[i:j], most operations on single
+  chars, building a big string with repeated "s += t", "a,b=s.split()",
+  etc.
+
 - http://paste.pocoo.org/show/188520/
   this will compile new assembler path for each new type, even though that's
   overspecialization since in this particular case it's not relevant.



More information about the Pypy-commit mailing list