cpython/Objects/stringlib
Eric V. Smith 12ebefc9d3 Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError. 2011-07-18 14:03:41 -04:00
..
README.txt Merged revisions 77937 via svnmerge from 2010-02-03 02:43:37 +00:00
count.h Merged revisions 77461 via svnmerge from 2010-01-13 08:07:53 +00:00
ctype.h Merged revisions 77461 via svnmerge from 2010-01-13 08:07:53 +00:00
eq.h Recorded merge of revisions 81032 via svnmerge from 2010-05-09 16:14:21 +00:00
fastsearch.h Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an array. 2010-08-08 22:07:16 +00:00
find.h MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) 2011-04-20 17:42:50 +02:00
formatter.h Issue #7094: Add alternate ('#') flag to __format__ methods for float, complex and Decimal. Allows greater control over when decimal points appear. Added to make transitioning from %-formatting easier. '#g' still has a problem with Decimal which I'll fix soon. 2010-11-25 16:08:06 +00:00
localeutil.h The other half of Issue #1580: use short float repr where possible. 2009-04-16 20:16:10 +00:00
partition.h Recorded merge of revisions 81032 via svnmerge from 2010-05-09 16:14:21 +00:00
split.h svnmerge duplicated contents of Objects/stringlib/split.h 2010-01-13 09:19:15 +00:00
string_format.h Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError. 2011-07-18 14:03:41 -04:00
stringdefs.h Merged revisions 77461 via svnmerge from 2010-01-13 08:07:53 +00:00
transmogrify.h Recorded merge of revisions 81032 via svnmerge from 2010-05-09 16:14:21 +00:00
unicodedefs.h Merged revisions 77461 via svnmerge from 2010-01-13 08:07:53 +00:00

README.txt

bits shared by the stringobject and unicodeobject implementations (and
possibly other modules, in a not too distant future).

the stuff in here is included into relevant places; see the individual
source files for details.

--------------------------------------------------------------------
the following defines used by the different modules:

STRINGLIB_CHAR

    the type used to hold a character (char or Py_UNICODE)

STRINGLIB_EMPTY

    a PyObject representing the empty string, only to be used if
    STRINGLIB_MUTABLE is 0

Py_ssize_t STRINGLIB_LEN(PyObject*)

    returns the length of the given string object (which must be of the
    right type)

PyObject* STRINGLIB_NEW(STRINGLIB_CHAR*, Py_ssize_t)

    creates a new string object

STRINGLIB_CHAR* STRINGLIB_STR(PyObject*)

    returns the pointer to the character data for the given string
    object (which must be of the right type)

int STRINGLIB_CHECK_EXACT(PyObject *)

    returns true if the object is an instance of our type, not a subclass

STRINGLIB_MUTABLE

    must be 0 or 1 to tell the cpp macros in stringlib code if the object
    being operated on is mutable or not