1 package org.python.core;2 3 /**4 * base class for jython strings.5 */6 7 public abstract class PyBaseString extends PySequence {8 public static final String exposed_name="unicode";9 10 public PyBaseString() {11 super();12 }13 14 protected PyBaseString(PyType type) {15 super(type);16 }17 }18 19 20