[pypy-commit] pypy space-newtext: (arigato, plan_rich) think about an API we would like to use to circumvent some issues while maintaining both pypy2 and pypy3

plan_rich pypy.commits at gmail.com
Tue Oct 18 12:23:18 EDT 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: space-newtext
Changeset: r87861:41397e31c2f7
Date: 2016-10-18 18:19 +0200
http://bitbucket.org/pypy/pypy/changeset/41397e31c2f7/

Log:	(arigato, plan_rich) think about an API we would like to use to
	circumvent some issues while maintaining both pypy2 and pypy3

diff --git a/pypy/doc/objspace.rst b/pypy/doc/objspace.rst
--- a/pypy/doc/objspace.rst
+++ b/pypy/doc/objspace.rst
@@ -188,6 +188,7 @@
 
 .. py:function:: wrap(x)
 
+   **Deprecated! Eventually this method should disappear.**
    Returns a wrapped object that is a reference to the interpreter-level object
    :py:obj:`x`. This can be used either on simple immutable objects (integers,
    strings, etc) to create a new wrapped object, or on instances of :py:class:`W_Root`
@@ -196,6 +197,25 @@
    be directly exposed to application-level code in this way - functions, frames,
    code objects, etc.
 
+.. py:function:: newint(i)
+
+   Creates a wrapped object holding an integral value. `newint` creates an object
+   of type `W_IntObject`.
+
+.. py:function:: newlong(l)
+
+   Creates a wrapped object holding an integral value. The main difference to newint
+   is the type of the argument (which is rpython.rlib.rbigint.rbigint). On PyPy3 this
+   method will return an :py:class:`int` (PyPy2 it returns a :py:class:`long`).
+
+.. py:function:: newtext(t)
+
+   The given argument is a rpython bytestring. Creates a wrapped object of type :py:class:`str`.
+   On PyPy3 this will return a wrapped unicode object. The object will hold a utf8 decoded
+   value of `t`.
+
+   PyPy2 will return a bytestring object. No encoding/decoding steps will be applied.
+
 .. py:function:: newbool(b)
 
    Creates a wrapped :py:class:`bool` object from an :ref:`interpreter-level <interpreter-level>`
@@ -217,15 +237,12 @@
 
    Creates a new slice object.
 
-.. py:function:: newstring(asciilist)
-
-   Creates a string from a list of wrapped integers. Note that this may not be
-   a very useful method; usually you can just write ``space.wrap("mystring")``.
-
 .. py:function:: newunicode(codelist)
 
-   Creates a Unicode string from a list of integers (code points).
+   Creates a Unicode string from a rpython unicode string.
 
+Many more space operations can be found in `pypy/interpeter/baseobjspace.py` and
+`pypy/objspace/std/objspace.py`.
 
 Conversions from Application Level to Interpreter Level
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -258,8 +275,19 @@
    If :py:obj:`w_x` is an application-level integer or long, return an interpreter-level
    :py:class:`rbigint`. Otherwise raise :py:exc:`TypeError`.
 
+.. py:function:: text_w(w_x)
+
+   Takes an application level py:class:`str` and converts it to a rpython byte string.
+   PyPy3 this method will return an utf8 encoded result.
+
+.. py:function:: bytes_w(w_x)
+
+   Takes an application level py:class:`bytes` (PyPy2 this equals `str`) and returns a rpython
+   byte string.
+
 .. py:function:: str_w(w_x)
 
+   **Deprecated. use text_w or bytes_w instead**
    If :py:obj:`w_x` is an application-level string, return an interpreter-level string.
    Otherwise raise :py:exc:`TypeError`.
 


More information about the pypy-commit mailing list